Skip to content

Commit 76a58bc

Browse files
authored
add user-group icon (#2761)
1 parent 7539e6b commit 76a58bc

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

src/lib/holocene/icon/paths.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ import tutorial from './svg/tutorial.svelte';
119119
import update from './svg/update.svelte';
120120
import upload from './svg/upload.svelte';
121121
import usage from './svg/usage.svelte';
122+
import userGroup from './svg/user-group.svelte';
122123
import verticalEllipsis from './svg/vertical-ellipsis.svelte';
123124
import warning from './svg/warning.svelte';
124125
import workflow from './svg/workflow.svelte';
@@ -245,6 +246,7 @@ export const icons = {
245246
update,
246247
upload,
247248
usage,
249+
'user-group': userGroup,
248250
'vertical-ellipsis': verticalEllipsis,
249251
warning,
250252
'system-window': systemWindow,
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<script lang="ts">
2+
import Svg from '../svg.svelte';
3+
let props = $props();
4+
</script>
5+
6+
<Svg {...props}>
7+
<path
8+
d="m 2.4,11.4 -0.39,1.27128 -1.293744,4.2 L 0.555,17.4 0,19.2 H 1.8825 2.4375 14.36256 14.91744 16.8 L 16.245,17.4 16.08372,16.87128 14.79,12.67128 14.4,11.4 H 13.06872 8.4 3.731256 Z m 10.08,6 H 4.32 2.4375 l 0.555,-1.8 0.738756,-2.4 h 9.337464 l 0.73884,2.4 0.555,1.8 z M 13.2,4.8 C 13.2,3.526956 12.69432,2.306064 11.79408,1.405884 10.89396,0.50571602 9.67308,2.4693806e-8 8.4,2.4693806e-8 7.126956,2.4693806e-8 5.906064,0.50571602 5.005884,1.405884 4.105716,2.306064 3.6,3.526956 3.6,4.8 3.6,6.073044 4.105716,7.29396 5.005884,8.19408 5.906064,9.09432 7.126956,9.6 8.4,9.6 9.67308,9.6 10.89396,9.09432 11.79408,8.19408 12.69432,7.29396 13.2,6.073044 13.2,4.8 Z m -7.8,0 C 5.4,4.004352 5.716068,3.241284 6.278676,2.678676 6.841284,2.116068 7.604352,1.8 8.4,1.8 9.195648,1.8 9.95868,2.116068 10.52136,2.678676 11.08392,3.241284 11.4,4.004352 11.4,4.8 11.4,5.595648 11.08392,6.358716 10.52136,6.921324 9.95868,7.48392 9.195648,7.8 8.4,7.8 7.604352,7.8 6.841284,7.48392 6.278676,6.921324 5.716068,6.358716 5.4,5.595648 5.4,4.8 Z M 24,19.2 21.6,12 H 15.84 L 17.94756,18.84756 18.05628,19.2 Z M 16.2,9.6 c 2.32128,0 4.2,-1.87872 4.2,-4.2 0,-2.321256 -1.87872,-4.2 -4.2,-4.2 -0.93,0 -1.78872,0.303744 -2.48628,0.813756 C 14.15256,2.846256 14.4,3.795 14.4,4.8 14.4,6.135 13.965,7.36872 13.22628,8.36628 13.98744,9.12756 15.03744,9.6 16.2,9.6 Z"
9+
fill="currentcolor"
10+
style="stroke-width:1.2"
11+
/>
12+
</Svg>

0 commit comments

Comments
 (0)