Skip to content

Commit

Permalink
feat: add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Feb 26, 2024
1 parent d508604 commit 1f8d902
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/components/icon/src/icons.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Icons - https://react-icons.github.io/react-icons/icons/si/
import { BsBellFill } from "react-icons/bs";
import { BsBell, BsBellFill } from "react-icons/bs";
import { GrClose } from "react-icons/gr";
import { TbSettings, TbFolder } from "react-icons/tb";
import { SiLinkedin, SiCodersrank, SiNpm, SiCodepen, SiGithub } from "react-icons/si";
import {
CgSpinnerTwoAlt,
Expand All @@ -9,9 +10,12 @@ import {
CgChevronUp,
CgChevronDown,
CgTrash,
CgHome,
} from "react-icons/cg";
import { FaRegCircleUser } from "react-icons/fa6";

export default {
"bell": BsBell,
"bell-filled": BsBellFill,
"close": GrClose,
"linkedin": SiLinkedin,
Expand All @@ -25,4 +29,8 @@ export default {
"chevron-up": CgChevronUp,
"chevron-down": CgChevronDown,
"trash": CgTrash,
"home": CgHome,
"cog": TbSettings,
"folder": TbFolder,
"user": FaRegCircleUser,
};

0 comments on commit 1f8d902

Please sign in to comment.