diff --git a/src/icons/index.ts b/src/icons/index.ts index 82bdff171..91ff5a945 100755 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -133,6 +133,7 @@ export { LockFilled } from './ui/LockFilled'; export { Masonry } from './ui/Masonry'; export { Mevo } from './ui/Mevo'; export { Note } from './ui/Note'; +export { NoteAndPencil } from './ui/NoteAndPencil'; export { Ondemand } from './ui/Ondemand'; export { PaintRoller } from './ui/PaintRoller'; export { PaperPlane } from './ui/PaperPlane'; diff --git a/src/icons/ui/NoteAndPencil.tsx b/src/icons/ui/NoteAndPencil.tsx new file mode 100644 index 000000000..ff3e571f0 --- /dev/null +++ b/src/icons/ui/NoteAndPencil.tsx @@ -0,0 +1,14 @@ +import React, { forwardRef, Ref, SVGAttributes } from 'react'; + +export const NoteAndPencil = forwardRef( + (props: SVGAttributes, ref: Ref) => ( + + + + ) +); diff --git a/src/icons/ui/index.ts b/src/icons/ui/index.ts index b78eeccbd..a568aa683 100755 --- a/src/icons/ui/index.ts +++ b/src/icons/ui/index.ts @@ -82,6 +82,7 @@ export { Masonry } from './Masonry'; export { Mevo } from './Mevo'; export { MicOff } from './MicOff'; export { Note } from './Note'; +export { NoteAndPencil } from './NoteAndPencil'; export { Ondemand } from './Ondemand'; export { PaintRoller } from './PaintRoller'; export { PaperPlane } from './PaperPlane';