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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const ClockBricks = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ClockBricks(props, ref) {
return (
<Icon {...props} name="ClockBricks">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12 22C6.47714 22 2 17.5228 2 12C2 6.47717 6.47714 2 12 2C16.4776 2 20.2679 4.9429 21.5422 9H14.5V21.685C13.701 21.8906 12.8632 22 12 22ZM12.1094 13.6625V5.66248H10.1094V12.5938L6.5 15L7.60941 16.6641L12.1094 13.6625Z"
fill="currentColor"
/>
<path d="M22 10.5H16V13H22V10.5Z" fill="currentColor" />
<path d="M22 14.5H16V17H22V14.5Z" fill="currentColor" />
<path d="M16 18.5H22V21H16V18.5Z" fill="currentColor" />
</svg>
</Icon>
)
})
ClockBricks.displayName = 'ClockBricks'
export default ClockBricks
|