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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const DrawPolygon = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function DrawPolygon(props, ref) {
return (
<Icon {...props} name="DrawPolygon">
<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="M18.5 2C20.433 2 22 3.567 22 5.5C22 7.08536 20.9455 8.42311 19.5 8.85352V15.1455C20.9457 15.5758 22 16.9145 22 18.5C22 20.433 20.433 22 18.5 22C16.9145 22 15.5758 20.9457 15.1455 19.5H8.85449C8.42417 20.9457 7.08545 22 5.5 22C3.567 22 2 20.433 2 18.5C2 16.9145 3.05434 15.5758 4.5 15.1455V8.85352C3.05447 8.42311 2 7.08536 2 5.5C2 3.567 3.567 2 5.5 2C7.08545 2 8.42417 3.05434 8.85449 4.5H15.1455C15.5758 3.05434 16.9145 2 18.5 2ZM5.5 17C4.67157 17 4 17.6716 4 18.5C4 19.3284 4.67157 20 5.5 20C6.32843 20 7 19.3284 7 18.5C7 17.6716 6.32843 17 5.5 17ZM18.5 17C17.6716 17 17 17.6716 17 18.5C17 19.3284 17.6716 20 18.5 20C19.3284 20 20 19.3284 20 18.5C20 17.6716 19.3284 17 18.5 17ZM8.85449 6.5C8.51852 7.62868 7.62864 8.51746 6.5 8.85352V15.1455C7.62838 15.4814 8.51726 16.3708 8.85352 17.499H15.1455C15.4817 16.3707 16.3715 15.4814 17.5 15.1455V8.85352C16.3714 8.51746 15.4815 7.62868 15.1455 6.5H8.85449ZM5.5 4C4.67157 4 4 4.67157 4 5.5C4 6.32843 4.67157 7 5.5 7C6.32843 7 7 6.32843 7 5.5C7 4.67157 6.32843 4 5.5 4ZM18.5 4C17.6716 4 17 4.67157 17 5.5C17 6.32843 17.6716 7 18.5 7C19.3284 7 20 6.32843 20 5.5C20 4.67157 19.3284 4 18.5 4Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
DrawPolygon.displayName = 'DrawPolygon'
export default DrawPolygon
|