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 Vertex = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Vertex(props, ref) {
return (
<Icon {...props} name="Vertex">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path d="M13.0005 23H11.0005V18H13.0005V23Z" fill="currentColor" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12.0005 8C14.2095 8.0002 16.0005 9.79098 16.0005 12C16.0005 14.209 14.2095 15.9998 12.0005 16C9.79135 16 8.00049 14.2091 8.00049 12C8.00049 9.79086 9.79135 8 12.0005 8ZM12.0005 10C10.8959 10 10.0005 10.8954 10.0005 12C10.0005 13.1046 10.8959 14 12.0005 14C13.1049 13.9998 14.0005 13.1044 14.0005 12C14.0005 10.8956 13.1049 10.0002 12.0005 10Z"
fill="currentColor"
/>
<path d="M6.00049 13H1.00049V11H6.00049V13Z" fill="currentColor" />
<path d="M23.0005 13H18.0005V11H23.0005V13Z" fill="currentColor" />
<path d="M13.0005 6H11.0005V1H13.0005V6Z" fill="currentColor" />
</svg>
</Icon>
)
})
Vertex.displayName = 'Vertex'
export default Vertex
|