1import { StatusFailureIcon } from '@expo/styleguide-icons';
2
3import { IconBase, DocIconProps } from './IconBase';
4
5export const NoIcon = ({ small }: DocIconProps) => (
6 <IconBase Icon={StatusFailureIcon} className="text-icon-danger" small={small} />
7);
8