We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9798e97 commit 64a7dfaCopy full SHA for 64a7dfa
1 file changed
src/components/ui/icons/Forum.astro
@@ -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
26
+ d="M8 9h8M8 12h5"
27
28
29
+ stroke-linecap="round"
30
31
+</svg>
0 commit comments