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 40092f3 commit 2931a23Copy full SHA for 2931a23
src/components/icons.tsx
@@ -0,0 +1,16 @@
1
+// https://heroicons.com/
2
+
3
+export const IconBars3 = () => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ viewBox="0 0 24 24"
7
+ fill="currentColor"
8
+ className="size-6"
9
+ >
10
+ <path
11
+ fillRule="evenodd"
12
+ d="M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75ZM3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12Zm0 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75Z"
13
+ clipRule="evenodd"
14
+ />
15
+ </svg>
16
+);
src/components/index.ts
@@ -1,2 +1,4 @@
export { Footer } from "./Footer";
export { Message } from "./Message";
+export * from "./icons.tsx";
0 commit comments