xref: /expo/docs/ui/components/DocIcons/NoIcon.tsx (revision f4b1168b)
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