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