Skip to content

Commit

Permalink
feat: add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Jul 2, 2024
1 parent 20ff5bb commit 2e93a65
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions packages/components/icon/src/icon-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,41 @@ export const iconMap = [
{
import: "IoChatbubblesOutline",
module: "react-icons/io5",
export: "Chat",
export: "IconChat",
},
{
import: "IoMdNotificationsOutline",
module: "react-icons/io",
export: "Notification",
export: "IconNotification",
},
{
import: "HiPlus",
module: "react-icons/hi",
export: "IconPlus",
},
{
import: "FiTrash2",
module: "react-icons/fi",
export: "IconDelete",
},
{
import: "BiImport",
module: "react-icons/bi",
export: "IconImport",
},
{
import: "BiExport",
module: "react-icons/bi",
export: "IconExport",
},
{
import: "FaCloudDownloadAlt",
module: "react-icons/fa",
export: "IconDownload",
},
{
import: "FaCloudUploadAlt",
module: "react-icons/fa",
export: "IconUpload",
},
];

0 comments on commit 2e93a65

Please sign in to comment.