Skip to content

Commit 42ef55f

Browse files
authored
feat(Icon): added bell & equisoft icons (#288)
1 parent a82d8f9 commit 42ef55f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

packages/react/src/components/icon/icon.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import ArrowDown from 'feather-icons/dist/icons/arrow-down.svg';
55
import ArrowLeft from 'feather-icons/dist/icons/arrow-left.svg';
66
import ArrowRight from 'feather-icons/dist/icons/arrow-right.svg';
77
import ArrowUp from 'feather-icons/dist/icons/arrow-up.svg';
8+
import Bell from 'feather-icons/dist/icons/bell.svg';
89
import Calendar from 'feather-icons/dist/icons/calendar.svg';
910
import Check from 'feather-icons/dist/icons/check.svg';
1011
import ChevronDown from 'feather-icons/dist/icons/chevron-down.svg';
@@ -34,6 +35,7 @@ import Trash from 'feather-icons/dist/icons/trash.svg';
3435
import X from 'feather-icons/dist/icons/x.svg';
3536
import React, { VoidFunctionComponent } from 'react';
3637
import Bento from '../../icons/bento.svg';
38+
import Equisoft from '../../logos/logo-equisoft-ico.svg';
3739
import Open from '../../icons/open.svg';
3840
import Reorder from '../../icons/reorder.svg';
3941
import Files from '../../icons/files.svg';
@@ -45,6 +47,7 @@ const iconMapping = {
4547
arrowLeft: ArrowLeft,
4648
arrowRight: ArrowRight,
4749
arrowUp: ArrowUp,
50+
bell: Bell,
4851
bento: Bento,
4952
calendar: Calendar,
5053
check: Check,
@@ -56,6 +59,7 @@ const iconMapping = {
5659
chevronsRight: ChevronsRight,
5760
copy: Copy,
5861
edit: Edit,
62+
equisoft: Equisoft,
5963
externalLink: ExternalLink,
6064
files: Files,
6165
helpCircle: HelpCircle,

packages/storybook/stories/icon-library.stories.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ export const All: Story = () => (
1515
<Icon name="chevronDown" />
1616
<Icon name="chevronUp" />
1717
<Icon name="copy" />
18+
<Icon name="bell" />
19+
<Icon name="bento" />
1820
<Icon name="edit" />
21+
<Icon name="equisoft" />
1922
<Icon name="files" />
2023
<Icon name="helpCircle" />
2124
<Icon name="home" />

0 commit comments

Comments
 (0)