main
tsx 41 lines 832 Bytes
Raw
1 import 'react'
2 import './icon.css'
3 import { GenIcon } from 'react-icons'
4 import type { JSX } from 'react'
5
6 // generated from https://react-icons-json-generator.surge.sh/
7 const icon = {
8 tag: 'svg',
9 attr: {
10 version: '1.1', x: '0', y: '0', viewBox: '0, 0, 16, 16'
11 },
12 child: [{
13 tag: 'path',
14 attr: {
15 d: 'M10.668,0 L10.664,10.646 L16,5.323 L16,0 z'
16 },
17 child: []
18 }, {
19 tag: 'path',
20 attr: {
21 d: 'M15.973,10.677 L5.309,10.673 L10.641,16 L15.973,16 z'
22 },
23 child: []
24 }, {
25 tag: 'path',
26 attr: {
27 d: 'M5.332,16 L5.336,5.354 L0,10.677 L0,16 z'
28 },
29 child: []
30 }, {
31 tag: 'path',
32 attr: {
33 d: 'M0.027,5.323 L10.691,5.327 L5.359,0 L0.027,0 z'
34 },
35 child: []
36 }]
37 }
38
39 export function ShipyardIcon (props: any): JSX.Element {
40 return GenIcon(icon)(props)
41 }