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