1import { StatusFailedIcon, theme } from '@expo/styleguide'; 2 3import { IconBase, DocIconProps } from './IconBase'; 4 5export const NoIcon = ({ small }: DocIconProps) => ( 6 <IconBase Icon={StatusFailedIcon} color={theme.icon.danger} small={small} /> 7); 8