diff --git a/web/SWMansionIcon.react.js b/web/SWMansionIcon.react.js index 35bb65275..9ed63caf2 100644 --- a/web/SWMansionIcon.react.js +++ b/web/SWMansionIcon.react.js @@ -1,62 +1,63 @@ // @flow import * as React from 'react'; import IcomoonReact from 'react-icomoon'; import iconSet from './icons/selection.json'; export type Icon = | 'arrow-right-small' | 'bell' | 'logout' | 'plus-circle' | 'users' | 'chevron-right-small' | 'reply-arrow' | 'right-angle-arrow' | 'plus' | 'settings' | 'wrench' | 'Filled' | 'bug' | 'cloud' | 'copy' | 'smile' | 'inbox' | 'info-circle' | 'message-circle-line' | 'question-circle' | 'search' | 'outline-key' | 'chevron-left' | 'arrow-left' | 'arrow-right' | 'cross' | 'edit' | 'filters' | 'menu-horizontal' | 'menu-vertical' | 'message-square' | 'message-square-lines' | 'bell-disabled' | 'chevron-right' | 'send' | 'calendar' | 'message-circle-lines' | 'image'; type SWMansionIconProps = { +icon: Icon, +size: number | string, +color?: string, +title?: string, +className?: string, +disableFill?: boolean, +removeInlineStyle?: boolean, + +style?: $Shape, }; function SWMansionIcon(props: SWMansionIconProps): React.Node { return ; } export default SWMansionIcon;