mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-17 05:47:32 +00:00
11 lines
432 B
Svelte
11 lines
432 B
Svelte
<script lang="ts">
|
|
export let size: 'x-small' | 'small' | 'medium' | 'large'
|
|
export let fill: string = 'currentColor'
|
|
</script>
|
|
|
|
<svg class="svg-{size}" {fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
<path
|
|
d="M14,7.5H8.5V2c0-0.3-0.2-0.5-0.5-0.5S7.5,1.7,7.5,2v5.5H2C1.7,7.5,1.5,7.7,1.5,8S1.7,8.5,2,8.5h5.5V14 c0,0.3,0.2,0.5,0.5,0.5s0.5-0.2,0.5-0.5V8.5H14c0.3,0,0.5-0.2,0.5-0.5S14.3,7.5,14,7.5z"
|
|
/>
|
|
</svg>
|