26 lines
1.3 KiB
Svelte
26 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
interface Props {
|
|
width?: number;
|
|
}
|
|
|
|
let { width = 20 }: Props = $props();
|
|
</script>
|
|
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 16 12"
|
|
aria-hidden="true"
|
|
focusable="false"
|
|
style="width: {width}px;"
|
|
>
|
|
<path
|
|
d="M14.8571429,9.524 C15.3142857,9.524 15.6188571,9.8285714 15.6188571,10.2857143 C15.6188571,10.7428571 15.3142857,11.0474286 14.8571429,11.0474286 L1.14285714,11.0474286 C0.68571429,11.0474286 0.38114286,10.7428571 0.38114286,10.2857143 C0.38114286,9.8285714 0.68571429,9.524 1.14285714,9.524 L14.8571429,9.524 Z M14.8571429,4.9525714 C15.3142857,4.9525714 15.6188571,5.2571429 15.6188571,5.7142857 C15.6188571,6.1714286 15.3142857,6.476 14.8571429,6.476 L1.14285714,6.476 C0.68571429,6.476 0.38114286,6.1714286 0.38114286,5.7142857 C0.38114286,5.2571429 0.68571429,4.9525714 1.14285714,4.9525714 L14.8571429,4.9525714 Z M14.8571429,0.38114286 C15.3142857,0.38114286 15.6188571,0.68571429 15.6188571,1.14285714 C15.6188571,1.6 15.3142857,1.90457143 14.8571429,1.90457143 L1.14285714,1.90457143 C0.68571429,1.90457143 0.38114286,1.6 0.38114286,1.14285714 C0.38114286,0.68571429 0.68571429,0.38114286 1.14285714,0.38114286 L14.8571429,0.38114286 Z"
|
|
></path>
|
|
</svg>
|
|
|
|
<style lang="scss">
|
|
@use './../scss/_colors.scss' as *;
|
|
svg {
|
|
fill: var(--nav-primary, var(--tr-dark-grey));
|
|
}
|
|
</style>
|