Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const FileClock = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function FileClock(props, ref) {
return (
<Icon {...props} name="FileClock">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M12.625 13.6875V11H11.375V14.3125L13.625 16L14.375 15L12.625 13.6875Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M5 21V3H14L19 7V21H5ZM16.5 13.5C16.5 15.9853 14.4853 18 12 18C9.51471 18 7.5 15.9853 7.5 13.5C7.5 11.0147 9.51471 9 12 9C14.4853 9 16.5 11.0147 16.5 13.5Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
FileClock.displayName = 'FileClock'
export default FileClock
|