diff --git a/assets/icon-note.svg b/assets/icon-note.svg new file mode 100644 index 000000000..c4b2fd297 --- /dev/null +++ b/assets/icon-note.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/Icon/icons/index.tsx b/src/components/Icon/icons/index.tsx index b15a97d8b..7c458d50d 100644 --- a/src/components/Icon/icons/index.tsx +++ b/src/components/Icon/icons/index.tsx @@ -85,6 +85,7 @@ import MenuVertical from '../../svg/MenuVertical'; import Monitoring from '../../svg/BlobbyIconHeartMonitor'; import MonitoringNav from '../../svg/IconHeartMonitor'; import Mail from '../../svg/IconMail'; +import Note from '../../svg/IconNote'; import Notification from '../../svg/Notification'; import Organization from '../../svg/BlobbyIconOrganization'; import OrganizationNav from '../../svg/IconOrg'; @@ -198,6 +199,7 @@ export type IconName = | 'monitoring' | 'monitoringNav' | 'newOrganization' + | 'note' | 'notification' | 'organization' | 'organizationNav' @@ -314,6 +316,7 @@ const icons: Record = { monitoring: Monitoring, monitoringNav: MonitoringNav, newOrganization: WelcomeClipboard, + note: Note, notification: Notification, organization: Organization, organizationNav: OrganizationNav, diff --git a/src/components/svg/IconNote.tsx b/src/components/svg/IconNote.tsx new file mode 100644 index 000000000..1a1cb8daf --- /dev/null +++ b/src/components/svg/IconNote.tsx @@ -0,0 +1,16 @@ +import * as React from 'react'; +import { SVGProps } from 'react'; +interface SVGRProps { + title?: string; + titleId?: string; +} +const SvgIconNote = ({ title, titleId, ...props }: SVGProps & SVGRProps) => ( + + {title ? {title} : null} + + +); +export default SvgIconNote; diff --git a/src/components/svg/index.ts b/src/components/svg/index.ts index a96a69998..14587e7a5 100644 --- a/src/components/svg/index.ts +++ b/src/components/svg/index.ts @@ -67,6 +67,7 @@ export { default as IconMenuHorizontal } from './IconMenuHorizontal'; export { default as IconMenu } from './IconMenu'; export { default as IconModule } from './IconModule'; export { default as IconMyLocation } from './IconMyLocation'; +export { default as IconNote } from './IconNote'; export { default as IconNursery } from './IconNursery'; export { default as IconOrg } from './IconOrg'; export { default as IconParchment } from './IconParchment';