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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const PushpinOff = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PushpinOff(props, ref) {
return (
<Icon {...props} name="PushpinOff">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M7.05892 2H16.5671C16.5671 2.76919 15.6012 3.82266 14.8073 3.82266L15.4841 10.2496C16.7818 10.5185 17.7549 11.6359 17.7549 12.9734L13.0058 13V20.5L12 22L11.0041 20.5V13L6.25488 12.9734C6.25488 11.6359 7.22794 10.5185 8.52562 10.2496L9.20248 3.82266C8.40858 3.82266 7.05892 2.76919 7.05892 2Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
PushpinOff.displayName = 'PushpinOff'
export default PushpinOff
|