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