import * as React from 'react'; import type { ForwardRefExoticComponent, RefAttributes, SVGProps } from 'react'; import { useIntl } from 'react-intl'; import { LoadingIndicator } from '@box/blueprint-web'; import { IconCtaIconHover, Size5 } from '@box/blueprint-web-assets/tokens/tokens'; import { XMark } from '@box/blueprint-web-assets/icons/Fill'; import messages from '../common/messages'; const IconInProgress: ForwardRefExoticComponent & RefAttributes> = React.forwardRef(() => { const { formatMessage } = useIntl(); return (
); }); IconInProgress.displayName = 'IconInProgress'; export default IconInProgress;