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