Skip to content

Commit 8a12c8d

Browse files
authored
feat(icons): New icons (#755)
* Add icons * Fix optionmenu type
1 parent 844043d commit 8a12c8d

File tree

5 files changed

+41
-2
lines changed

5 files changed

+41
-2
lines changed

packages/fuselage/src/components/Options/Option/OptionMenu.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { ReactNode } from 'react';
1+
import type { HTMLAttributes, ReactNode } from 'react';
22
import React from 'react';
33

44
type OptionMenuProps = {
55
children?: ReactNode;
6-
};
6+
} & HTMLAttributes<HTMLDivElement>;
77

88
const OptionMenu = (props: OptionMenuProps) => (
99
<div className='rcx-box--animated rcx-option__menu-wrapper' {...props} />

packages/icons/glyphsMapping.json

+9
Original file line numberDiff line numberDiff line change
@@ -847,5 +847,14 @@
847847
},
848848
"phone-issue": {
849849
"start": "\ue0fb"
850+
},
851+
"notebook-hashtag-crossed": {
852+
"start": "\ue0fd"
853+
},
854+
"notebook-hashtag": {
855+
"start": "\ue0ff"
856+
},
857+
"arrow-forward": {
858+
"start": "\ue101"
850859
}
851860
}

packages/icons/src/arrow-forward.svg

+5
Loading
Loading
+5
Loading

0 commit comments

Comments
 (0)