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