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 ClipboardPushpin = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ClipboardPushpin(props, ref) {
return (
<Icon {...props} name="ClipboardPushpin">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M12 1C11.2636 1 10.6667 1.54747 10.6667 2.22283H8.83334C8.09697 2.22283 7.5 2.36269 7.5 3.03804V5L16.5 4.96196V3C16.5 2.32464 15.903 2.18478 15.1667 2.18478L13.3333 2.22283C13.3333 1.54747 12.7364 1 12 1Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M5 3C4.44772 3 4 3.44772 4 4V22C4 22.5523 4.44771 23 5 23H19C19.5523 23 20 22.5523 20 22L20 3.9849C20 3.43855 19.5615 2.99333 19.0152 2.98501L17.5 2.96196V5.96196L6.5 6V3H5ZM10.6736 7.98698L6.41626 12.2443C6.76067 12.5887 7.83668 12.4561 8.19215 12.1006L10.7668 15.2813C10.3061 15.9828 10.3708 16.9188 10.9697 17.5177L13.108 15.4031L16.4662 18.7613L17.5837 18.987L17.3624 17.865L14.0043 14.5069L16.1188 12.3685C15.5199 11.7696 14.5839 11.705 13.8825 12.1656L10.7017 9.59103C11.0572 9.23556 11.018 8.33139 10.6736 7.98698Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
ClipboardPushpin.displayName = 'ClipboardPushpin'
export default ClipboardPushpin
|