Skip to content

Commit 5bba9f4

Browse files
authored
feat: add compose icon (#704)
1 parent 55795c4 commit 5bba9f4

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import createIcon from './createIcon'
2+
3+
export default createIcon(({ size, color }) => (
4+
<svg
5+
width={size}
6+
height={size}
7+
viewBox="0 0 16 16"
8+
fill="none"
9+
xmlns="http://www.w3.org/2000/svg"
10+
>
11+
<path
12+
d="M12.6611 0C12.9823 5.55521e-05 13.3169 0.134693 13.5684 0.40196L16 2.95489L15.2284 3.71462L12.8481 1.1678C12.7942 1.11066 12.7216 1.08324 12.6611 1.08318C12.5988 1.08318 12.5998 1.10691 12.6133 1.08529C12.5941 1.11591 12.5723 1.14511 12.5477 1.17097C10.2315 3.83878 8.93285 5.33451 6.61663 8.00232L6.39378 10.2872L8.54562 10.0502L13.4392 4.2552L14.262 4.98571L9.13854 10.9525C9.05582 11.0405 8.9465 11.0963 8.83014 11.1091L5.87647 11.4338C5.72399 11.4506 5.57205 11.3935 5.46361 11.2783C5.35517 11.163 5.3016 11.0015 5.31737 10.8393L5.62278 7.69767C5.63498 7.5731 5.68729 7.45679 5.77102 7.3687L11.8145 0.416769C12.0341 0.120869 12.3636 0 12.6611 0Z"
13+
fill={color}
14+
/>
15+
<path
16+
d="M2.377 1.84641C1.58933 1.84641 0.950799 2.52536 0.950799 3.36287V13.4725C0.950799 14.31 1.58933 14.989 2.377 14.989H11.885C12.6727 14.989 13.3112 14.31 13.3112 13.4725L13.3112 6.97269L14.262 5.93537L14.262 13.4725C14.262 14.8684 13.1978 16 11.885 16H2.377C1.06422 16 4.59418e-08 14.8684 0 13.4725V3.36287C0 1.96702 1.06422 0.835455 2.377 0.835455H10.676L9.80882 1.84641H2.377Z"
17+
fill={color}
18+
/>
19+
</svg>
20+
))

src/icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export { default as CompassIcon } from './components/icons/CompassIcon'
5454
export { default as CompatibilityIcon } from './components/icons/CompatibilityIcon'
5555
export { default as ComplianceIcon } from './components/icons/ComplianceIcon'
5656
export { default as ComponentsIcon } from './components/icons/ComponentsIcon'
57+
export { default as ComposeIcon } from './components/icons/ComposeIcon'
5758
export { default as ComputerNodeIcon } from './components/icons/ComputerNodeIcon'
5859
export { default as ConfettiIcon } from './components/icons/ConfettiIcon'
5960
export { default as ConsoleIcon } from './components/icons/ConsoleIcon'

0 commit comments

Comments
 (0)