Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions assets/icon-note.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/components/Icon/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -198,6 +199,7 @@ export type IconName =
| 'monitoring'
| 'monitoringNav'
| 'newOrganization'
| 'note'
| 'notification'
| 'organization'
| 'organizationNav'
Expand Down Expand Up @@ -314,6 +316,7 @@ const icons: Record<IconName, SVGComponent> = {
monitoring: Monitoring,
monitoringNav: MonitoringNav,
newOrganization: WelcomeClipboard,
note: Note,
notification: Notification,
organization: Organization,
organizationNav: OrganizationNav,
Expand Down
16 changes: 16 additions & 0 deletions src/components/svg/IconNote.tsx
Original file line number Diff line number Diff line change
@@ -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<SVGSVGElement> & SVGRProps) => (
<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' aria-labelledby={titleId} {...props}>
{title ? <title id={titleId}>{title}</title> : null}
<path
fill='#333025'
d='M5.25 3A2.26 2.26 0 0 0 3 5.25v13.5A2.26 2.26 0 0 0 5.25 21h9.5a.75.75 0 0 0 .538-.227l5.492-5.493a.75.75 0 0 0 .22-.53v-9.5A2.26 2.26 0 0 0 18.75 3zm0 1.5h13.5c.423 0 .75.327.75.75V14h-3.25A2.26 2.26 0 0 0 14 16.25v3.25H5.25a.74.74 0 0 1-.75-.75V5.25c0-.423.327-.75.75-.75m2.5 2.499a.75.75 0 1 0 0 1.5h8.5a.75.75 0 1 0 0-1.5zm0 3.5a.751.751 0 1 0 0 1.5h6.5a.75.75 0 1 0 0-1.5zm8.5 5.001h2.19l-2.94 2.94v-2.19c0-.423.327-.75.75-.75'
/>
</svg>
);
export default SvgIconNote;
1 change: 1 addition & 0 deletions src/components/svg/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down