import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconClock = React.forwardRef(function IconClock( props: Props, ref: React.Ref ) { return ( ); }); IconClock.displayName = 'IconClock'; export {IconClock};