Skip to content

Commit d2505b9

Browse files
author
Simon Planinschek
committed
Add missing icon
1 parent 623e86d commit d2505b9

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/IconBuild.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const IconBuild: React.FC<IconProps> = (props) => (
5+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
6+
<path clipRule="evenodd" d="M0 0h24v24H0z" fill="none" />
7+
<path d="M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z" />
8+
</svg>
9+
)
10+
11+
export { IconBuild as default }

0 commit comments

Comments
 (0)