diff --git a/web/SWMansionIcon.react.js b/web/SWMansionIcon.react.js index 4ddb9f23a..c62ee9e8c 100644 --- a/web/SWMansionIcon.react.js +++ b/web/SWMansionIcon.react.js @@ -1,63 +1,80 @@ // @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' | 'message-filled-round' | 'bug' | 'cloud' | 'copy' | 'smile' | 'inbox' | 'info-circle' | 'message-circle-line' | 'question-circle' | 'search' | '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'; + | 'image' + | 'upload' + | 'user-circle' + | 'arrow-left-small' + | 'cross-circle' + | 'document-clean' + | 'globe' + | 'link' + | 'lock-on' + | 'mail' + | 'message-circle' + | 'smart-phone' + | 'user-plus' + | 'warning-circle' + | 'dino-avatar' + | 'laptop' + | 'list-filled' + | 'reply-chat-bubble'; 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;