Skip to content

Commit 1f8d902

Browse files
committed
feat: add icons
1 parent d508604 commit 1f8d902

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

packages/components/icon/src/icons.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Icons - https://react-icons.github.io/react-icons/icons/si/
2-
import { BsBellFill } from "react-icons/bs";
2+
import { BsBell, BsBellFill } from "react-icons/bs";
33
import { GrClose } from "react-icons/gr";
4+
import { TbSettings, TbFolder } from "react-icons/tb";
45
import { SiLinkedin, SiCodersrank, SiNpm, SiCodepen, SiGithub } from "react-icons/si";
56
import {
67
CgSpinnerTwoAlt,
@@ -9,9 +10,12 @@ import {
910
CgChevronUp,
1011
CgChevronDown,
1112
CgTrash,
13+
CgHome,
1214
} from "react-icons/cg";
15+
import { FaRegCircleUser } from "react-icons/fa6";
1316

1417
export default {
18+
"bell": BsBell,
1519
"bell-filled": BsBellFill,
1620
"close": GrClose,
1721
"linkedin": SiLinkedin,
@@ -25,4 +29,8 @@ export default {
2529
"chevron-up": CgChevronUp,
2630
"chevron-down": CgChevronDown,
2731
"trash": CgTrash,
32+
"home": CgHome,
33+
"cog": TbSettings,
34+
"folder": TbFolder,
35+
"user": FaRegCircleUser,
2836
};

0 commit comments

Comments
 (0)