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 Stamp = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Stamp(props, ref) {
return (
<Icon {...props} name="Stamp">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path d="M3 18H21V21H3V18Z" fill="currentColor" />
<path
d="M9.32235 11L10 14H14L14.6776 11H21V17H3V11H9.32235Z"
fill="currentColor"
/>
<path
d="M15 5.07099C15 3.37486 13.6569 2 12 2C10.3431 2 9 3.37486 9 5.07099L11 13H13L15 5.07099Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
Stamp.displayName = 'Stamp'
export default Stamp
|