Skip to content

Commit 64a7dfa

Browse files
committed
Add missing component
1 parent 9798e97 commit 64a7dfa

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
interface Props {
3+
size?: number;
4+
class?: string;
5+
}
6+
7+
const { size = 20, class: className } = Astro.props;
8+
---
9+
10+
<svg
11+
width={size}
12+
height={size}
13+
viewBox="0 0 24 24"
14+
fill="none"
15+
xmlns="http://www.w3.org/2000/svg"
16+
aria-hidden="true"
17+
class={className}
18+
>
19+
<path
20+
d="M4 4.75h16v11.5H9l-5 3v-14.5Z"
21+
stroke="currentColor"
22+
stroke-width="1.75"
23+
stroke-linejoin="round"
24+
/>
25+
<path
26+
d="M8 9h8M8 12h5"
27+
stroke="currentColor"
28+
stroke-width="1.75"
29+
stroke-linecap="round"
30+
/>
31+
</svg>

0 commit comments

Comments
 (0)