Skip to content

Commit 2931a23

Browse files
committed
feat: add IconBars3 component
1 parent 40092f3 commit 2931a23

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/components/icons.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export { Footer } from "./Footer";
22
export { Message } from "./Message";
3+
4+
export * from "./icons.tsx";

0 commit comments

Comments
 (0)