├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug-report---.md │ └── feature-request---.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README-zh_CN.md ├── README.md ├── babel.config.js ├── docs ├── .eslintignore ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── now.json ├── package-lock.json ├── package.json ├── src │ ├── components │ │ ├── docs │ │ │ ├── content.styled.ts │ │ │ ├── content.tsx │ │ │ ├── editPage.tsx │ │ │ ├── nav-footer.tsx │ │ │ ├── nav.tsx │ │ │ └── sidebar.tsx │ │ ├── highlight.tsx │ │ ├── layout.tsx │ │ ├── playground.tsx │ │ ├── search │ │ │ ├── index.tsx │ │ │ ├── input.tsx │ │ │ ├── results.tsx │ │ │ └── styles.tsx │ │ ├── seo.tsx │ │ └── table.tsx │ ├── docs │ │ ├── components │ │ │ ├── Box │ │ │ │ ├── Box.md │ │ │ │ ├── Box.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Button │ │ │ │ ├── Button.md │ │ │ │ ├── Button.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Card │ │ │ │ ├── Card.md │ │ │ │ ├── Card.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Checkbox │ │ │ │ ├── Checkbox.md │ │ │ │ ├── Checkbox.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Color │ │ │ │ ├── BgTool.tsx │ │ │ │ ├── Color.md │ │ │ │ ├── Color.zh.md │ │ │ │ ├── ColorTool.tsx │ │ │ │ └── template.tsx │ │ │ ├── Command │ │ │ │ ├── Command.md │ │ │ │ ├── Command.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Dialog │ │ │ │ ├── Dialog.md │ │ │ │ ├── Dialog.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Drawer │ │ │ │ ├── Drawer.md │ │ │ │ ├── Drawer.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Form │ │ │ │ ├── Form.md │ │ │ │ ├── Form.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── FormLabel │ │ │ │ ├── FormLabel.md │ │ │ │ ├── FormLabel.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Icon │ │ │ │ ├── Icon.md │ │ │ │ ├── Icon.tsx │ │ │ │ ├── Icon.zh.md │ │ │ │ ├── api.md │ │ │ │ ├── api.zh.md │ │ │ │ ├── tags.json │ │ │ │ └── template.tsx │ │ │ ├── IconButton │ │ │ │ ├── IconButton.md │ │ │ │ ├── IconButton.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Input │ │ │ │ ├── Input.md │ │ │ │ ├── Input.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Item │ │ │ │ ├── Item.md │ │ │ │ ├── Item.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── ItemGroup │ │ │ │ ├── ItemGroup.md │ │ │ │ ├── ItemGroup.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── List │ │ │ │ ├── List.md │ │ │ │ ├── List.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Navigation │ │ │ │ ├── Navigation.md │ │ │ │ ├── Navigation.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Portal │ │ │ │ ├── Portal.md │ │ │ │ ├── Portal.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Progress │ │ │ │ ├── Progress.md │ │ │ │ ├── Progress.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Radio │ │ │ │ ├── Radio.md │ │ │ │ ├── Radio.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Select │ │ │ │ ├── Select.md │ │ │ │ ├── Select.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Spinner │ │ │ │ ├── Spinner.md │ │ │ │ ├── Spinner.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Table │ │ │ │ ├── Table.md │ │ │ │ ├── Table.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Tabs │ │ │ │ ├── Tabs.md │ │ │ │ ├── Tabs.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Toast │ │ │ │ ├── Toast.md │ │ │ │ ├── Toast.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Toggle │ │ │ │ ├── Toggle.md │ │ │ │ ├── Toggle.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Tooltip │ │ │ │ ├── Tooltip.md │ │ │ │ ├── Tooltip.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ ├── Transition │ │ │ │ ├── Transition.md │ │ │ │ ├── Transition.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ │ └── Typography │ │ │ │ ├── Typography.md │ │ │ │ ├── Typography.zh.md │ │ │ │ ├── api.md │ │ │ │ └── api.zh.md │ │ ├── getting-started │ │ │ ├── Usage │ │ │ │ ├── Usage.md │ │ │ │ └── Usage.zh.md │ │ │ ├── installation │ │ │ │ ├── installation.md │ │ │ │ └── installation.zh.md │ │ │ ├── minimizing-bundle-size │ │ │ │ ├── minimizing-bundle-size.md │ │ │ │ └── minimizing-bundle-size.zh.md │ │ │ └── theme │ │ │ │ ├── template.tsx │ │ │ │ ├── theme.md │ │ │ │ └── theme.zh.md │ │ └── hooks │ │ │ ├── guide │ │ │ ├── guide.md │ │ │ └── guide.zh.md │ │ │ ├── useAction │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useAction.md │ │ │ └── useAction.zh.md │ │ │ ├── useClick │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useClick.md │ │ │ └── useClick.zh.md │ │ │ ├── useClickOutside │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useClickOutside.md │ │ │ └── useClickOutside.zh.md │ │ │ ├── useFocus │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useFocus.md │ │ │ └── useFocus.zh.md │ │ │ ├── useGlobal │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useGlobal.md │ │ │ └── useGlobal.zh.md │ │ │ ├── useHover │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useHover.md │ │ │ └── useHover.zh.md │ │ │ ├── useMedia │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useMedia.md │ │ │ └── useMedia.zh.md │ │ │ ├── useMessage │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useMessage.md │ │ │ └── useMessage.zh.md │ │ │ ├── usePopper │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── usePopper.md │ │ │ └── usePopper.zh.md │ │ │ ├── useReveal │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useReveal.md │ │ │ └── useReveal.zh.md │ │ │ ├── useTouch │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useTouch.md │ │ │ └── useTouch.zh.md │ │ │ └── useUpdateEffect │ │ │ ├── api.md │ │ │ ├── api.zh.md │ │ │ ├── useUpdateEffect.md │ │ │ └── useUpdateEffect.zh.md │ ├── pages │ │ ├── 404.tsx │ │ ├── index.tsx │ │ └── index.zh.tsx │ ├── templates │ │ └── docs.tsx │ ├── translations │ │ ├── index.ts │ │ ├── translations-zh.ts │ │ └── translations.ts │ └── utils │ │ ├── algolia.js │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── theme.ts └── static │ └── images │ ├── algolia.svg │ ├── fluent-windows-pure.png │ ├── fluent-windows-pure.svg │ ├── fluent-windows.png │ ├── fluent-windows.svg │ ├── github.svg │ ├── icon-arrangement.png │ └── wall.jpg ├── jest.config.base..js ├── jest.config.js ├── lerna.json ├── package.json ├── packages ├── fluent-windows-hooks │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ ├── useAction │ │ │ ├── index.ts │ │ │ ├── subscribers.ts │ │ │ ├── useAction.ts │ │ │ └── useDispatch.ts │ │ ├── useClick │ │ │ ├── index.ts │ │ │ └── useClick.ts │ │ ├── useClickOutside │ │ │ ├── index.ts │ │ │ └── useClickOutside.ts │ │ ├── useFocus │ │ │ ├── index.ts │ │ │ └── useFocus.ts │ │ ├── useGlobal │ │ │ ├── index.ts │ │ │ └── useGlobal.ts │ │ ├── useHover │ │ │ ├── index.ts │ │ │ └── useHover.ts │ │ ├── useMedia │ │ │ ├── index.ts │ │ │ └── useMedia.ts │ │ ├── useMessage │ │ │ ├── index.ts │ │ │ └── useMessage.ts │ │ ├── usePopper │ │ │ ├── index.ts │ │ │ └── usePopper.ts │ │ ├── useReveal │ │ │ ├── index.ts │ │ │ └── useReveal.tsx │ │ ├── useTouch │ │ │ ├── index.ts │ │ │ └── useTouch.ts │ │ └── useUpdateEffect │ │ │ ├── index.ts │ │ │ └── useUpdateEffect.ts │ └── tsconfig.json ├── fluent-windows-icons │ ├── CHANGELOG.md │ ├── README.md │ ├── builder.ts │ ├── jest.config.js │ ├── package.json │ ├── remix │ │ ├── Buildings │ │ │ ├── bank-fill.svg │ │ │ ├── bank-line.svg │ │ │ ├── building-2-fill.svg │ │ │ ├── building-2-line.svg │ │ │ ├── building-3-fill.svg │ │ │ ├── building-3-line.svg │ │ │ ├── building-4-fill.svg │ │ │ ├── building-4-line.svg │ │ │ ├── building-fill.svg │ │ │ ├── building-line.svg │ │ │ ├── community-fill.svg │ │ │ ├── community-line.svg │ │ │ ├── government-fill.svg │ │ │ ├── government-line.svg │ │ │ ├── home-2-fill.svg │ │ │ ├── home-2-line.svg │ │ │ ├── home-3-fill.svg │ │ │ ├── home-3-line.svg │ │ │ ├── home-4-fill.svg │ │ │ ├── home-4-line.svg │ │ │ ├── home-5-fill.svg │ │ │ ├── home-5-line.svg │ │ │ ├── home-6-fill.svg │ │ │ ├── home-6-line.svg │ │ │ ├── home-7-fill.svg │ │ │ ├── home-7-line.svg │ │ │ ├── home-8-fill.svg │ │ │ ├── home-8-line.svg │ │ │ ├── home-fill.svg │ │ │ ├── home-gear-fill.svg │ │ │ ├── home-gear-line.svg │ │ │ ├── home-heart-fill.svg │ │ │ ├── home-heart-line.svg │ │ │ ├── home-line.svg │ │ │ ├── home-smile-2-fill.svg │ │ │ ├── home-smile-2-line.svg │ │ │ ├── home-smile-fill.svg │ │ │ ├── home-smile-line.svg │ │ │ ├── home-wifi-fill.svg │ │ │ ├── home-wifi-line.svg │ │ │ ├── hospital-fill.svg │ │ │ ├── hospital-line.svg │ │ │ ├── hotel-fill.svg │ │ │ ├── hotel-line.svg │ │ │ ├── store-2-fill.svg │ │ │ ├── store-2-line.svg │ │ │ ├── store-3-fill.svg │ │ │ ├── store-3-line.svg │ │ │ ├── store-fill.svg │ │ │ └── store-line.svg │ │ ├── Business │ │ │ ├── archive-drawer-fill.svg │ │ │ ├── archive-drawer-line.svg │ │ │ ├── archive-fill.svg │ │ │ ├── archive-line.svg │ │ │ ├── at-fill.svg │ │ │ ├── at-line.svg │ │ │ ├── attachment-fill.svg │ │ │ ├── attachment-line.svg │ │ │ ├── award-fill.svg │ │ │ ├── award-line.svg │ │ │ ├── bar-chart-2-fill.svg │ │ │ ├── bar-chart-2-line.svg │ │ │ ├── bar-chart-box-fill.svg │ │ │ ├── bar-chart-box-line.svg │ │ │ ├── bar-chart-fill.svg │ │ │ ├── bar-chart-grouped-fill.svg │ │ │ ├── bar-chart-grouped-line.svg │ │ │ ├── bar-chart-horizontal-fill.svg │ │ │ ├── bar-chart-horizontal-line.svg │ │ │ ├── bar-chart-line.svg │ │ │ ├── bookmark-2-fill.svg │ │ │ ├── bookmark-2-line.svg │ │ │ ├── bookmark-3-fill.svg │ │ │ ├── bookmark-3-line.svg │ │ │ ├── bookmark-fill.svg │ │ │ ├── bookmark-line.svg │ │ │ ├── briefcase-2-fill.svg │ │ │ ├── briefcase-2-line.svg │ │ │ ├── briefcase-3-fill.svg │ │ │ ├── briefcase-3-line.svg │ │ │ ├── briefcase-4-fill.svg │ │ │ ├── briefcase-4-line.svg │ │ │ ├── briefcase-5-fill.svg │ │ │ ├── briefcase-5-line.svg │ │ │ ├── briefcase-fill.svg │ │ │ ├── briefcase-line.svg │ │ │ ├── calculator-fill.svg │ │ │ ├── calculator-line.svg │ │ │ ├── calendar-2-fill.svg │ │ │ ├── calendar-2-line.svg │ │ │ ├── calendar-event-fill.svg │ │ │ ├── calendar-event-line.svg │ │ │ ├── calendar-fill.svg │ │ │ ├── calendar-line.svg │ │ │ ├── calendar-todo-fill.svg │ │ │ ├── calendar-todo-line.svg │ │ │ ├── cloud-fill.svg │ │ │ ├── cloud-line.svg │ │ │ ├── customer-service-2-fill.svg │ │ │ ├── customer-service-2-line.svg │ │ │ ├── customer-service-fill.svg │ │ │ ├── customer-service-line.svg │ │ │ ├── flag-2-fill.svg │ │ │ ├── flag-2-line.svg │ │ │ ├── flag-fill.svg │ │ │ ├── flag-line.svg │ │ │ ├── global-fill.svg │ │ │ ├── global-line.svg │ │ │ ├── honour-fill.svg │ │ │ ├── honour-line.svg │ │ │ ├── inbox-archive-fill.svg │ │ │ ├── inbox-archive-line.svg │ │ │ ├── inbox-fill.svg │ │ │ ├── inbox-line.svg │ │ │ ├── links-fill.svg │ │ │ ├── links-line.svg │ │ │ ├── mail-add-fill.svg │ │ │ ├── mail-add-line.svg │ │ │ ├── mail-check-fill.svg │ │ │ ├── mail-check-line.svg │ │ │ ├── mail-close-fill.svg │ │ │ ├── mail-close-line.svg │ │ │ ├── mail-download-fill.svg │ │ │ ├── mail-download-line.svg │ │ │ ├── mail-fill.svg │ │ │ ├── mail-forbid-fill.svg │ │ │ ├── mail-forbid-line.svg │ │ │ ├── mail-line.svg │ │ │ ├── mail-lock-fill.svg │ │ │ ├── mail-lock-line.svg │ │ │ ├── mail-open-fill.svg │ │ │ ├── mail-open-line.svg │ │ │ ├── mail-send-fill.svg │ │ │ ├── mail-send-line.svg │ │ │ ├── mail-settings-fill.svg │ │ │ ├── mail-settings-line.svg │ │ │ ├── mail-star-fill.svg │ │ │ ├── mail-star-line.svg │ │ │ ├── mail-unread-fill.svg │ │ │ ├── mail-unread-line.svg │ │ │ ├── pie-chart-2-fill.svg │ │ │ ├── pie-chart-2-line.svg │ │ │ ├── pie-chart-box-fill.svg │ │ │ ├── pie-chart-box-line.svg │ │ │ ├── pie-chart-fill.svg │ │ │ ├── pie-chart-line.svg │ │ │ ├── printer-fill.svg │ │ │ ├── printer-line.svg │ │ │ ├── profile-fill.svg │ │ │ ├── profile-line.svg │ │ │ ├── projector-2-fill.svg │ │ │ ├── projector-2-line.svg │ │ │ ├── projector-fill.svg │ │ │ ├── projector-line.svg │ │ │ ├── record-mail-fill.svg │ │ │ ├── record-mail-line.svg │ │ │ ├── reply-fill.svg │ │ │ ├── reply-line.svg │ │ │ ├── send-plane-2-fill.svg │ │ │ ├── send-plane-2-line.svg │ │ │ ├── send-plane-fill.svg │ │ │ ├── send-plane-line.svg │ │ │ ├── slideshow-2-fill.svg │ │ │ ├── slideshow-2-line.svg │ │ │ ├── slideshow-3-fill.svg │ │ │ ├── slideshow-3-line.svg │ │ │ ├── slideshow-4-fill.svg │ │ │ ├── slideshow-4-line.svg │ │ │ ├── slideshow-fill.svg │ │ │ ├── slideshow-line.svg │ │ │ ├── stack-fill.svg │ │ │ ├── stack-line.svg │ │ │ ├── window-2-fill.svg │ │ │ ├── window-2-line.svg │ │ │ ├── window-fill.svg │ │ │ └── window-line.svg │ │ ├── Communication │ │ │ ├── chat-1-fill.svg │ │ │ ├── chat-1-line.svg │ │ │ ├── chat-2-fill.svg │ │ │ ├── chat-2-line.svg │ │ │ ├── chat-3-fill.svg │ │ │ ├── chat-3-line.svg │ │ │ ├── chat-4-fill.svg │ │ │ ├── chat-4-line.svg │ │ │ ├── chat-check-fill.svg │ │ │ ├── chat-check-line.svg │ │ │ ├── chat-delete-fill.svg │ │ │ ├── chat-delete-line.svg │ │ │ ├── chat-download-fill.svg │ │ │ ├── chat-download-line.svg │ │ │ ├── chat-forward-fill.svg │ │ │ ├── chat-forward-line.svg │ │ │ ├── chat-heart-fill.svg │ │ │ ├── chat-heart-line.svg │ │ │ ├── chat-new-fill.svg │ │ │ ├── chat-new-line.svg │ │ │ ├── chat-settings-fill.svg │ │ │ ├── chat-settings-line.svg │ │ │ ├── chat-smile-2-fill.svg │ │ │ ├── chat-smile-2-line.svg │ │ │ ├── chat-smile-3-fill.svg │ │ │ ├── chat-smile-3-line.svg │ │ │ ├── chat-smile-fill.svg │ │ │ ├── chat-smile-line.svg │ │ │ ├── chat-upload-fill.svg │ │ │ ├── chat-upload-line.svg │ │ │ ├── chat-voice-fill.svg │ │ │ ├── chat-voice-line.svg │ │ │ ├── discuss-fill.svg │ │ │ ├── discuss-line.svg │ │ │ ├── feedback-fill.svg │ │ │ ├── feedback-line.svg │ │ │ ├── message-2-fill.svg │ │ │ ├── message-2-line.svg │ │ │ ├── message-3-fill.svg │ │ │ ├── message-3-line.svg │ │ │ ├── message-fill.svg │ │ │ ├── message-line.svg │ │ │ ├── question-answer-fill.svg │ │ │ ├── question-answer-line.svg │ │ │ ├── questionnaire-fill.svg │ │ │ ├── questionnaire-line.svg │ │ │ ├── video-chat-fill.svg │ │ │ └── video-chat-line.svg │ │ ├── Development │ │ │ ├── braces-fill.svg │ │ │ ├── braces-line.svg │ │ │ ├── brackets-fill.svg │ │ │ ├── brackets-line.svg │ │ │ ├── bug-2-fill.svg │ │ │ ├── bug-2-line.svg │ │ │ ├── bug-fill.svg │ │ │ ├── bug-line.svg │ │ │ ├── code-box-fill.svg │ │ │ ├── code-box-line.svg │ │ │ ├── code-fill.svg │ │ │ ├── code-line.svg │ │ │ ├── code-s-fill.svg │ │ │ ├── code-s-line.svg │ │ │ ├── code-s-slash-fill.svg │ │ │ ├── code-s-slash-line.svg │ │ │ ├── command-fill.svg │ │ │ ├── command-line.svg │ │ │ ├── css3-fill.svg │ │ │ ├── css3-line.svg │ │ │ ├── cursor-fill.svg │ │ │ ├── cursor-line.svg │ │ │ ├── git-branch-fill.svg │ │ │ ├── git-branch-line.svg │ │ │ ├── git-commit-fill.svg │ │ │ ├── git-commit-line.svg │ │ │ ├── git-merge-fill.svg │ │ │ ├── git-merge-line.svg │ │ │ ├── git-pull-request-fill.svg │ │ │ ├── git-pull-request-line.svg │ │ │ ├── git-repository-commits-fill.svg │ │ │ ├── git-repository-commits-line.svg │ │ │ ├── git-repository-fill.svg │ │ │ ├── git-repository-line.svg │ │ │ ├── git-repository-private-fill.svg │ │ │ ├── git-repository-private-line.svg │ │ │ ├── html5-fill.svg │ │ │ ├── html5-line.svg │ │ │ ├── parentheses-fill.svg │ │ │ ├── parentheses-line.svg │ │ │ ├── terminal-box-fill.svg │ │ │ ├── terminal-box-line.svg │ │ │ ├── terminal-fill.svg │ │ │ ├── terminal-line.svg │ │ │ ├── terminal-window-fill.svg │ │ │ └── terminal-window-line.svg │ │ ├── Device │ │ │ ├── airplay-fill.svg │ │ │ ├── airplay-line.svg │ │ │ ├── battery-2-charge-fill.svg │ │ │ ├── battery-2-charge-line.svg │ │ │ ├── battery-2-fill.svg │ │ │ ├── battery-2-line.svg │ │ │ ├── battery-charge-fill.svg │ │ │ ├── battery-charge-line.svg │ │ │ ├── battery-fill.svg │ │ │ ├── battery-line.svg │ │ │ ├── battery-low-fill.svg │ │ │ ├── battery-low-line.svg │ │ │ ├── cast-fill.svg │ │ │ ├── cast-line.svg │ │ │ ├── cellphone-fill.svg │ │ │ ├── cellphone-line.svg │ │ │ ├── computer-fill.svg │ │ │ ├── computer-line.svg │ │ │ ├── cpu-fill.svg │ │ │ ├── cpu-line.svg │ │ │ ├── database-2-fill.svg │ │ │ ├── database-2-line.svg │ │ │ ├── database-fill.svg │ │ │ ├── database-line.svg │ │ │ ├── device-fill.svg │ │ │ ├── device-line.svg │ │ │ ├── gradienter-fill.svg │ │ │ ├── gradienter-line.svg │ │ │ ├── hard-drive-2-fill.svg │ │ │ ├── hard-drive-2-line.svg │ │ │ ├── hard-drive-fill.svg │ │ │ ├── hard-drive-line.svg │ │ │ ├── keyboard-box-fill.svg │ │ │ ├── keyboard-box-line.svg │ │ │ ├── keyboard-fill.svg │ │ │ ├── keyboard-line.svg │ │ │ ├── mac-fill.svg │ │ │ ├── mac-line.svg │ │ │ ├── macbook-fill.svg │ │ │ ├── macbook-line.svg │ │ │ ├── mouse-fill.svg │ │ │ ├── mouse-line.svg │ │ │ ├── phone-fill.svg │ │ │ ├── phone-line.svg │ │ │ ├── radar-fill.svg │ │ │ ├── radar-line.svg │ │ │ ├── router-fill.svg │ │ │ ├── router-line.svg │ │ │ ├── save-2-fill.svg │ │ │ ├── save-2-line.svg │ │ │ ├── save-3-fill.svg │ │ │ ├── save-3-line.svg │ │ │ ├── save-fill.svg │ │ │ ├── save-line.svg │ │ │ ├── sd-card-fill.svg │ │ │ ├── sd-card-line.svg │ │ │ ├── sd-card-mini-fill.svg │ │ │ ├── sd-card-mini-line.svg │ │ │ ├── sensor-fill.svg │ │ │ ├── sensor-line.svg │ │ │ ├── server-fill.svg │ │ │ ├── server-line.svg │ │ │ ├── sim-card-2-fill.svg │ │ │ ├── sim-card-2-line.svg │ │ │ ├── sim-card-fill.svg │ │ │ ├── sim-card-line.svg │ │ │ ├── smartphone-fill.svg │ │ │ ├── smartphone-line.svg │ │ │ ├── tablet-fill.svg │ │ │ ├── tablet-line.svg │ │ │ ├── tv-2-fill.svg │ │ │ ├── tv-2-line.svg │ │ │ ├── tv-fill.svg │ │ │ ├── tv-line.svg │ │ │ ├── u-disk-fill.svg │ │ │ └── u-disk-line.svg │ │ ├── Document │ │ │ ├── article-fill.svg │ │ │ ├── article-line.svg │ │ │ ├── bill-fill.svg │ │ │ ├── bill-line.svg │ │ │ ├── book-2-fill.svg │ │ │ ├── book-2-line.svg │ │ │ ├── book-3-fill.svg │ │ │ ├── book-3-line.svg │ │ │ ├── book-fill.svg │ │ │ ├── book-line.svg │ │ │ ├── book-open-fill.svg │ │ │ ├── book-open-line.svg │ │ │ ├── book-read-fill.svg │ │ │ ├── book-read-line.svg │ │ │ ├── clipboard-fill.svg │ │ │ ├── clipboard-line.svg │ │ │ ├── contacts-book-2-fill.svg │ │ │ ├── contacts-book-2-line.svg │ │ │ ├── contacts-book-fill.svg │ │ │ ├── contacts-book-line.svg │ │ │ ├── file-2-fill.svg │ │ │ ├── file-2-line.svg │ │ │ ├── file-3-fill.svg │ │ │ ├── file-3-line.svg │ │ │ ├── file-4-fill.svg │ │ │ ├── file-4-line.svg │ │ │ ├── file-add-fill.svg │ │ │ ├── file-add-line.svg │ │ │ ├── file-chart-2-fill.svg │ │ │ ├── file-chart-2-line.svg │ │ │ ├── file-chart-fill.svg │ │ │ ├── file-chart-line.svg │ │ │ ├── file-code-fill.svg │ │ │ ├── file-code-line.svg │ │ │ ├── file-copy-2-fill.svg │ │ │ ├── file-copy-2-line.svg │ │ │ ├── file-copy-fill.svg │ │ │ ├── file-copy-line.svg │ │ │ ├── file-damage-fill.svg │ │ │ ├── file-damage-line.svg │ │ │ ├── file-download-fill.svg │ │ │ ├── file-download-line.svg │ │ │ ├── file-edit-fill.svg │ │ │ ├── file-edit-line.svg │ │ │ ├── file-excel-2-fill.svg │ │ │ ├── file-excel-2-line.svg │ │ │ ├── file-excel-fill.svg │ │ │ ├── file-excel-line.svg │ │ │ ├── file-fill.svg │ │ │ ├── file-forbid-fill.svg │ │ │ ├── file-forbid-line.svg │ │ │ ├── file-info-fill.svg │ │ │ ├── file-info-line.svg │ │ │ ├── file-line.svg │ │ │ ├── file-list-2-fill.svg │ │ │ ├── file-list-2-line.svg │ │ │ ├── file-list-3-fill.svg │ │ │ ├── file-list-3-line.svg │ │ │ ├── file-list-fill.svg │ │ │ ├── file-list-line.svg │ │ │ ├── file-lock-fill.svg │ │ │ ├── file-lock-line.svg │ │ │ ├── file-mark-fill.svg │ │ │ ├── file-mark-line.svg │ │ │ ├── file-music-fill.svg │ │ │ ├── file-music-line.svg │ │ │ ├── file-paper-fill.svg │ │ │ ├── file-paper-line.svg │ │ │ ├── file-pdf-fill.svg │ │ │ ├── file-pdf-line.svg │ │ │ ├── file-ppt-2-fill.svg │ │ │ ├── file-ppt-2-line.svg │ │ │ ├── file-ppt-fill.svg │ │ │ ├── file-ppt-line.svg │ │ │ ├── file-reduce-fill.svg │ │ │ ├── file-reduce-line.svg │ │ │ ├── file-search-fill.svg │ │ │ ├── file-search-line.svg │ │ │ ├── file-settings-fill.svg │ │ │ ├── file-settings-line.svg │ │ │ ├── file-shield-2-fill.svg │ │ │ ├── file-shield-2-line.svg │ │ │ ├── file-shield-fill.svg │ │ │ ├── file-shield-line.svg │ │ │ ├── file-shred-fill.svg │ │ │ ├── file-shred-line.svg │ │ │ ├── file-text-fill.svg │ │ │ ├── file-text-line.svg │ │ │ ├── file-transfer-fill.svg │ │ │ ├── file-transfer-line.svg │ │ │ ├── file-unknow-fill.svg │ │ │ ├── file-unknow-line.svg │ │ │ ├── file-upload-fill.svg │ │ │ ├── file-upload-line.svg │ │ │ ├── file-user-fill.svg │ │ │ ├── file-user-line.svg │ │ │ ├── file-warning-fill.svg │ │ │ ├── file-warning-line.svg │ │ │ ├── file-word-2-fill.svg │ │ │ ├── file-word-2-line.svg │ │ │ ├── file-word-fill.svg │ │ │ ├── file-word-line.svg │ │ │ ├── file-zip-fill.svg │ │ │ ├── file-zip-line.svg │ │ │ ├── folder-2-fill.svg │ │ │ ├── folder-2-line.svg │ │ │ ├── folder-3-fill.svg │ │ │ ├── folder-3-line.svg │ │ │ ├── folder-4-fill.svg │ │ │ ├── folder-4-line.svg │ │ │ ├── folder-5-fill.svg │ │ │ ├── folder-5-line.svg │ │ │ ├── folder-add-fill.svg │ │ │ ├── folder-add-line.svg │ │ │ ├── folder-chart-2-fill.svg │ │ │ ├── folder-chart-2-line.svg │ │ │ ├── folder-chart-fill.svg │ │ │ ├── folder-chart-line.svg │ │ │ ├── folder-download-fill.svg │ │ │ ├── folder-download-line.svg │ │ │ ├── folder-fill.svg │ │ │ ├── folder-forbid-fill.svg │ │ │ ├── folder-forbid-line.svg │ │ │ ├── folder-info-fill.svg │ │ │ ├── folder-info-line.svg │ │ │ ├── folder-line.svg │ │ │ ├── folder-lock-fill.svg │ │ │ ├── folder-lock-line.svg │ │ │ ├── folder-music-fill.svg │ │ │ ├── folder-music-line.svg │ │ │ ├── folder-received-fill.svg │ │ │ ├── folder-received-line.svg │ │ │ ├── folder-reduce-fill.svg │ │ │ ├── folder-reduce-line.svg │ │ │ ├── folder-settings-fill.svg │ │ │ ├── folder-settings-line.svg │ │ │ ├── folder-shared-fill.svg │ │ │ ├── folder-shared-line.svg │ │ │ ├── folder-shield-2-fill.svg │ │ │ ├── folder-shield-2-line.svg │ │ │ ├── folder-shield-fill.svg │ │ │ ├── folder-shield-line.svg │ │ │ ├── folder-transfer-fill.svg │ │ │ ├── folder-transfer-line.svg │ │ │ ├── folder-unknow-fill.svg │ │ │ ├── folder-unknow-line.svg │ │ │ ├── folder-upload-fill.svg │ │ │ ├── folder-upload-line.svg │ │ │ ├── folder-user-fill.svg │ │ │ ├── folder-user-line.svg │ │ │ ├── folder-warning-fill.svg │ │ │ ├── folder-warning-line.svg │ │ │ ├── folders-fill.svg │ │ │ ├── folders-line.svg │ │ │ ├── keynote-fill.svg │ │ │ ├── keynote-line.svg │ │ │ ├── markdown-fill.svg │ │ │ ├── markdown-line.svg │ │ │ ├── newspaper-fill.svg │ │ │ ├── newspaper-line.svg │ │ │ ├── numbers-fill.svg │ │ │ ├── numbers-line.svg │ │ │ ├── pages-fill.svg │ │ │ ├── pages-line.svg │ │ │ ├── task-fill.svg │ │ │ ├── task-line.svg │ │ │ ├── todo-fill.svg │ │ │ └── todo-line.svg │ │ ├── Editor │ │ │ ├── align-bottom.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-top.svg │ │ │ ├── align-vertically.svg │ │ │ ├── attachment-2.svg │ │ │ ├── bold.svg │ │ │ ├── code-view.svg │ │ │ ├── double-quotes-l.svg │ │ │ ├── double-quotes-r.svg │ │ │ ├── font-color.svg │ │ │ ├── font-size-2.svg │ │ │ ├── font-size.svg │ │ │ ├── format-clear.svg │ │ │ ├── functions.svg │ │ │ ├── hashtag.svg │ │ │ ├── heading.svg │ │ │ ├── indent-decrease.svg │ │ │ ├── indent-increase.svg │ │ │ ├── italic.svg │ │ │ ├── line-height.svg │ │ │ ├── link-m.svg │ │ │ ├── link-unlink-m.svg │ │ │ ├── link-unlink.svg │ │ │ ├── link.svg │ │ │ ├── list-check-2.svg │ │ │ ├── list-check.svg │ │ │ ├── list-ordered.svg │ │ │ ├── list-unordered.svg │ │ │ ├── omega.svg │ │ │ ├── page-separator.svg │ │ │ ├── paragraph.svg │ │ │ ├── separator.svg │ │ │ ├── single-quotes-l.svg │ │ │ ├── single-quotes-r.svg │ │ │ ├── space.svg │ │ │ ├── strikethrough-2.svg │ │ │ ├── strikethrough.svg │ │ │ ├── subscript-2.svg │ │ │ ├── subscript.svg │ │ │ ├── superscript-2.svg │ │ │ ├── superscript.svg │ │ │ ├── table-2.svg │ │ │ ├── text-direction-l.svg │ │ │ ├── text-direction-r.svg │ │ │ ├── text-spacing.svg │ │ │ ├── text-wrap.svg │ │ │ ├── text.svg │ │ │ └── underline.svg │ │ ├── Finance │ │ │ ├── bank-card-2-fill.svg │ │ │ ├── bank-card-2-line.svg │ │ │ ├── bank-card-fill.svg │ │ │ ├── bank-card-line.svg │ │ │ ├── bit-coin-fill.svg │ │ │ ├── bit-coin-line.svg │ │ │ ├── copper-coin-fill.svg │ │ │ ├── copper-coin-line.svg │ │ │ ├── copper-diamond-fill.svg │ │ │ ├── copper-diamond-line.svg │ │ │ ├── coupon-2-fill.svg │ │ │ ├── coupon-2-line.svg │ │ │ ├── coupon-3-fill.svg │ │ │ ├── coupon-3-line.svg │ │ │ ├── coupon-4-fill.svg │ │ │ ├── coupon-4-line.svg │ │ │ ├── coupon-5-fill.svg │ │ │ ├── coupon-5-line.svg │ │ │ ├── coupon-fill.svg │ │ │ ├── coupon-line.svg │ │ │ ├── currency-fill.svg │ │ │ ├── currency-line.svg │ │ │ ├── exchange-box-fill.svg │ │ │ ├── exchange-box-line.svg │ │ │ ├── exchange-cny-fill.svg │ │ │ ├── exchange-cny-line.svg │ │ │ ├── exchange-dollar-fill.svg │ │ │ ├── exchange-dollar-line.svg │ │ │ ├── exchange-fill.svg │ │ │ ├── exchange-funds-fill.svg │ │ │ ├── exchange-funds-line.svg │ │ │ ├── exchange-line.svg │ │ │ ├── funds-box-fill.svg │ │ │ ├── funds-box-line.svg │ │ │ ├── funds-fill.svg │ │ │ ├── funds-line.svg │ │ │ ├── increase-decrease-fill.svg │ │ │ ├── increase-decrease-line.svg │ │ │ ├── money-cny-box-fill.svg │ │ │ ├── money-cny-box-line.svg │ │ │ ├── money-cny-circle-fill.svg │ │ │ ├── money-cny-circle-line.svg │ │ │ ├── money-dollar-box-fill.svg │ │ │ ├── money-dollar-box-line.svg │ │ │ ├── money-dollar-circle-fill.svg │ │ │ ├── money-dollar-circle-line.svg │ │ │ ├── money-euro-box-fill.svg │ │ │ ├── money-euro-box-line.svg │ │ │ ├── money-euro-circle-fill.svg │ │ │ ├── money-euro-circle-line.svg │ │ │ ├── money-pound-box-fill.svg │ │ │ ├── money-pound-box-line.svg │ │ │ ├── money-pound-circle-fill.svg │ │ │ ├── money-pound-circle-line.svg │ │ │ ├── percent-fill.svg │ │ │ ├── percent-line.svg │ │ │ ├── price-tag-2-fill.svg │ │ │ ├── price-tag-2-line.svg │ │ │ ├── price-tag-3-fill.svg │ │ │ ├── price-tag-3-line.svg │ │ │ ├── price-tag-fill.svg │ │ │ ├── price-tag-line.svg │ │ │ ├── red-packet-fill.svg │ │ │ ├── red-packet-line.svg │ │ │ ├── refund-fill.svg │ │ │ ├── refund-line.svg │ │ │ ├── safe-2-fill.svg │ │ │ ├── safe-2-line.svg │ │ │ ├── safe-fill.svg │ │ │ ├── safe-line.svg │ │ │ ├── shopping-bag-2-fill.svg │ │ │ ├── shopping-bag-2-line.svg │ │ │ ├── shopping-bag-3-fill.svg │ │ │ ├── shopping-bag-3-line.svg │ │ │ ├── shopping-bag-fill.svg │ │ │ ├── shopping-bag-line.svg │ │ │ ├── shopping-cart-2-fill.svg │ │ │ ├── shopping-cart-2-line.svg │ │ │ ├── shopping-cart-fill.svg │ │ │ ├── shopping-cart-line.svg │ │ │ ├── stock-fill.svg │ │ │ ├── stock-line.svg │ │ │ ├── swap-box-fill.svg │ │ │ ├── swap-box-line.svg │ │ │ ├── swap-fill.svg │ │ │ ├── swap-line.svg │ │ │ ├── trophy-fill.svg │ │ │ ├── trophy-line.svg │ │ │ ├── vip-crown-2-fill.svg │ │ │ ├── vip-crown-2-line.svg │ │ │ ├── vip-crown-fill.svg │ │ │ ├── vip-crown-line.svg │ │ │ ├── vip-diamond-fill.svg │ │ │ ├── vip-diamond-line.svg │ │ │ ├── vip-fill.svg │ │ │ ├── vip-line.svg │ │ │ ├── wallet-2-fill.svg │ │ │ ├── wallet-2-line.svg │ │ │ ├── wallet-3-fill.svg │ │ │ ├── wallet-3-line.svg │ │ │ ├── wallet-fill.svg │ │ │ ├── wallet-line.svg │ │ │ ├── water-flash-fill.svg │ │ │ └── water-flash-line.svg │ │ ├── Life │ │ │ ├── door-lock-box-fill.svg │ │ │ ├── door-lock-box-line.svg │ │ │ ├── door-lock-fill.svg │ │ │ ├── door-lock-line.svg │ │ │ ├── fire-fill.svg │ │ │ ├── fire-line.svg │ │ │ ├── key-2-fill.svg │ │ │ ├── key-2-line.svg │ │ │ ├── key-fill.svg │ │ │ ├── key-line.svg │ │ │ ├── lightbulb-fill.svg │ │ │ ├── lightbulb-flash-fill.svg │ │ │ ├── lightbulb-flash-line.svg │ │ │ ├── lightbulb-line.svg │ │ │ ├── outlet-2-fill.svg │ │ │ ├── outlet-2-line.svg │ │ │ ├── outlet-fill.svg │ │ │ ├── outlet-line.svg │ │ │ ├── plug-2-fill.svg │ │ │ ├── plug-2-line.svg │ │ │ ├── plug-fill.svg │ │ │ ├── plug-line.svg │ │ │ ├── reserved-fill.svg │ │ │ ├── reserved-line.svg │ │ │ ├── shirt-fill.svg │ │ │ ├── shirt-line.svg │ │ │ ├── t-shirt-fill.svg │ │ │ ├── t-shirt-line.svg │ │ │ ├── umbrella-fill.svg │ │ │ └── umbrella-line.svg │ │ ├── Logos │ │ │ ├── alipay-fill.svg │ │ │ ├── alipay-line.svg │ │ │ ├── amazon-fill.svg │ │ │ ├── amazon-line.svg │ │ │ ├── android-fill.svg │ │ │ ├── android-line.svg │ │ │ ├── angularjs-fill.svg │ │ │ ├── angularjs-line.svg │ │ │ ├── apple-fill.svg │ │ │ ├── apple-line.svg │ │ │ ├── baidu-fill.svg │ │ │ ├── baidu-line.svg │ │ │ ├── behance-fill.svg │ │ │ ├── behance-line.svg │ │ │ ├── bilibili-fill.svg │ │ │ ├── bilibili-line.svg │ │ │ ├── chrome-fill.svg │ │ │ ├── chrome-line.svg │ │ │ ├── codepen-fill.svg │ │ │ ├── codepen-line.svg │ │ │ ├── coreos-fill.svg │ │ │ ├── coreos-line.svg │ │ │ ├── dingding-fill.svg │ │ │ ├── dingding-line.svg │ │ │ ├── discord-fill.svg │ │ │ ├── discord-line.svg │ │ │ ├── douban-fill.svg │ │ │ ├── douban-line.svg │ │ │ ├── dribbble-fill.svg │ │ │ ├── dribbble-line.svg │ │ │ ├── drive-fill.svg │ │ │ ├── drive-line.svg │ │ │ ├── dropbox-fill.svg │ │ │ ├── dropbox-line.svg │ │ │ ├── edge-fill.svg │ │ │ ├── edge-line.svg │ │ │ ├── evernote-fill.svg │ │ │ ├── evernote-line.svg │ │ │ ├── facebook-box-fill.svg │ │ │ ├── facebook-box-line.svg │ │ │ ├── facebook-circle-fill.svg │ │ │ ├── facebook-circle-line.svg │ │ │ ├── facebook-fill.svg │ │ │ ├── facebook-line.svg │ │ │ ├── firefox-fill.svg │ │ │ ├── firefox-line.svg │ │ │ ├── github-fill.svg │ │ │ ├── github-line.svg │ │ │ ├── gitlab-fill.svg │ │ │ ├── gitlab-line.svg │ │ │ ├── google-fill.svg │ │ │ ├── google-line.svg │ │ │ ├── ie-fill.svg │ │ │ ├── ie-line.svg │ │ │ ├── instagram-fill.svg │ │ │ ├── instagram-line.svg │ │ │ ├── invision-fill.svg │ │ │ ├── invision-line.svg │ │ │ ├── kakao-talk-fill.svg │ │ │ ├── kakao-talk-line.svg │ │ │ ├── line-fill.svg │ │ │ ├── line-line.svg │ │ │ ├── linkedin-box-fill.svg │ │ │ ├── linkedin-box-line.svg │ │ │ ├── linkedin-fill.svg │ │ │ ├── linkedin-line.svg │ │ │ ├── mastercard-fill.svg │ │ │ ├── mastercard-line.svg │ │ │ ├── mastodon-fill.svg │ │ │ ├── mastodon-line.svg │ │ │ ├── medium-fill.svg │ │ │ ├── medium-line.svg │ │ │ ├── messenger-fill.svg │ │ │ ├── messenger-line.svg │ │ │ ├── mini-program-fill.svg │ │ │ ├── mini-program-line.svg │ │ │ ├── netease-cloud-music-fill.svg │ │ │ ├── netease-cloud-music-line.svg │ │ │ ├── netflix-fill.svg │ │ │ ├── netflix-line.svg │ │ │ ├── opera-fill.svg │ │ │ ├── opera-line.svg │ │ │ ├── patreon-fill.svg │ │ │ ├── patreon-line.svg │ │ │ ├── paypal-fill.svg │ │ │ ├── paypal-line.svg │ │ │ ├── pinterest-fill.svg │ │ │ ├── pinterest-line.svg │ │ │ ├── playstation-fill.svg │ │ │ ├── playstation-line.svg │ │ │ ├── product-hunt-fill.svg │ │ │ ├── product-hunt-line.svg │ │ │ ├── qq-fill.svg │ │ │ ├── qq-line.svg │ │ │ ├── reactjs-fill.svg │ │ │ ├── reactjs-line.svg │ │ │ ├── reddit-fill.svg │ │ │ ├── reddit-line.svg │ │ │ ├── remixicon-fill.svg │ │ │ ├── remixicon-line.svg │ │ │ ├── safari-fill.svg │ │ │ ├── safari-line.svg │ │ │ ├── skype-fill.svg │ │ │ ├── skype-line.svg │ │ │ ├── slack-fill.svg │ │ │ ├── slack-line.svg │ │ │ ├── snapchat-fill.svg │ │ │ ├── snapchat-line.svg │ │ │ ├── spotify-fill.svg │ │ │ ├── spotify-line.svg │ │ │ ├── stack-overflow-fill.svg │ │ │ ├── stack-overflow-line.svg │ │ │ ├── switch-fill.svg │ │ │ ├── switch-line.svg │ │ │ ├── taobao-fill.svg │ │ │ ├── taobao-line.svg │ │ │ ├── telegram-fill.svg │ │ │ ├── telegram-line.svg │ │ │ ├── trello-fill.svg │ │ │ ├── trello-line.svg │ │ │ ├── tumblr-fill.svg │ │ │ ├── tumblr-line.svg │ │ │ ├── twitch-fill.svg │ │ │ ├── twitch-line.svg │ │ │ ├── twitter-fill.svg │ │ │ ├── twitter-line.svg │ │ │ ├── ubuntu-fill.svg │ │ │ ├── ubuntu-line.svg │ │ │ ├── visa-fill.svg │ │ │ ├── visa-line.svg │ │ │ ├── vuejs-fill.svg │ │ │ ├── vuejs-line.svg │ │ │ ├── wechat-2-fill.svg │ │ │ ├── wechat-2-line.svg │ │ │ ├── wechat-fill.svg │ │ │ ├── wechat-line.svg │ │ │ ├── wechat-pay-fill.svg │ │ │ ├── wechat-pay-line.svg │ │ │ ├── weibo-fill.svg │ │ │ ├── weibo-line.svg │ │ │ ├── whatsapp-fill.svg │ │ │ ├── whatsapp-line.svg │ │ │ ├── windows-fill.svg │ │ │ ├── windows-line.svg │ │ │ ├── xbox-fill.svg │ │ │ ├── xbox-line.svg │ │ │ ├── xing-fill.svg │ │ │ ├── xing-line.svg │ │ │ ├── youtube-fill.svg │ │ │ ├── youtube-line.svg │ │ │ ├── zcool-fill.svg │ │ │ ├── zcool-line.svg │ │ │ ├── zhihu-fill.svg │ │ │ └── zhihu-line.svg │ │ ├── Map │ │ │ ├── anchor-fill.svg │ │ │ ├── anchor-line.svg │ │ │ ├── barricade-fill.svg │ │ │ ├── barricade-line.svg │ │ │ ├── bike-fill.svg │ │ │ ├── bike-line.svg │ │ │ ├── bus-2-fill.svg │ │ │ ├── bus-2-line.svg │ │ │ ├── bus-fill.svg │ │ │ ├── bus-line.svg │ │ │ ├── car-fill.svg │ │ │ ├── car-line.svg │ │ │ ├── car-washing-fill.svg │ │ │ ├── car-washing-line.svg │ │ │ ├── charging-pile-2-fill.svg │ │ │ ├── charging-pile-2-line.svg │ │ │ ├── charging-pile-fill.svg │ │ │ ├── charging-pile-line.svg │ │ │ ├── china-railway-fill.svg │ │ │ ├── china-railway-line.svg │ │ │ ├── compass-2-fill.svg │ │ │ ├── compass-2-line.svg │ │ │ ├── compass-3-fill.svg │ │ │ ├── compass-3-line.svg │ │ │ ├── compass-4-fill.svg │ │ │ ├── compass-4-line.svg │ │ │ ├── compass-discover-fill.svg │ │ │ ├── compass-discover-line.svg │ │ │ ├── compass-fill.svg │ │ │ ├── compass-line.svg │ │ │ ├── cup-fill.svg │ │ │ ├── cup-line.svg │ │ │ ├── direction-fill.svg │ │ │ ├── direction-line.svg │ │ │ ├── e-bike-2-fill.svg │ │ │ ├── e-bike-2-line.svg │ │ │ ├── e-bike-fill.svg │ │ │ ├── e-bike-line.svg │ │ │ ├── earth-fill.svg │ │ │ ├── earth-line.svg │ │ │ ├── flight-land-fill.svg │ │ │ ├── flight-land-line.svg │ │ │ ├── flight-takeoff-fill.svg │ │ │ ├── flight-takeoff-line.svg │ │ │ ├── footprint-fill.svg │ │ │ ├── footprint-line.svg │ │ │ ├── gas-station-fill.svg │ │ │ ├── gas-station-line.svg │ │ │ ├── globe-fill.svg │ │ │ ├── globe-line.svg │ │ │ ├── goblet-fill.svg │ │ │ ├── goblet-line.svg │ │ │ ├── guide-fill.svg │ │ │ ├── guide-line.svg │ │ │ ├── hotel-bed-fill.svg │ │ │ ├── hotel-bed-line.svg │ │ │ ├── map-2-fill.svg │ │ │ ├── map-2-line.svg │ │ │ ├── map-fill.svg │ │ │ ├── map-line.svg │ │ │ ├── map-pin-2-fill.svg │ │ │ ├── map-pin-2-line.svg │ │ │ ├── map-pin-3-fill.svg │ │ │ ├── map-pin-3-line.svg │ │ │ ├── map-pin-4-fill.svg │ │ │ ├── map-pin-4-line.svg │ │ │ ├── map-pin-5-fill.svg │ │ │ ├── map-pin-5-line.svg │ │ │ ├── map-pin-add-fill.svg │ │ │ ├── map-pin-add-line.svg │ │ │ ├── map-pin-fill.svg │ │ │ ├── map-pin-line.svg │ │ │ ├── map-pin-range-fill.svg │ │ │ ├── map-pin-range-line.svg │ │ │ ├── map-pin-time-fill.svg │ │ │ ├── map-pin-time-line.svg │ │ │ ├── map-pin-user-fill.svg │ │ │ ├── map-pin-user-line.svg │ │ │ ├── motorbike-fill.svg │ │ │ ├── motorbike-line.svg │ │ │ ├── navigation-fill.svg │ │ │ ├── navigation-line.svg │ │ │ ├── oil-fill.svg │ │ │ ├── oil-line.svg │ │ │ ├── parking-box-fill.svg │ │ │ ├── parking-box-line.svg │ │ │ ├── parking-fill.svg │ │ │ ├── parking-line.svg │ │ │ ├── pin-distance-fill.svg │ │ │ ├── pin-distance-line.svg │ │ │ ├── plane-fill.svg │ │ │ ├── plane-line.svg │ │ │ ├── police-car-fill.svg │ │ │ ├── police-car-line.svg │ │ │ ├── restaurant-2-fill.svg │ │ │ ├── restaurant-2-line.svg │ │ │ ├── restaurant-fill.svg │ │ │ ├── restaurant-line.svg │ │ │ ├── riding-fill.svg │ │ │ ├── riding-line.svg │ │ │ ├── road-map-fill.svg │ │ │ ├── road-map-line.svg │ │ │ ├── roadster-fill.svg │ │ │ ├── roadster-line.svg │ │ │ ├── rocket-2-fill.svg │ │ │ ├── rocket-2-line.svg │ │ │ ├── rocket-fill.svg │ │ │ ├── rocket-line.svg │ │ │ ├── route-fill.svg │ │ │ ├── route-line.svg │ │ │ ├── run-fill.svg │ │ │ ├── run-line.svg │ │ │ ├── sailboat-fill.svg │ │ │ ├── sailboat-line.svg │ │ │ ├── ship-2-fill.svg │ │ │ ├── ship-2-line.svg │ │ │ ├── ship-fill.svg │ │ │ ├── ship-line.svg │ │ │ ├── signal-tower-fill.svg │ │ │ ├── signal-tower-line.svg │ │ │ ├── space-ship-fill.svg │ │ │ ├── space-ship-line.svg │ │ │ ├── subway-fill.svg │ │ │ ├── subway-line.svg │ │ │ ├── taxi-fill.svg │ │ │ ├── taxi-line.svg │ │ │ ├── traffic-light-fill.svg │ │ │ ├── traffic-light-line.svg │ │ │ ├── train-fill.svg │ │ │ ├── train-line.svg │ │ │ ├── treasure-map-fill.svg │ │ │ ├── treasure-map-line.svg │ │ │ ├── truck-fill.svg │ │ │ ├── truck-line.svg │ │ │ ├── walk-fill.svg │ │ │ └── walk-line.svg │ │ ├── Media │ │ │ ├── album-fill.svg │ │ │ ├── album-line.svg │ │ │ ├── broadcast-fill.svg │ │ │ ├── broadcast-line.svg │ │ │ ├── camera-2-fill.svg │ │ │ ├── camera-2-line.svg │ │ │ ├── camera-3-fill.svg │ │ │ ├── camera-3-line.svg │ │ │ ├── camera-fill.svg │ │ │ ├── camera-lens-fill.svg │ │ │ ├── camera-lens-line.svg │ │ │ ├── camera-line.svg │ │ │ ├── camera-off-fill.svg │ │ │ ├── camera-off-line.svg │ │ │ ├── camera-switch-fill.svg │ │ │ ├── camera-switch-line.svg │ │ │ ├── clapperboard-fill.svg │ │ │ ├── clapperboard-line.svg │ │ │ ├── disc-fill.svg │ │ │ ├── disc-line.svg │ │ │ ├── dv-fill.svg │ │ │ ├── dv-line.svg │ │ │ ├── dvd-fill.svg │ │ │ ├── dvd-line.svg │ │ │ ├── eject-fill.svg │ │ │ ├── eject-line.svg │ │ │ ├── equalizer-fill.svg │ │ │ ├── equalizer-line.svg │ │ │ ├── film-fill.svg │ │ │ ├── film-line.svg │ │ │ ├── fullscreen-exit-fill.svg │ │ │ ├── fullscreen-exit-line.svg │ │ │ ├── fullscreen-fill.svg │ │ │ ├── fullscreen-line.svg │ │ │ ├── gallery-fill.svg │ │ │ ├── gallery-line.svg │ │ │ ├── hd-fill.svg │ │ │ ├── hd-line.svg │ │ │ ├── headphone-fill.svg │ │ │ ├── headphone-line.svg │ │ │ ├── hq-fill.svg │ │ │ ├── hq-line.svg │ │ │ ├── image-2-fill.svg │ │ │ ├── image-2-line.svg │ │ │ ├── image-fill.svg │ │ │ ├── image-line.svg │ │ │ ├── landscape-fill.svg │ │ │ ├── landscape-line.svg │ │ │ ├── media4k-fill.svg │ │ │ ├── media4k-line.svg │ │ │ ├── mic-2-fill.svg │ │ │ ├── mic-2-line.svg │ │ │ ├── mic-fill.svg │ │ │ ├── mic-line.svg │ │ │ ├── mic-off-fill.svg │ │ │ ├── mic-off-line.svg │ │ │ ├── movie-2-fill.svg │ │ │ ├── movie-2-line.svg │ │ │ ├── movie-fill.svg │ │ │ ├── movie-line.svg │ │ │ ├── music-2-fill.svg │ │ │ ├── music-2-line.svg │ │ │ ├── music-fill.svg │ │ │ ├── music-line.svg │ │ │ ├── mv-fill.svg │ │ │ ├── mv-line.svg │ │ │ ├── notification-2-fill.svg │ │ │ ├── notification-2-line.svg │ │ │ ├── notification-3-fill.svg │ │ │ ├── notification-3-line.svg │ │ │ ├── notification-4-fill.svg │ │ │ ├── notification-4-line.svg │ │ │ ├── notification-fill.svg │ │ │ ├── notification-line.svg │ │ │ ├── notification-off-fill.svg │ │ │ ├── notification-off-line.svg │ │ │ ├── order-play-fill.svg │ │ │ ├── order-play-line.svg │ │ │ ├── pause-circle-fill.svg │ │ │ ├── pause-circle-line.svg │ │ │ ├── pause-fill.svg │ │ │ ├── pause-line.svg │ │ │ ├── pause-mini-fill.svg │ │ │ ├── pause-mini-line.svg │ │ │ ├── phone-camera-fill.svg │ │ │ ├── phone-camera-line.svg │ │ │ ├── play-circle-fill.svg │ │ │ ├── play-circle-line.svg │ │ │ ├── play-fill.svg │ │ │ ├── play-line.svg │ │ │ ├── play-list-add-fill.svg │ │ │ ├── play-list-add-line.svg │ │ │ ├── play-list-fill.svg │ │ │ ├── play-list-line.svg │ │ │ ├── play-mini-fill.svg │ │ │ ├── play-mini-line.svg │ │ │ ├── polaroid-2-fill.svg │ │ │ ├── polaroid-2-line.svg │ │ │ ├── polaroid-fill.svg │ │ │ ├── polaroid-line.svg │ │ │ ├── radio-2-fill.svg │ │ │ ├── radio-2-line.svg │ │ │ ├── radio-fill.svg │ │ │ ├── radio-line.svg │ │ │ ├── record-circle-fill.svg │ │ │ ├── record-circle-line.svg │ │ │ ├── repeat-2-fill.svg │ │ │ ├── repeat-2-line.svg │ │ │ ├── repeat-fill.svg │ │ │ ├── repeat-line.svg │ │ │ ├── repeat-one-fill.svg │ │ │ ├── repeat-one-line.svg │ │ │ ├── rewind-fill.svg │ │ │ ├── rewind-line.svg │ │ │ ├── rewind-mini-fill.svg │ │ │ ├── rewind-mini-line.svg │ │ │ ├── rhythm-fill.svg │ │ │ ├── rhythm-line.svg │ │ │ ├── shuffle-fill.svg │ │ │ ├── shuffle-line.svg │ │ │ ├── skip-back-fill.svg │ │ │ ├── skip-back-line.svg │ │ │ ├── skip-back-mini-fill.svg │ │ │ ├── skip-back-mini-line.svg │ │ │ ├── skip-forward-fill.svg │ │ │ ├── skip-forward-line.svg │ │ │ ├── skip-forward-mini-fill.svg │ │ │ ├── skip-forward-mini-line.svg │ │ │ ├── sound-module-fill.svg │ │ │ ├── sound-module-line.svg │ │ │ ├── speaker-2-fill.svg │ │ │ ├── speaker-2-line.svg │ │ │ ├── speaker-3-fill.svg │ │ │ ├── speaker-3-line.svg │ │ │ ├── speaker-fill.svg │ │ │ ├── speaker-line.svg │ │ │ ├── speed-fill.svg │ │ │ ├── speed-line.svg │ │ │ ├── speed-mini-fill.svg │ │ │ ├── speed-mini-line.svg │ │ │ ├── stop-circle-fill.svg │ │ │ ├── stop-circle-line.svg │ │ │ ├── stop-fill.svg │ │ │ ├── stop-line.svg │ │ │ ├── stop-mini-fill.svg │ │ │ ├── stop-mini-line.svg │ │ │ ├── surround-sound-fill.svg │ │ │ ├── surround-sound-line.svg │ │ │ ├── tape-fill.svg │ │ │ ├── tape-line.svg │ │ │ ├── video-fill.svg │ │ │ ├── video-line.svg │ │ │ ├── vidicon-2-fill.svg │ │ │ ├── vidicon-2-line.svg │ │ │ ├── vidicon-fill.svg │ │ │ ├── vidicon-line.svg │ │ │ ├── voiceprint-fill.svg │ │ │ ├── voiceprint-line.svg │ │ │ ├── volume-down-fill.svg │ │ │ ├── volume-down-line.svg │ │ │ ├── volume-mute-fill.svg │ │ │ ├── volume-mute-line.svg │ │ │ ├── volume-up-fill.svg │ │ │ ├── volume-up-line.svg │ │ │ ├── webcam-fill.svg │ │ │ └── webcam-line.svg │ │ ├── System │ │ │ ├── add-box-fill.svg │ │ │ ├── add-box-line.svg │ │ │ ├── add-circle-fill.svg │ │ │ ├── add-circle-line.svg │ │ │ ├── add-fill.svg │ │ │ ├── add-line.svg │ │ │ ├── alarm-fill.svg │ │ │ ├── alarm-line.svg │ │ │ ├── alarm-warning-fill.svg │ │ │ ├── alarm-warning-line.svg │ │ │ ├── alert-fill.svg │ │ │ ├── alert-line.svg │ │ │ ├── apps-2-fill.svg │ │ │ ├── apps-2-line.svg │ │ │ ├── apps-fill.svg │ │ │ ├── apps-line.svg │ │ │ ├── arrow-down-circle-fill.svg │ │ │ ├── arrow-down-circle-line.svg │ │ │ ├── arrow-down-fill.svg │ │ │ ├── arrow-down-line.svg │ │ │ ├── arrow-down-s-fill.svg │ │ │ ├── arrow-down-s-line.svg │ │ │ ├── arrow-drop-down-fill.svg │ │ │ ├── arrow-drop-down-line.svg │ │ │ ├── arrow-drop-left-fill.svg │ │ │ ├── arrow-drop-left-line.svg │ │ │ ├── arrow-drop-right-fill.svg │ │ │ ├── arrow-drop-right-line.svg │ │ │ ├── arrow-drop-up-fill.svg │ │ │ ├── arrow-drop-up-line.svg │ │ │ ├── arrow-go-back-fill.svg │ │ │ ├── arrow-go-back-line.svg │ │ │ ├── arrow-go-forward-fill.svg │ │ │ ├── arrow-go-forward-line.svg │ │ │ ├── arrow-left-circle-fill.svg │ │ │ ├── arrow-left-circle-line.svg │ │ │ ├── arrow-left-down-fill.svg │ │ │ ├── arrow-left-down-line.svg │ │ │ ├── arrow-left-fill.svg │ │ │ ├── arrow-left-line.svg │ │ │ ├── arrow-left-s-fill.svg │ │ │ ├── arrow-left-s-line.svg │ │ │ ├── arrow-left-up-fill.svg │ │ │ ├── arrow-left-up-line.svg │ │ │ ├── arrow-right-circle-fill.svg │ │ │ ├── arrow-right-circle-line.svg │ │ │ ├── arrow-right-down-fill.svg │ │ │ ├── arrow-right-down-line.svg │ │ │ ├── arrow-right-fill.svg │ │ │ ├── arrow-right-line.svg │ │ │ ├── arrow-right-s-fill.svg │ │ │ ├── arrow-right-s-line.svg │ │ │ ├── arrow-right-up-fill.svg │ │ │ ├── arrow-right-up-line.svg │ │ │ ├── arrow-up-circle-fill.svg │ │ │ ├── arrow-up-circle-line.svg │ │ │ ├── arrow-up-fill.svg │ │ │ ├── arrow-up-line.svg │ │ │ ├── arrow-up-s-fill.svg │ │ │ ├── arrow-up-s-line.svg │ │ │ ├── barcode-box-fill.svg │ │ │ ├── barcode-box-line.svg │ │ │ ├── barcode-fill.svg │ │ │ ├── barcode-line.svg │ │ │ ├── base-station-fill.svg │ │ │ ├── base-station-line.svg │ │ │ ├── bluetooth-connect-fill.svg │ │ │ ├── bluetooth-connect-line.svg │ │ │ ├── bluetooth-fill.svg │ │ │ ├── bluetooth-line.svg │ │ │ ├── check-double-fill.svg │ │ │ ├── check-double-line.svg │ │ │ ├── check-fill.svg │ │ │ ├── check-line.svg │ │ │ ├── checkbox-blank-circle-fill.svg │ │ │ ├── checkbox-blank-circle-line.svg │ │ │ ├── checkbox-blank-fill.svg │ │ │ ├── checkbox-blank-line.svg │ │ │ ├── checkbox-circle-fill.svg │ │ │ ├── checkbox-circle-line.svg │ │ │ ├── checkbox-fill.svg │ │ │ ├── checkbox-indeterminate-fill.svg │ │ │ ├── checkbox-indeterminate-line.svg │ │ │ ├── checkbox-line.svg │ │ │ ├── checkbox-multiple-blank-fill.svg │ │ │ ├── checkbox-multiple-blank-line.svg │ │ │ ├── checkbox-multiple-fill.svg │ │ │ ├── checkbox-multiple-line.svg │ │ │ ├── close-circle-fill.svg │ │ │ ├── close-circle-line.svg │ │ │ ├── close-fill.svg │ │ │ ├── close-line.svg │ │ │ ├── copyright-fill.svg │ │ │ ├── copyright-line.svg │ │ │ ├── dashboard-fill.svg │ │ │ ├── dashboard-line.svg │ │ │ ├── delete-back-2-fill.svg │ │ │ ├── delete-back-2-line.svg │ │ │ ├── delete-back-fill.svg │ │ │ ├── delete-back-line.svg │ │ │ ├── delete-bin-2-fill.svg │ │ │ ├── delete-bin-2-line.svg │ │ │ ├── delete-bin-3-fill.svg │ │ │ ├── delete-bin-3-line.svg │ │ │ ├── delete-bin-4-fill.svg │ │ │ ├── delete-bin-4-line.svg │ │ │ ├── delete-bin-5-fill.svg │ │ │ ├── delete-bin-5-line.svg │ │ │ ├── delete-bin-6-fill.svg │ │ │ ├── delete-bin-6-line.svg │ │ │ ├── delete-bin-7-fill.svg │ │ │ ├── delete-bin-7-line.svg │ │ │ ├── delete-bin-fill.svg │ │ │ ├── delete-bin-line.svg │ │ │ ├── divide-fill.svg │ │ │ ├── divide-line.svg │ │ │ ├── download-2-fill.svg │ │ │ ├── download-2-line.svg │ │ │ ├── download-cloud-fill.svg │ │ │ ├── download-cloud-line.svg │ │ │ ├── download-fill.svg │ │ │ ├── download-line.svg │ │ │ ├── error-warning-fill.svg │ │ │ ├── error-warning-line.svg │ │ │ ├── eye-close-fill.svg │ │ │ ├── eye-close-line.svg │ │ │ ├── eye-fill.svg │ │ │ ├── eye-line.svg │ │ │ ├── eye-off-fill.svg │ │ │ ├── eye-off-line.svg │ │ │ ├── filter-2-fill.svg │ │ │ ├── filter-2-line.svg │ │ │ ├── filter-3-fill.svg │ │ │ ├── filter-3-line.svg │ │ │ ├── filter-fill.svg │ │ │ ├── filter-line.svg │ │ │ ├── find-replace-fill.svg │ │ │ ├── find-replace-line.svg │ │ │ ├── forbid-2-fill.svg │ │ │ ├── forbid-2-line.svg │ │ │ ├── forbid-fill.svg │ │ │ ├── forbid-line.svg │ │ │ ├── function-fill.svg │ │ │ ├── function-line.svg │ │ │ ├── gps-fill.svg │ │ │ ├── gps-line.svg │ │ │ ├── heart-2-fill.svg │ │ │ ├── heart-2-line.svg │ │ │ ├── heart-fill.svg │ │ │ ├── heart-line.svg │ │ │ ├── indeterminate-circle-fill.svg │ │ │ ├── indeterminate-circle-line.svg │ │ │ ├── information-fill.svg │ │ │ ├── information-line.svg │ │ │ ├── list-settings-fill.svg │ │ │ ├── list-settings-line.svg │ │ │ ├── loader-2-fill.svg │ │ │ ├── loader-2-line.svg │ │ │ ├── loader-3-fill.svg │ │ │ ├── loader-3-line.svg │ │ │ ├── loader-4-fill.svg │ │ │ ├── loader-4-line.svg │ │ │ ├── loader-5-fill.svg │ │ │ ├── loader-5-line.svg │ │ │ ├── loader-fill.svg │ │ │ ├── loader-line.svg │ │ │ ├── lock-2-fill.svg │ │ │ ├── lock-2-line.svg │ │ │ ├── lock-fill.svg │ │ │ ├── lock-line.svg │ │ │ ├── lock-password-fill.svg │ │ │ ├── lock-password-line.svg │ │ │ ├── lock-unlock-fill.svg │ │ │ ├── lock-unlock-line.svg │ │ │ ├── login-box-fill.svg │ │ │ ├── login-box-line.svg │ │ │ ├── login-circle-fill.svg │ │ │ ├── login-circle-line.svg │ │ │ ├── logout-box-fill.svg │ │ │ ├── logout-box-line.svg │ │ │ ├── logout-circle-fill.svg │ │ │ ├── logout-circle-line.svg │ │ │ ├── menu-2-fill.svg │ │ │ ├── menu-2-line.svg │ │ │ ├── menu-3-fill.svg │ │ │ ├── menu-3-line.svg │ │ │ ├── menu-fill.svg │ │ │ ├── menu-line.svg │ │ │ ├── more-2-fill.svg │ │ │ ├── more-2-line.svg │ │ │ ├── more-fill.svg │ │ │ ├── more-line.svg │ │ │ ├── notification-badge-fill.svg │ │ │ ├── notification-badge-line.svg │ │ │ ├── qr-code-fill.svg │ │ │ ├── qr-code-line.svg │ │ │ ├── qr-scan-2-fill.svg │ │ │ ├── qr-scan-2-line.svg │ │ │ ├── qr-scan-fill.svg │ │ │ ├── qr-scan-line.svg │ │ │ ├── question-fill.svg │ │ │ ├── question-line.svg │ │ │ ├── radio-button-fill.svg │ │ │ ├── radio-button-line.svg │ │ │ ├── refresh-fill.svg │ │ │ ├── refresh-line.svg │ │ │ ├── restart-fill.svg │ │ │ ├── restart-line.svg │ │ │ ├── rss-fill.svg │ │ │ ├── rss-line.svg │ │ │ ├── scan-2-fill.svg │ │ │ ├── scan-2-line.svg │ │ │ ├── scan-fill.svg │ │ │ ├── scan-line.svg │ │ │ ├── search-2-fill.svg │ │ │ ├── search-2-line.svg │ │ │ ├── search-eye-fill.svg │ │ │ ├── search-eye-line.svg │ │ │ ├── search-fill.svg │ │ │ ├── search-line.svg │ │ │ ├── settings-2-fill.svg │ │ │ ├── settings-2-line.svg │ │ │ ├── settings-3-fill.svg │ │ │ ├── settings-3-line.svg │ │ │ ├── settings-4-fill.svg │ │ │ ├── settings-4-line.svg │ │ │ ├── settings-5-fill.svg │ │ │ ├── settings-5-line.svg │ │ │ ├── settings-6-fill.svg │ │ │ ├── settings-6-line.svg │ │ │ ├── settings-fill.svg │ │ │ ├── settings-line.svg │ │ │ ├── share-box-fill.svg │ │ │ ├── share-box-line.svg │ │ │ ├── share-circle-fill.svg │ │ │ ├── share-circle-line.svg │ │ │ ├── share-fill.svg │ │ │ ├── share-forward-2-fill.svg │ │ │ ├── share-forward-2-line.svg │ │ │ ├── share-forward-box-fill.svg │ │ │ ├── share-forward-box-line.svg │ │ │ ├── share-forward-fill.svg │ │ │ ├── share-forward-line.svg │ │ │ ├── share-line.svg │ │ │ ├── shield-cross-fill.svg │ │ │ ├── shield-cross-line.svg │ │ │ ├── shield-fill.svg │ │ │ ├── shield-flash-fill.svg │ │ │ ├── shield-flash-line.svg │ │ │ ├── shield-line.svg │ │ │ ├── shield-star-fill.svg │ │ │ ├── shield-star-line.svg │ │ │ ├── shield-user-fill.svg │ │ │ ├── shield-user-line.svg │ │ │ ├── shut-down-fill.svg │ │ │ ├── shut-down-line.svg │ │ │ ├── side-bar-fill.svg │ │ │ ├── side-bar-line.svg │ │ │ ├── spam-2-fill.svg │ │ │ ├── spam-2-line.svg │ │ │ ├── spam-3-fill.svg │ │ │ ├── spam-3-line.svg │ │ │ ├── spam-fill.svg │ │ │ ├── spam-line.svg │ │ │ ├── star-fill.svg │ │ │ ├── star-half-fill.svg │ │ │ ├── star-half-line.svg │ │ │ ├── star-half-s-fill.svg │ │ │ ├── star-half-s-line.svg │ │ │ ├── star-line.svg │ │ │ ├── star-s-fill.svg │ │ │ ├── star-s-line.svg │ │ │ ├── subtract-fill.svg │ │ │ ├── subtract-line.svg │ │ │ ├── thumb-down-fill.svg │ │ │ ├── thumb-down-line.svg │ │ │ ├── thumb-up-fill.svg │ │ │ ├── thumb-up-line.svg │ │ │ ├── time-fill.svg │ │ │ ├── time-line.svg │ │ │ ├── timer-2-fill.svg │ │ │ ├── timer-2-line.svg │ │ │ ├── timer-fill.svg │ │ │ ├── timer-flash-fill.svg │ │ │ ├── timer-flash-line.svg │ │ │ ├── timer-line.svg │ │ │ ├── toggle-fill.svg │ │ │ ├── toggle-line.svg │ │ │ ├── upload-2-fill.svg │ │ │ ├── upload-2-line.svg │ │ │ ├── upload-cloud-fill.svg │ │ │ ├── upload-cloud-line.svg │ │ │ ├── upload-fill.svg │ │ │ ├── upload-line.svg │ │ │ ├── wifi-fill.svg │ │ │ ├── wifi-line.svg │ │ │ ├── zoom-in-fill.svg │ │ │ ├── zoom-in-line.svg │ │ │ ├── zoom-out-fill.svg │ │ │ └── zoom-out-line.svg │ │ ├── User │ │ │ ├── account-box-fill.svg │ │ │ ├── account-box-line.svg │ │ │ ├── account-circle-fill.svg │ │ │ ├── account-circle-line.svg │ │ │ ├── account-pin-box-fill.svg │ │ │ ├── account-pin-box-line.svg │ │ │ ├── account-pin-circle-fill.svg │ │ │ ├── account-pin-circle-line.svg │ │ │ ├── admin-fill.svg │ │ │ ├── admin-line.svg │ │ │ ├── contacts-fill.svg │ │ │ ├── contacts-line.svg │ │ │ ├── emotion-2-fill.svg │ │ │ ├── emotion-2-line.svg │ │ │ ├── emotion-fill.svg │ │ │ ├── emotion-happy-fill.svg │ │ │ ├── emotion-happy-line.svg │ │ │ ├── emotion-line.svg │ │ │ ├── emotion-normal-fill.svg │ │ │ ├── emotion-normal-line.svg │ │ │ ├── emotion-unhappy-fill.svg │ │ │ ├── emotion-unhappy-line.svg │ │ │ ├── genderless-fill.svg │ │ │ ├── genderless-line.svg │ │ │ ├── group-2-fill.svg │ │ │ ├── group-2-line.svg │ │ │ ├── group-fill.svg │ │ │ ├── group-line.svg │ │ │ ├── men-fill.svg │ │ │ ├── men-line.svg │ │ │ ├── open-arm-fill.svg │ │ │ ├── open-arm-line.svg │ │ │ ├── parent-fill.svg │ │ │ ├── parent-line.svg │ │ │ ├── robot-fill.svg │ │ │ ├── robot-line.svg │ │ │ ├── skull-fill.svg │ │ │ ├── skull-line.svg │ │ │ ├── travesti-fill.svg │ │ │ ├── travesti-line.svg │ │ │ ├── user-2-fill.svg │ │ │ ├── user-2-line.svg │ │ │ ├── user-3-fill.svg │ │ │ ├── user-3-line.svg │ │ │ ├── user-4-fill.svg │ │ │ ├── user-4-line.svg │ │ │ ├── user-5-fill.svg │ │ │ ├── user-5-line.svg │ │ │ ├── user-add-fill.svg │ │ │ ├── user-add-line.svg │ │ │ ├── user-fill.svg │ │ │ ├── user-follow-fill.svg │ │ │ ├── user-follow-line.svg │ │ │ ├── user-line.svg │ │ │ ├── user-location-fill.svg │ │ │ ├── user-location-line.svg │ │ │ ├── user-received-2-fill.svg │ │ │ ├── user-received-2-line.svg │ │ │ ├── user-received-fill.svg │ │ │ ├── user-received-line.svg │ │ │ ├── user-search-fill.svg │ │ │ ├── user-search-line.svg │ │ │ ├── user-settings-fill.svg │ │ │ ├── user-settings-line.svg │ │ │ ├── user-shared-2-fill.svg │ │ │ ├── user-shared-2-line.svg │ │ │ ├── user-shared-fill.svg │ │ │ ├── user-shared-line.svg │ │ │ ├── user-smile-fill.svg │ │ │ ├── user-smile-line.svg │ │ │ ├── user-star-fill.svg │ │ │ ├── user-star-line.svg │ │ │ ├── user-unfollow-fill.svg │ │ │ ├── user-unfollow-line.svg │ │ │ ├── user-voice-fill.svg │ │ │ ├── user-voice-line.svg │ │ │ ├── women-fill.svg │ │ │ └── women-line.svg │ │ └── Weather │ │ │ ├── celsius-fill.svg │ │ │ ├── celsius-line.svg │ │ │ ├── cloud-windy-fill.svg │ │ │ ├── cloud-windy-line.svg │ │ │ ├── cloudy-2-fill.svg │ │ │ ├── cloudy-2-line.svg │ │ │ ├── cloudy-fill.svg │ │ │ ├── cloudy-line.svg │ │ │ ├── drizzle-fill.svg │ │ │ ├── drizzle-line.svg │ │ │ ├── fahrenheit-fill.svg │ │ │ ├── fahrenheit-line.svg │ │ │ ├── flashlight-fill.svg │ │ │ ├── flashlight-line.svg │ │ │ ├── foggy-fill.svg │ │ │ ├── foggy-line.svg │ │ │ ├── hail-fill.svg │ │ │ ├── hail-line.svg │ │ │ ├── haze-fill.svg │ │ │ ├── haze-line.svg │ │ │ ├── heavy-showers-fill.svg │ │ │ ├── heavy-showers-line.svg │ │ │ ├── mist-fill.svg │ │ │ ├── mist-line.svg │ │ │ ├── moon-clear-fill.svg │ │ │ ├── moon-clear-line.svg │ │ │ ├── moon-cloudy-fill.svg │ │ │ ├── moon-cloudy-line.svg │ │ │ ├── moon-fill.svg │ │ │ ├── moon-foggy-fill.svg │ │ │ ├── moon-foggy-line.svg │ │ │ ├── moon-line.svg │ │ │ ├── rainy-fill.svg │ │ │ ├── rainy-line.svg │ │ │ ├── showers-fill.svg │ │ │ ├── showers-line.svg │ │ │ ├── snowy-fill.svg │ │ │ ├── snowy-line.svg │ │ │ ├── sun-cloudy-fill.svg │ │ │ ├── sun-cloudy-line.svg │ │ │ ├── sun-fill.svg │ │ │ ├── sun-foggy-fill.svg │ │ │ ├── sun-foggy-line.svg │ │ │ ├── sun-line.svg │ │ │ ├── temp-cold-fill.svg │ │ │ ├── temp-cold-line.svg │ │ │ ├── temp-hot-fill.svg │ │ │ ├── temp-hot-line.svg │ │ │ ├── thunderstorms-fill.svg │ │ │ ├── thunderstorms-line.svg │ │ │ ├── tornado-fill.svg │ │ │ ├── tornado-line.svg │ │ │ ├── windy-fill.svg │ │ │ └── windy-line.svg │ ├── rollup.config.js │ ├── src │ │ ├── AccountBoxFill.ts │ │ ├── AccountBoxLine.ts │ │ ├── AccountCircleFill.ts │ │ ├── AccountCircleLine.ts │ │ ├── AccountPinBoxFill.ts │ │ ├── AccountPinBoxLine.ts │ │ ├── AccountPinCircleFill.ts │ │ ├── AccountPinCircleLine.ts │ │ ├── AddBoxFill.ts │ │ ├── AddBoxLine.ts │ │ ├── AddCircleFill.ts │ │ ├── AddCircleLine.ts │ │ ├── AddFill.ts │ │ ├── AddLine.ts │ │ ├── AdminFill.ts │ │ ├── AdminLine.ts │ │ ├── AirplayFill.ts │ │ ├── AirplayLine.ts │ │ ├── AlarmFill.ts │ │ ├── AlarmLine.ts │ │ ├── AlarmWarningFill.ts │ │ ├── AlarmWarningLine.ts │ │ ├── AlbumFill.ts │ │ ├── AlbumLine.ts │ │ ├── AlertFill.ts │ │ ├── AlertLine.ts │ │ ├── AlignBottom.ts │ │ ├── AlignCenter.ts │ │ ├── AlignJustify.ts │ │ ├── AlignLeft.ts │ │ ├── AlignRight.ts │ │ ├── AlignTop.ts │ │ ├── AlignVertically.ts │ │ ├── AlipayFill.ts │ │ ├── AlipayLine.ts │ │ ├── AmazonFill.ts │ │ ├── AmazonLine.ts │ │ ├── AnchorFill.ts │ │ ├── AnchorLine.ts │ │ ├── AndroidFill.ts │ │ ├── AndroidLine.ts │ │ ├── AngularjsFill.ts │ │ ├── AngularjsLine.ts │ │ ├── Anticlockwise2Fill.ts │ │ ├── Anticlockwise2Line.ts │ │ ├── AnticlockwiseFill.ts │ │ ├── AnticlockwiseLine.ts │ │ ├── AppleFill.ts │ │ ├── AppleLine.ts │ │ ├── Apps2Fill.ts │ │ ├── Apps2Line.ts │ │ ├── AppsFill.ts │ │ ├── AppsLine.ts │ │ ├── ArchiveDrawerFill.ts │ │ ├── ArchiveDrawerLine.ts │ │ ├── ArchiveFill.ts │ │ ├── ArchiveLine.ts │ │ ├── ArrowDownCircleFill.ts │ │ ├── ArrowDownCircleLine.ts │ │ ├── ArrowDownFill.ts │ │ ├── ArrowDownLine.ts │ │ ├── ArrowDownSFill.ts │ │ ├── ArrowDownSLine.ts │ │ ├── ArrowDropDownFill.ts │ │ ├── ArrowDropDownLine.ts │ │ ├── ArrowDropLeftFill.ts │ │ ├── ArrowDropLeftLine.ts │ │ ├── ArrowDropRightFill.ts │ │ ├── ArrowDropRightLine.ts │ │ ├── ArrowDropUpFill.ts │ │ ├── ArrowDropUpLine.ts │ │ ├── ArrowGoBackFill.ts │ │ ├── ArrowGoBackLine.ts │ │ ├── ArrowGoForwardFill.ts │ │ ├── ArrowGoForwardLine.ts │ │ ├── ArrowLeftCircleFill.ts │ │ ├── ArrowLeftCircleLine.ts │ │ ├── ArrowLeftDownFill.ts │ │ ├── ArrowLeftDownLine.ts │ │ ├── ArrowLeftFill.ts │ │ ├── ArrowLeftLine.ts │ │ ├── ArrowLeftSFill.ts │ │ ├── ArrowLeftSLine.ts │ │ ├── ArrowLeftUpFill.ts │ │ ├── ArrowLeftUpLine.ts │ │ ├── ArrowRightCircleFill.ts │ │ ├── ArrowRightCircleLine.ts │ │ ├── ArrowRightDownFill.ts │ │ ├── ArrowRightDownLine.ts │ │ ├── ArrowRightFill.ts │ │ ├── ArrowRightLine.ts │ │ ├── ArrowRightSFill.ts │ │ ├── ArrowRightSLine.ts │ │ ├── ArrowRightUpFill.ts │ │ ├── ArrowRightUpLine.ts │ │ ├── ArrowUpCircleFill.ts │ │ ├── ArrowUpCircleLine.ts │ │ ├── ArrowUpFill.ts │ │ ├── ArrowUpLine.ts │ │ ├── ArrowUpSFill.ts │ │ ├── ArrowUpSLine.ts │ │ ├── Artboard2Fill.ts │ │ ├── Artboard2Line.ts │ │ ├── ArtboardFill.ts │ │ ├── ArtboardLine.ts │ │ ├── ArticleFill.ts │ │ ├── ArticleLine.ts │ │ ├── AtFill.ts │ │ ├── AtLine.ts │ │ ├── Attachment2.ts │ │ ├── AttachmentFill.ts │ │ ├── AttachmentLine.ts │ │ ├── AwardFill.ts │ │ ├── AwardLine.ts │ │ ├── BaiduFill.ts │ │ ├── BaiduLine.ts │ │ ├── BallPenFill.ts │ │ ├── BallPenLine.ts │ │ ├── BankCard2Fill.ts │ │ ├── BankCard2Line.ts │ │ ├── BankCardFill.ts │ │ ├── BankCardLine.ts │ │ ├── BankFill.ts │ │ ├── BankLine.ts │ │ ├── BarChart2Fill.ts │ │ ├── BarChart2Line.ts │ │ ├── BarChartBoxFill.ts │ │ ├── BarChartBoxLine.ts │ │ ├── BarChartFill.ts │ │ ├── BarChartGroupedFill.ts │ │ ├── BarChartGroupedLine.ts │ │ ├── BarChartHorizontalFill.ts │ │ ├── BarChartHorizontalLine.ts │ │ ├── BarChartLine.ts │ │ ├── BarcodeBoxFill.ts │ │ ├── BarcodeBoxLine.ts │ │ ├── BarcodeFill.ts │ │ ├── BarcodeLine.ts │ │ ├── BarricadeFill.ts │ │ ├── BarricadeLine.ts │ │ ├── BaseStationFill.ts │ │ ├── BaseStationLine.ts │ │ ├── Battery2ChargeFill.ts │ │ ├── Battery2ChargeLine.ts │ │ ├── Battery2Fill.ts │ │ ├── Battery2Line.ts │ │ ├── BatteryChargeFill.ts │ │ ├── BatteryChargeLine.ts │ │ ├── BatteryFill.ts │ │ ├── BatteryLine.ts │ │ ├── BatteryLowFill.ts │ │ ├── BatteryLowLine.ts │ │ ├── BehanceFill.ts │ │ ├── BehanceLine.ts │ │ ├── BikeFill.ts │ │ ├── BikeLine.ts │ │ ├── BilibiliFill.ts │ │ ├── BilibiliLine.ts │ │ ├── BillFill.ts │ │ ├── BillLine.ts │ │ ├── BitCoinFill.ts │ │ ├── BitCoinLine.ts │ │ ├── BluetoothConnectFill.ts │ │ ├── BluetoothConnectLine.ts │ │ ├── BluetoothFill.ts │ │ ├── BluetoothLine.ts │ │ ├── BlurOffFill.ts │ │ ├── BlurOffLine.ts │ │ ├── Bold.ts │ │ ├── Book2Fill.ts │ │ ├── Book2Line.ts │ │ ├── Book3Fill.ts │ │ ├── Book3Line.ts │ │ ├── BookFill.ts │ │ ├── BookLine.ts │ │ ├── BookOpenFill.ts │ │ ├── BookOpenLine.ts │ │ ├── BookReadFill.ts │ │ ├── BookReadLine.ts │ │ ├── Bookmark2Fill.ts │ │ ├── Bookmark2Line.ts │ │ ├── Bookmark3Fill.ts │ │ ├── Bookmark3Line.ts │ │ ├── BookmarkFill.ts │ │ ├── BookmarkLine.ts │ │ ├── BracesFill.ts │ │ ├── BracesLine.ts │ │ ├── BracketsFill.ts │ │ ├── BracketsLine.ts │ │ ├── Briefcase2Fill.ts │ │ ├── Briefcase2Line.ts │ │ ├── Briefcase3Fill.ts │ │ ├── Briefcase3Line.ts │ │ ├── Briefcase4Fill.ts │ │ ├── Briefcase4Line.ts │ │ ├── Briefcase5Fill.ts │ │ ├── Briefcase5Line.ts │ │ ├── BriefcaseFill.ts │ │ ├── BriefcaseLine.ts │ │ ├── BroadcastFill.ts │ │ ├── BroadcastLine.ts │ │ ├── Brush2Fill.ts │ │ ├── Brush2Line.ts │ │ ├── Brush3Fill.ts │ │ ├── Brush3Line.ts │ │ ├── Brush4Fill.ts │ │ ├── Brush4Line.ts │ │ ├── BrushFill.ts │ │ ├── BrushLine.ts │ │ ├── Bug2Fill.ts │ │ ├── Bug2Line.ts │ │ ├── BugFill.ts │ │ ├── BugLine.ts │ │ ├── Building2Fill.ts │ │ ├── Building2Line.ts │ │ ├── Building3Fill.ts │ │ ├── Building3Line.ts │ │ ├── Building4Fill.ts │ │ ├── Building4Line.ts │ │ ├── BuildingFill.ts │ │ ├── BuildingLine.ts │ │ ├── Bus2Fill.ts │ │ ├── Bus2Line.ts │ │ ├── BusFill.ts │ │ ├── BusLine.ts │ │ ├── CalculatorFill.ts │ │ ├── CalculatorLine.ts │ │ ├── Calendar2Fill.ts │ │ ├── Calendar2Line.ts │ │ ├── CalendarEventFill.ts │ │ ├── CalendarEventLine.ts │ │ ├── CalendarFill.ts │ │ ├── CalendarLine.ts │ │ ├── CalendarTodoFill.ts │ │ ├── CalendarTodoLine.ts │ │ ├── Camera2Fill.ts │ │ ├── Camera2Line.ts │ │ ├── Camera3Fill.ts │ │ ├── Camera3Line.ts │ │ ├── CameraFill.ts │ │ ├── CameraLensFill.ts │ │ ├── CameraLensLine.ts │ │ ├── CameraLine.ts │ │ ├── CameraOffFill.ts │ │ ├── CameraOffLine.ts │ │ ├── CameraSwitchFill.ts │ │ ├── CameraSwitchLine.ts │ │ ├── CarFill.ts │ │ ├── CarLine.ts │ │ ├── CarWashingFill.ts │ │ ├── CarWashingLine.ts │ │ ├── CastFill.ts │ │ ├── CastLine.ts │ │ ├── CellphoneFill.ts │ │ ├── CellphoneLine.ts │ │ ├── CelsiusFill.ts │ │ ├── CelsiusLine.ts │ │ ├── ChargingPile2Fill.ts │ │ ├── ChargingPile2Line.ts │ │ ├── ChargingPileFill.ts │ │ ├── ChargingPileLine.ts │ │ ├── Chat1Fill.ts │ │ ├── Chat1Line.ts │ │ ├── Chat2Fill.ts │ │ ├── Chat2Line.ts │ │ ├── Chat3Fill.ts │ │ ├── Chat3Line.ts │ │ ├── Chat4Fill.ts │ │ ├── Chat4Line.ts │ │ ├── ChatCheckFill.ts │ │ ├── ChatCheckLine.ts │ │ ├── ChatDeleteFill.ts │ │ ├── ChatDeleteLine.ts │ │ ├── ChatDownloadFill.ts │ │ ├── ChatDownloadLine.ts │ │ ├── ChatForwardFill.ts │ │ ├── ChatForwardLine.ts │ │ ├── ChatHeartFill.ts │ │ ├── ChatHeartLine.ts │ │ ├── ChatNewFill.ts │ │ ├── ChatNewLine.ts │ │ ├── ChatSettingsFill.ts │ │ ├── ChatSettingsLine.ts │ │ ├── ChatSmile2Fill.ts │ │ ├── ChatSmile2Line.ts │ │ ├── ChatSmile3Fill.ts │ │ ├── ChatSmile3Line.ts │ │ ├── ChatSmileFill.ts │ │ ├── ChatSmileLine.ts │ │ ├── ChatUploadFill.ts │ │ ├── ChatUploadLine.ts │ │ ├── ChatVoiceFill.ts │ │ ├── ChatVoiceLine.ts │ │ ├── CheckDoubleFill.ts │ │ ├── CheckDoubleLine.ts │ │ ├── CheckFill.ts │ │ ├── CheckLine.ts │ │ ├── CheckboxBlankCircleFill.ts │ │ ├── CheckboxBlankCircleLine.ts │ │ ├── CheckboxBlankFill.ts │ │ ├── CheckboxBlankLine.ts │ │ ├── CheckboxCircleFill.ts │ │ ├── CheckboxCircleLine.ts │ │ ├── CheckboxFill.ts │ │ ├── CheckboxIndeterminateFill.ts │ │ ├── CheckboxIndeterminateLine.ts │ │ ├── CheckboxLine.ts │ │ ├── CheckboxMultipleBlankFill.ts │ │ ├── CheckboxMultipleBlankLine.ts │ │ ├── CheckboxMultipleFill.ts │ │ ├── CheckboxMultipleLine.ts │ │ ├── ChinaRailwayFill.ts │ │ ├── ChinaRailwayLine.ts │ │ ├── ChromeFill.ts │ │ ├── ChromeLine.ts │ │ ├── ClapperboardFill.ts │ │ ├── ClapperboardLine.ts │ │ ├── ClipboardFill.ts │ │ ├── ClipboardLine.ts │ │ ├── Clockwise2Fill.ts │ │ ├── Clockwise2Line.ts │ │ ├── ClockwiseFill.ts │ │ ├── ClockwiseLine.ts │ │ ├── CloseCircleFill.ts │ │ ├── CloseCircleLine.ts │ │ ├── CloseFill.ts │ │ ├── CloseLine.ts │ │ ├── CloudFill.ts │ │ ├── CloudLine.ts │ │ ├── CloudWindyFill.ts │ │ ├── CloudWindyLine.ts │ │ ├── Cloudy2Fill.ts │ │ ├── Cloudy2Line.ts │ │ ├── CloudyFill.ts │ │ ├── CloudyLine.ts │ │ ├── CodeBoxFill.ts │ │ ├── CodeBoxLine.ts │ │ ├── CodeFill.ts │ │ ├── CodeLine.ts │ │ ├── CodeSFill.ts │ │ ├── CodeSLine.ts │ │ ├── CodeSSlashFill.ts │ │ ├── CodeSSlashLine.ts │ │ ├── CodeView.ts │ │ ├── CodepenFill.ts │ │ ├── CodepenLine.ts │ │ ├── CommandFill.ts │ │ ├── CommandLine.ts │ │ ├── CommunityFill.ts │ │ ├── CommunityLine.ts │ │ ├── Compass2Fill.ts │ │ ├── Compass2Line.ts │ │ ├── Compass3Fill.ts │ │ ├── Compass3Line.ts │ │ ├── Compass4Fill.ts │ │ ├── Compass4Line.ts │ │ ├── CompassDiscoverFill.ts │ │ ├── CompassDiscoverLine.ts │ │ ├── CompassFill.ts │ │ ├── CompassLine.ts │ │ ├── Compasses2Fill.ts │ │ ├── Compasses2Line.ts │ │ ├── CompassesFill.ts │ │ ├── CompassesLine.ts │ │ ├── ComputerFill.ts │ │ ├── ComputerLine.ts │ │ ├── ContactsBook2Fill.ts │ │ ├── ContactsBook2Line.ts │ │ ├── ContactsBookFill.ts │ │ ├── ContactsBookLine.ts │ │ ├── ContactsFill.ts │ │ ├── ContactsLine.ts │ │ ├── Contrast2Fill.ts │ │ ├── Contrast2Line.ts │ │ ├── ContrastDrop2Fill.ts │ │ ├── ContrastDrop2Line.ts │ │ ├── ContrastDropFill.ts │ │ ├── ContrastDropLine.ts │ │ ├── ContrastFill.ts │ │ ├── ContrastLine.ts │ │ ├── CopperCoinFill.ts │ │ ├── CopperCoinLine.ts │ │ ├── CopperDiamondFill.ts │ │ ├── CopperDiamondLine.ts │ │ ├── CopyrightFill.ts │ │ ├── CopyrightLine.ts │ │ ├── CoreosFill.ts │ │ ├── CoreosLine.ts │ │ ├── Coupon2Fill.ts │ │ ├── Coupon2Line.ts │ │ ├── Coupon3Fill.ts │ │ ├── Coupon3Line.ts │ │ ├── Coupon4Fill.ts │ │ ├── Coupon4Line.ts │ │ ├── Coupon5Fill.ts │ │ ├── Coupon5Line.ts │ │ ├── CouponFill.ts │ │ ├── CouponLine.ts │ │ ├── CpuFill.ts │ │ ├── CpuLine.ts │ │ ├── Crop2Fill.ts │ │ ├── Crop2Line.ts │ │ ├── CropFill.ts │ │ ├── CropLine.ts │ │ ├── Css3Fill.ts │ │ ├── Css3Line.ts │ │ ├── CupFill.ts │ │ ├── CupLine.ts │ │ ├── CurrencyFill.ts │ │ ├── CurrencyLine.ts │ │ ├── CursorFill.ts │ │ ├── CursorLine.ts │ │ ├── CustomerService2Fill.ts │ │ ├── CustomerService2Line.ts │ │ ├── CustomerServiceFill.ts │ │ ├── CustomerServiceLine.ts │ │ ├── DashboardFill.ts │ │ ├── DashboardLine.ts │ │ ├── Database2Fill.ts │ │ ├── Database2Line.ts │ │ ├── DatabaseFill.ts │ │ ├── DatabaseLine.ts │ │ ├── DeleteBack2Fill.ts │ │ ├── DeleteBack2Line.ts │ │ ├── DeleteBackFill.ts │ │ ├── DeleteBackLine.ts │ │ ├── DeleteBin2Fill.ts │ │ ├── DeleteBin2Line.ts │ │ ├── DeleteBin3Fill.ts │ │ ├── DeleteBin3Line.ts │ │ ├── DeleteBin4Fill.ts │ │ ├── DeleteBin4Line.ts │ │ ├── DeleteBin5Fill.ts │ │ ├── DeleteBin5Line.ts │ │ ├── DeleteBin6Fill.ts │ │ ├── DeleteBin6Line.ts │ │ ├── DeleteBin7Fill.ts │ │ ├── DeleteBin7Line.ts │ │ ├── DeleteBinFill.ts │ │ ├── DeleteBinLine.ts │ │ ├── DeviceFill.ts │ │ ├── DeviceLine.ts │ │ ├── DingdingFill.ts │ │ ├── DingdingLine.ts │ │ ├── DirectionFill.ts │ │ ├── DirectionLine.ts │ │ ├── DiscFill.ts │ │ ├── DiscLine.ts │ │ ├── DiscordFill.ts │ │ ├── DiscordLine.ts │ │ ├── DiscussFill.ts │ │ ├── DiscussLine.ts │ │ ├── DivideFill.ts │ │ ├── DivideLine.ts │ │ ├── DoorLockBoxFill.ts │ │ ├── DoorLockBoxLine.ts │ │ ├── DoorLockFill.ts │ │ ├── DoorLockLine.ts │ │ ├── DoubanFill.ts │ │ ├── DoubanLine.ts │ │ ├── DoubleQuotesL.ts │ │ ├── DoubleQuotesR.ts │ │ ├── Download2Fill.ts │ │ ├── Download2Line.ts │ │ ├── DownloadCloudFill.ts │ │ ├── DownloadCloudLine.ts │ │ ├── DownloadFill.ts │ │ ├── DownloadLine.ts │ │ ├── DragMove2Fill.ts │ │ ├── DragMove2Line.ts │ │ ├── DragMoveFill.ts │ │ ├── DragMoveLine.ts │ │ ├── DribbbleFill.ts │ │ ├── DribbbleLine.ts │ │ ├── DriveFill.ts │ │ ├── DriveLine.ts │ │ ├── DrizzleFill.ts │ │ ├── DrizzleLine.ts │ │ ├── DropFill.ts │ │ ├── DropLine.ts │ │ ├── DropboxFill.ts │ │ ├── DropboxLine.ts │ │ ├── DvFill.ts │ │ ├── DvLine.ts │ │ ├── DvdFill.ts │ │ ├── DvdLine.ts │ │ ├── EBike2Fill.ts │ │ ├── EBike2Line.ts │ │ ├── EBikeFill.ts │ │ ├── EBikeLine.ts │ │ ├── EarthFill.ts │ │ ├── EarthLine.ts │ │ ├── EdgeFill.ts │ │ ├── EdgeLine.ts │ │ ├── Edit2Fill.ts │ │ ├── Edit2Line.ts │ │ ├── EditBoxFill.ts │ │ ├── EditBoxLine.ts │ │ ├── EditCircleFill.ts │ │ ├── EditCircleLine.ts │ │ ├── EditFill.ts │ │ ├── EditLine.ts │ │ ├── EjectFill.ts │ │ ├── EjectLine.ts │ │ ├── Emotion2Fill.ts │ │ ├── Emotion2Line.ts │ │ ├── EmotionFill.ts │ │ ├── EmotionHappyFill.ts │ │ ├── EmotionHappyLine.ts │ │ ├── EmotionLine.ts │ │ ├── EmotionNormalFill.ts │ │ ├── EmotionNormalLine.ts │ │ ├── EmotionUnhappyFill.ts │ │ ├── EmotionUnhappyLine.ts │ │ ├── EqualizerFill.ts │ │ ├── EqualizerLine.ts │ │ ├── EraserFill.ts │ │ ├── EraserLine.ts │ │ ├── ErrorWarningFill.ts │ │ ├── ErrorWarningLine.ts │ │ ├── EvernoteFill.ts │ │ ├── EvernoteLine.ts │ │ ├── ExchangeBoxFill.ts │ │ ├── ExchangeBoxLine.ts │ │ ├── ExchangeCnyFill.ts │ │ ├── ExchangeCnyLine.ts │ │ ├── ExchangeDollarFill.ts │ │ ├── ExchangeDollarLine.ts │ │ ├── ExchangeFill.ts │ │ ├── ExchangeFundsFill.ts │ │ ├── ExchangeFundsLine.ts │ │ ├── ExchangeLine.ts │ │ ├── EyeCloseFill.ts │ │ ├── EyeCloseLine.ts │ │ ├── EyeFill.ts │ │ ├── EyeLine.ts │ │ ├── EyeOffFill.ts │ │ ├── EyeOffLine.ts │ │ ├── FacebookBoxFill.ts │ │ ├── FacebookBoxLine.ts │ │ ├── FacebookCircleFill.ts │ │ ├── FacebookCircleLine.ts │ │ ├── FacebookFill.ts │ │ ├── FacebookLine.ts │ │ ├── FahrenheitFill.ts │ │ ├── FahrenheitLine.ts │ │ ├── FeedbackFill.ts │ │ ├── FeedbackLine.ts │ │ ├── File2Fill.ts │ │ ├── File2Line.ts │ │ ├── File3Fill.ts │ │ ├── File3Line.ts │ │ ├── File4Fill.ts │ │ ├── File4Line.ts │ │ ├── FileAddFill.ts │ │ ├── FileAddLine.ts │ │ ├── FileChart2Fill.ts │ │ ├── FileChart2Line.ts │ │ ├── FileChartFill.ts │ │ ├── FileChartLine.ts │ │ ├── FileCodeFill.ts │ │ ├── FileCodeLine.ts │ │ ├── FileCopy2Fill.ts │ │ ├── FileCopy2Line.ts │ │ ├── FileCopyFill.ts │ │ ├── FileCopyLine.ts │ │ ├── FileDamageFill.ts │ │ ├── FileDamageLine.ts │ │ ├── FileDownloadFill.ts │ │ ├── FileDownloadLine.ts │ │ ├── FileEditFill.ts │ │ ├── FileEditLine.ts │ │ ├── FileExcel2Fill.ts │ │ ├── FileExcel2Line.ts │ │ ├── FileExcelFill.ts │ │ ├── FileExcelLine.ts │ │ ├── FileFill.ts │ │ ├── FileForbidFill.ts │ │ ├── FileForbidLine.ts │ │ ├── FileInfoFill.ts │ │ ├── FileInfoLine.ts │ │ ├── FileLine.ts │ │ ├── FileList2Fill.ts │ │ ├── FileList2Line.ts │ │ ├── FileList3Fill.ts │ │ ├── FileList3Line.ts │ │ ├── FileListFill.ts │ │ ├── FileListLine.ts │ │ ├── FileLockFill.ts │ │ ├── FileLockLine.ts │ │ ├── FileMarkFill.ts │ │ ├── FileMarkLine.ts │ │ ├── FileMusicFill.ts │ │ ├── FileMusicLine.ts │ │ ├── FilePaperFill.ts │ │ ├── FilePaperLine.ts │ │ ├── FilePdfFill.ts │ │ ├── FilePdfLine.ts │ │ ├── FilePpt2Fill.ts │ │ ├── FilePpt2Line.ts │ │ ├── FilePptFill.ts │ │ ├── FilePptLine.ts │ │ ├── FileReduceFill.ts │ │ ├── FileReduceLine.ts │ │ ├── FileSearchFill.ts │ │ ├── FileSearchLine.ts │ │ ├── FileSettingsFill.ts │ │ ├── FileSettingsLine.ts │ │ ├── FileShield2Fill.ts │ │ ├── FileShield2Line.ts │ │ ├── FileShieldFill.ts │ │ ├── FileShieldLine.ts │ │ ├── FileShredFill.ts │ │ ├── FileShredLine.ts │ │ ├── FileTextFill.ts │ │ ├── FileTextLine.ts │ │ ├── FileTransferFill.ts │ │ ├── FileTransferLine.ts │ │ ├── FileUnknowFill.ts │ │ ├── FileUnknowLine.ts │ │ ├── FileUploadFill.ts │ │ ├── FileUploadLine.ts │ │ ├── FileUserFill.ts │ │ ├── FileUserLine.ts │ │ ├── FileWarningFill.ts │ │ ├── FileWarningLine.ts │ │ ├── FileWord2Fill.ts │ │ ├── FileWord2Line.ts │ │ ├── FileWordFill.ts │ │ ├── FileWordLine.ts │ │ ├── FileZipFill.ts │ │ ├── FileZipLine.ts │ │ ├── FilmFill.ts │ │ ├── FilmLine.ts │ │ ├── Filter2Fill.ts │ │ ├── Filter2Line.ts │ │ ├── Filter3Fill.ts │ │ ├── Filter3Line.ts │ │ ├── FilterFill.ts │ │ ├── FilterLine.ts │ │ ├── FindReplaceFill.ts │ │ ├── FindReplaceLine.ts │ │ ├── FireFill.ts │ │ ├── FireLine.ts │ │ ├── FirefoxFill.ts │ │ ├── FirefoxLine.ts │ │ ├── Flag2Fill.ts │ │ ├── Flag2Line.ts │ │ ├── FlagFill.ts │ │ ├── FlagLine.ts │ │ ├── FlashlightFill.ts │ │ ├── FlashlightLine.ts │ │ ├── FlightLandFill.ts │ │ ├── FlightLandLine.ts │ │ ├── FlightTakeoffFill.ts │ │ ├── FlightTakeoffLine.ts │ │ ├── Focus2Fill.ts │ │ ├── Focus2Line.ts │ │ ├── FocusFill.ts │ │ ├── FocusLine.ts │ │ ├── FoggyFill.ts │ │ ├── FoggyLine.ts │ │ ├── Folder2Fill.ts │ │ ├── Folder2Line.ts │ │ ├── Folder3Fill.ts │ │ ├── Folder3Line.ts │ │ ├── Folder4Fill.ts │ │ ├── Folder4Line.ts │ │ ├── Folder5Fill.ts │ │ ├── Folder5Line.ts │ │ ├── FolderAddFill.ts │ │ ├── FolderAddLine.ts │ │ ├── FolderChart2Fill.ts │ │ ├── FolderChart2Line.ts │ │ ├── FolderChartFill.ts │ │ ├── FolderChartLine.ts │ │ ├── FolderDownloadFill.ts │ │ ├── FolderDownloadLine.ts │ │ ├── FolderFill.ts │ │ ├── FolderForbidFill.ts │ │ ├── FolderForbidLine.ts │ │ ├── FolderInfoFill.ts │ │ ├── FolderInfoLine.ts │ │ ├── FolderLine.ts │ │ ├── FolderLockFill.ts │ │ ├── FolderLockLine.ts │ │ ├── FolderMusicFill.ts │ │ ├── FolderMusicLine.ts │ │ ├── FolderReceivedFill.ts │ │ ├── FolderReceivedLine.ts │ │ ├── FolderReduceFill.ts │ │ ├── FolderReduceLine.ts │ │ ├── FolderSettingsFill.ts │ │ ├── FolderSettingsLine.ts │ │ ├── FolderSharedFill.ts │ │ ├── FolderSharedLine.ts │ │ ├── FolderShield2Fill.ts │ │ ├── FolderShield2Line.ts │ │ ├── FolderShieldFill.ts │ │ ├── FolderShieldLine.ts │ │ ├── FolderTransferFill.ts │ │ ├── FolderTransferLine.ts │ │ ├── FolderUnknowFill.ts │ │ ├── FolderUnknowLine.ts │ │ ├── FolderUploadFill.ts │ │ ├── FolderUploadLine.ts │ │ ├── FolderUserFill.ts │ │ ├── FolderUserLine.ts │ │ ├── FolderWarningFill.ts │ │ ├── FolderWarningLine.ts │ │ ├── FoldersFill.ts │ │ ├── FoldersLine.ts │ │ ├── FontColor.ts │ │ ├── FontSize.ts │ │ ├── FontSize2.ts │ │ ├── FootprintFill.ts │ │ ├── FootprintLine.ts │ │ ├── Forbid2Fill.ts │ │ ├── Forbid2Line.ts │ │ ├── ForbidFill.ts │ │ ├── ForbidLine.ts │ │ ├── FormatClear.ts │ │ ├── FullscreenExitFill.ts │ │ ├── FullscreenExitLine.ts │ │ ├── FullscreenFill.ts │ │ ├── FullscreenLine.ts │ │ ├── FunctionFill.ts │ │ ├── FunctionLine.ts │ │ ├── Functions.ts │ │ ├── FundsBoxFill.ts │ │ ├── FundsBoxLine.ts │ │ ├── FundsFill.ts │ │ ├── FundsLine.ts │ │ ├── GalleryFill.ts │ │ ├── GalleryLine.ts │ │ ├── GasStationFill.ts │ │ ├── GasStationLine.ts │ │ ├── GenderlessFill.ts │ │ ├── GenderlessLine.ts │ │ ├── GitBranchFill.ts │ │ ├── GitBranchLine.ts │ │ ├── GitCommitFill.ts │ │ ├── GitCommitLine.ts │ │ ├── GitMergeFill.ts │ │ ├── GitMergeLine.ts │ │ ├── GitPullRequestFill.ts │ │ ├── GitPullRequestLine.ts │ │ ├── GitRepositoryCommitsFill.ts │ │ ├── GitRepositoryCommitsLine.ts │ │ ├── GitRepositoryFill.ts │ │ ├── GitRepositoryLine.ts │ │ ├── GitRepositoryPrivateFill.ts │ │ ├── GitRepositoryPrivateLine.ts │ │ ├── GithubFill.ts │ │ ├── GithubLine.ts │ │ ├── GitlabFill.ts │ │ ├── GitlabLine.ts │ │ ├── GlobalFill.ts │ │ ├── GlobalLine.ts │ │ ├── GlobeFill.ts │ │ ├── GlobeLine.ts │ │ ├── GobletFill.ts │ │ ├── GobletLine.ts │ │ ├── GoogleFill.ts │ │ ├── GoogleLine.ts │ │ ├── GovernmentFill.ts │ │ ├── GovernmentLine.ts │ │ ├── GpsFill.ts │ │ ├── GpsLine.ts │ │ ├── GradienterFill.ts │ │ ├── GradienterLine.ts │ │ ├── GridFill.ts │ │ ├── GridLine.ts │ │ ├── Group2Fill.ts │ │ ├── Group2Line.ts │ │ ├── GroupFill.ts │ │ ├── GroupLine.ts │ │ ├── GuideFill.ts │ │ ├── GuideLine.ts │ │ ├── HailFill.ts │ │ ├── HailLine.ts │ │ ├── HardDrive2Fill.ts │ │ ├── HardDrive2Line.ts │ │ ├── HardDriveFill.ts │ │ ├── HardDriveLine.ts │ │ ├── Hashtag.ts │ │ ├── HazeFill.ts │ │ ├── HazeLine.ts │ │ ├── HdFill.ts │ │ ├── HdLine.ts │ │ ├── Heading.ts │ │ ├── HeadphoneFill.ts │ │ ├── HeadphoneLine.ts │ │ ├── Heart2Fill.ts │ │ ├── Heart2Line.ts │ │ ├── HeartFill.ts │ │ ├── HeartLine.ts │ │ ├── HeavyShowersFill.ts │ │ ├── HeavyShowersLine.ts │ │ ├── Home2Fill.ts │ │ ├── Home2Line.ts │ │ ├── Home3Fill.ts │ │ ├── Home3Line.ts │ │ ├── Home4Fill.ts │ │ ├── Home4Line.ts │ │ ├── Home5Fill.ts │ │ ├── Home5Line.ts │ │ ├── Home6Fill.ts │ │ ├── Home6Line.ts │ │ ├── Home7Fill.ts │ │ ├── Home7Line.ts │ │ ├── Home8Fill.ts │ │ ├── Home8Line.ts │ │ ├── HomeFill.ts │ │ ├── HomeGearFill.ts │ │ ├── HomeGearLine.ts │ │ ├── HomeHeartFill.ts │ │ ├── HomeHeartLine.ts │ │ ├── HomeLine.ts │ │ ├── HomeSmile2Fill.ts │ │ ├── HomeSmile2Line.ts │ │ ├── HomeSmileFill.ts │ │ ├── HomeSmileLine.ts │ │ ├── HomeWifiFill.ts │ │ ├── HomeWifiLine.ts │ │ ├── HonourFill.ts │ │ ├── HonourLine.ts │ │ ├── HospitalFill.ts │ │ ├── HospitalLine.ts │ │ ├── HotelBedFill.ts │ │ ├── HotelBedLine.ts │ │ ├── HotelFill.ts │ │ ├── HotelLine.ts │ │ ├── HqFill.ts │ │ ├── HqLine.ts │ │ ├── Html5Fill.ts │ │ ├── Html5Line.ts │ │ ├── IeFill.ts │ │ ├── IeLine.ts │ │ ├── Image2Fill.ts │ │ ├── Image2Line.ts │ │ ├── ImageFill.ts │ │ ├── ImageLine.ts │ │ ├── InboxArchiveFill.ts │ │ ├── InboxArchiveLine.ts │ │ ├── InboxFill.ts │ │ ├── InboxLine.ts │ │ ├── IncreaseDecreaseFill.ts │ │ ├── IncreaseDecreaseLine.ts │ │ ├── IndentDecrease.ts │ │ ├── IndentIncrease.ts │ │ ├── IndeterminateCircleFill.ts │ │ ├── IndeterminateCircleLine.ts │ │ ├── InformationFill.ts │ │ ├── InformationLine.ts │ │ ├── InputMethodFill.ts │ │ ├── InputMethodLine.ts │ │ ├── InstagramFill.ts │ │ ├── InstagramLine.ts │ │ ├── InvisionFill.ts │ │ ├── InvisionLine.ts │ │ ├── Italic.ts │ │ ├── KakaoTalkFill.ts │ │ ├── KakaoTalkLine.ts │ │ ├── Key2Fill.ts │ │ ├── Key2Line.ts │ │ ├── KeyFill.ts │ │ ├── KeyLine.ts │ │ ├── KeyboardBoxFill.ts │ │ ├── KeyboardBoxLine.ts │ │ ├── KeyboardFill.ts │ │ ├── KeyboardLine.ts │ │ ├── KeynoteFill.ts │ │ ├── KeynoteLine.ts │ │ ├── LandscapeFill.ts │ │ ├── LandscapeLine.ts │ │ ├── LayoutColumnFill.ts │ │ ├── LayoutColumnLine.ts │ │ ├── LayoutFill.ts │ │ ├── LayoutLine.ts │ │ ├── LayoutRowFill.ts │ │ ├── LayoutRowLine.ts │ │ ├── LightbulbFill.ts │ │ ├── LightbulbFlashFill.ts │ │ ├── LightbulbFlashLine.ts │ │ ├── LightbulbLine.ts │ │ ├── LineFill.ts │ │ ├── LineHeight.ts │ │ ├── LineLine.ts │ │ ├── Link.ts │ │ ├── LinkM.ts │ │ ├── LinkUnlink.ts │ │ ├── LinkUnlinkM.ts │ │ ├── LinkedinBoxFill.ts │ │ ├── LinkedinBoxLine.ts │ │ ├── LinkedinFill.ts │ │ ├── LinkedinLine.ts │ │ ├── LinksFill.ts │ │ ├── LinksLine.ts │ │ ├── ListCheck.ts │ │ ├── ListCheck2.ts │ │ ├── ListOrdered.ts │ │ ├── ListSettingsFill.ts │ │ ├── ListSettingsLine.ts │ │ ├── ListUnordered.ts │ │ ├── Loader2Fill.ts │ │ ├── Loader2Line.ts │ │ ├── Loader3Fill.ts │ │ ├── Loader3Line.ts │ │ ├── Loader4Fill.ts │ │ ├── Loader4Line.ts │ │ ├── Loader5Fill.ts │ │ ├── Loader5Line.ts │ │ ├── LoaderFill.ts │ │ ├── LoaderLine.ts │ │ ├── Lock2Fill.ts │ │ ├── Lock2Line.ts │ │ ├── LockFill.ts │ │ ├── LockLine.ts │ │ ├── LockPasswordFill.ts │ │ ├── LockPasswordLine.ts │ │ ├── LockUnlockFill.ts │ │ ├── LockUnlockLine.ts │ │ ├── LoginBoxFill.ts │ │ ├── LoginBoxLine.ts │ │ ├── LoginCircleFill.ts │ │ ├── LoginCircleLine.ts │ │ ├── LogoutBoxFill.ts │ │ ├── LogoutBoxLine.ts │ │ ├── LogoutCircleFill.ts │ │ ├── LogoutCircleLine.ts │ │ ├── MacFill.ts │ │ ├── MacLine.ts │ │ ├── MacbookFill.ts │ │ ├── MacbookLine.ts │ │ ├── MagicFill.ts │ │ ├── MagicLine.ts │ │ ├── MailAddFill.ts │ │ ├── MailAddLine.ts │ │ ├── MailCheckFill.ts │ │ ├── MailCheckLine.ts │ │ ├── MailCloseFill.ts │ │ ├── MailCloseLine.ts │ │ ├── MailDownloadFill.ts │ │ ├── MailDownloadLine.ts │ │ ├── MailFill.ts │ │ ├── MailForbidFill.ts │ │ ├── MailForbidLine.ts │ │ ├── MailLine.ts │ │ ├── MailLockFill.ts │ │ ├── MailLockLine.ts │ │ ├── MailOpenFill.ts │ │ ├── MailOpenLine.ts │ │ ├── MailSendFill.ts │ │ ├── MailSendLine.ts │ │ ├── MailSettingsFill.ts │ │ ├── MailSettingsLine.ts │ │ ├── MailStarFill.ts │ │ ├── MailStarLine.ts │ │ ├── MailUnreadFill.ts │ │ ├── MailUnreadLine.ts │ │ ├── Map2Fill.ts │ │ ├── Map2Line.ts │ │ ├── MapFill.ts │ │ ├── MapLine.ts │ │ ├── MapPin2Fill.ts │ │ ├── MapPin2Line.ts │ │ ├── MapPin3Fill.ts │ │ ├── MapPin3Line.ts │ │ ├── MapPin4Fill.ts │ │ ├── MapPin4Line.ts │ │ ├── MapPin5Fill.ts │ │ ├── MapPin5Line.ts │ │ ├── MapPinAddFill.ts │ │ ├── MapPinAddLine.ts │ │ ├── MapPinFill.ts │ │ ├── MapPinLine.ts │ │ ├── MapPinRangeFill.ts │ │ ├── MapPinRangeLine.ts │ │ ├── MapPinTimeFill.ts │ │ ├── MapPinTimeLine.ts │ │ ├── MapPinUserFill.ts │ │ ├── MapPinUserLine.ts │ │ ├── MarkPenFill.ts │ │ ├── MarkPenLine.ts │ │ ├── MarkdownFill.ts │ │ ├── MarkdownLine.ts │ │ ├── MarkupFill.ts │ │ ├── MarkupLine.ts │ │ ├── MastercardFill.ts │ │ ├── MastercardLine.ts │ │ ├── MastodonFill.ts │ │ ├── MastodonLine.ts │ │ ├── Media4kFill.ts │ │ ├── Media4kLine.ts │ │ ├── MediumFill.ts │ │ ├── MediumLine.ts │ │ ├── MenFill.ts │ │ ├── MenLine.ts │ │ ├── Menu2Fill.ts │ │ ├── Menu2Line.ts │ │ ├── Menu3Fill.ts │ │ ├── Menu3Line.ts │ │ ├── MenuFill.ts │ │ ├── MenuLine.ts │ │ ├── Message2Fill.ts │ │ ├── Message2Line.ts │ │ ├── Message3Fill.ts │ │ ├── Message3Line.ts │ │ ├── MessageFill.ts │ │ ├── MessageLine.ts │ │ ├── MessengerFill.ts │ │ ├── MessengerLine.ts │ │ ├── Mic2Fill.ts │ │ ├── Mic2Line.ts │ │ ├── MicFill.ts │ │ ├── MicLine.ts │ │ ├── MicOffFill.ts │ │ ├── MicOffLine.ts │ │ ├── MiniProgramFill.ts │ │ ├── MiniProgramLine.ts │ │ ├── MistFill.ts │ │ ├── MistLine.ts │ │ ├── MoneyCnyBoxFill.ts │ │ ├── MoneyCnyBoxLine.ts │ │ ├── MoneyCnyCircleFill.ts │ │ ├── MoneyCnyCircleLine.ts │ │ ├── MoneyDollarBoxFill.ts │ │ ├── MoneyDollarBoxLine.ts │ │ ├── MoneyDollarCircleFill.ts │ │ ├── MoneyDollarCircleLine.ts │ │ ├── MoneyEuroBoxFill.ts │ │ ├── MoneyEuroBoxLine.ts │ │ ├── MoneyEuroCircleFill.ts │ │ ├── MoneyEuroCircleLine.ts │ │ ├── MoneyPoundBoxFill.ts │ │ ├── MoneyPoundBoxLine.ts │ │ ├── MoneyPoundCircleFill.ts │ │ ├── MoneyPoundCircleLine.ts │ │ ├── MoonClearFill.ts │ │ ├── MoonClearLine.ts │ │ ├── MoonCloudyFill.ts │ │ ├── MoonCloudyLine.ts │ │ ├── MoonFill.ts │ │ ├── MoonFoggyFill.ts │ │ ├── MoonFoggyLine.ts │ │ ├── MoonLine.ts │ │ ├── More2Fill.ts │ │ ├── More2Line.ts │ │ ├── MoreFill.ts │ │ ├── MoreLine.ts │ │ ├── MotorbikeFill.ts │ │ ├── MotorbikeLine.ts │ │ ├── MouseFill.ts │ │ ├── MouseLine.ts │ │ ├── Movie2Fill.ts │ │ ├── Movie2Line.ts │ │ ├── MovieFill.ts │ │ ├── MovieLine.ts │ │ ├── Music2Fill.ts │ │ ├── Music2Line.ts │ │ ├── MusicFill.ts │ │ ├── MusicLine.ts │ │ ├── MvFill.ts │ │ ├── MvLine.ts │ │ ├── NavigationFill.ts │ │ ├── NavigationLine.ts │ │ ├── NeteaseCloudMusicFill.ts │ │ ├── NeteaseCloudMusicLine.ts │ │ ├── NetflixFill.ts │ │ ├── NetflixLine.ts │ │ ├── NewspaperFill.ts │ │ ├── NewspaperLine.ts │ │ ├── Notification2Fill.ts │ │ ├── Notification2Line.ts │ │ ├── Notification3Fill.ts │ │ ├── Notification3Line.ts │ │ ├── Notification4Fill.ts │ │ ├── Notification4Line.ts │ │ ├── NotificationBadgeFill.ts │ │ ├── NotificationBadgeLine.ts │ │ ├── NotificationFill.ts │ │ ├── NotificationLine.ts │ │ ├── NotificationOffFill.ts │ │ ├── NotificationOffLine.ts │ │ ├── NumbersFill.ts │ │ ├── NumbersLine.ts │ │ ├── OilFill.ts │ │ ├── OilLine.ts │ │ ├── Omega.ts │ │ ├── OpenArmFill.ts │ │ ├── OpenArmLine.ts │ │ ├── OperaFill.ts │ │ ├── OperaLine.ts │ │ ├── OrderPlayFill.ts │ │ ├── OrderPlayLine.ts │ │ ├── Outlet2Fill.ts │ │ ├── Outlet2Line.ts │ │ ├── OutletFill.ts │ │ ├── OutletLine.ts │ │ ├── PageSeparator.ts │ │ ├── PagesFill.ts │ │ ├── PagesLine.ts │ │ ├── PaintBrushFill.ts │ │ ├── PaintBrushLine.ts │ │ ├── PaintFill.ts │ │ ├── PaintLine.ts │ │ ├── PaletteFill.ts │ │ ├── PaletteLine.ts │ │ ├── PantoneFill.ts │ │ ├── PantoneLine.ts │ │ ├── Paragraph.ts │ │ ├── ParentFill.ts │ │ ├── ParentLine.ts │ │ ├── ParenthesesFill.ts │ │ ├── ParenthesesLine.ts │ │ ├── ParkingBoxFill.ts │ │ ├── ParkingBoxLine.ts │ │ ├── ParkingFill.ts │ │ ├── ParkingLine.ts │ │ ├── PatreonFill.ts │ │ ├── PatreonLine.ts │ │ ├── PauseCircleFill.ts │ │ ├── PauseCircleLine.ts │ │ ├── PauseFill.ts │ │ ├── PauseLine.ts │ │ ├── PauseMiniFill.ts │ │ ├── PauseMiniLine.ts │ │ ├── PaypalFill.ts │ │ ├── PaypalLine.ts │ │ ├── PenNibFill.ts │ │ ├── PenNibLine.ts │ │ ├── PencilFill.ts │ │ ├── PencilLine.ts │ │ ├── PencilRuler2Fill.ts │ │ ├── PencilRuler2Line.ts │ │ ├── PencilRulerFill.ts │ │ ├── PencilRulerLine.ts │ │ ├── PercentFill.ts │ │ ├── PercentLine.ts │ │ ├── PhoneCameraFill.ts │ │ ├── PhoneCameraLine.ts │ │ ├── PhoneFill.ts │ │ ├── PhoneLine.ts │ │ ├── PieChart2Fill.ts │ │ ├── PieChart2Line.ts │ │ ├── PieChartBoxFill.ts │ │ ├── PieChartBoxLine.ts │ │ ├── PieChartFill.ts │ │ ├── PieChartLine.ts │ │ ├── PinDistanceFill.ts │ │ ├── PinDistanceLine.ts │ │ ├── PinterestFill.ts │ │ ├── PinterestLine.ts │ │ ├── PlaneFill.ts │ │ ├── PlaneLine.ts │ │ ├── PlayCircleFill.ts │ │ ├── PlayCircleLine.ts │ │ ├── PlayFill.ts │ │ ├── PlayLine.ts │ │ ├── PlayListAddFill.ts │ │ ├── PlayListAddLine.ts │ │ ├── PlayListFill.ts │ │ ├── PlayListLine.ts │ │ ├── PlayMiniFill.ts │ │ ├── PlayMiniLine.ts │ │ ├── PlaystationFill.ts │ │ ├── PlaystationLine.ts │ │ ├── Plug2Fill.ts │ │ ├── Plug2Line.ts │ │ ├── PlugFill.ts │ │ ├── PlugLine.ts │ │ ├── Polaroid2Fill.ts │ │ ├── Polaroid2Line.ts │ │ ├── PolaroidFill.ts │ │ ├── PolaroidLine.ts │ │ ├── PoliceCarFill.ts │ │ ├── PoliceCarLine.ts │ │ ├── PriceTag2Fill.ts │ │ ├── PriceTag2Line.ts │ │ ├── PriceTag3Fill.ts │ │ ├── PriceTag3Line.ts │ │ ├── PriceTagFill.ts │ │ ├── PriceTagLine.ts │ │ ├── PrinterFill.ts │ │ ├── PrinterLine.ts │ │ ├── ProductHuntFill.ts │ │ ├── ProductHuntLine.ts │ │ ├── ProfileFill.ts │ │ ├── ProfileLine.ts │ │ ├── Projector2Fill.ts │ │ ├── Projector2Line.ts │ │ ├── ProjectorFill.ts │ │ ├── ProjectorLine.ts │ │ ├── QqFill.ts │ │ ├── QqLine.ts │ │ ├── QrCodeFill.ts │ │ ├── QrCodeLine.ts │ │ ├── QrScan2Fill.ts │ │ ├── QrScan2Line.ts │ │ ├── QrScanFill.ts │ │ ├── QrScanLine.ts │ │ ├── QuestionAnswerFill.ts │ │ ├── QuestionAnswerLine.ts │ │ ├── QuestionFill.ts │ │ ├── QuestionLine.ts │ │ ├── QuestionnaireFill.ts │ │ ├── QuestionnaireLine.ts │ │ ├── QuillPenFill.ts │ │ ├── QuillPenLine.ts │ │ ├── RadarFill.ts │ │ ├── RadarLine.ts │ │ ├── Radio2Fill.ts │ │ ├── Radio2Line.ts │ │ ├── RadioButtonFill.ts │ │ ├── RadioButtonLine.ts │ │ ├── RadioFill.ts │ │ ├── RadioLine.ts │ │ ├── RainyFill.ts │ │ ├── RainyLine.ts │ │ ├── ReactjsFill.ts │ │ ├── ReactjsLine.ts │ │ ├── RecordCircleFill.ts │ │ ├── RecordCircleLine.ts │ │ ├── RecordMailFill.ts │ │ ├── RecordMailLine.ts │ │ ├── RedPacketFill.ts │ │ ├── RedPacketLine.ts │ │ ├── RedditFill.ts │ │ ├── RedditLine.ts │ │ ├── RefreshFill.ts │ │ ├── RefreshLine.ts │ │ ├── RefundFill.ts │ │ ├── RefundLine.ts │ │ ├── RemixiconFill.ts │ │ ├── RemixiconLine.ts │ │ ├── Repeat2Fill.ts │ │ ├── Repeat2Line.ts │ │ ├── RepeatFill.ts │ │ ├── RepeatLine.ts │ │ ├── RepeatOneFill.ts │ │ ├── RepeatOneLine.ts │ │ ├── ReplyFill.ts │ │ ├── ReplyLine.ts │ │ ├── ReservedFill.ts │ │ ├── ReservedLine.ts │ │ ├── RestartFill.ts │ │ ├── RestartLine.ts │ │ ├── Restaurant2Fill.ts │ │ ├── Restaurant2Line.ts │ │ ├── RestaurantFill.ts │ │ ├── RestaurantLine.ts │ │ ├── RewindFill.ts │ │ ├── RewindLine.ts │ │ ├── RewindMiniFill.ts │ │ ├── RewindMiniLine.ts │ │ ├── RhythmFill.ts │ │ ├── RhythmLine.ts │ │ ├── RidingFill.ts │ │ ├── RidingLine.ts │ │ ├── RoadMapFill.ts │ │ ├── RoadMapLine.ts │ │ ├── RoadsterFill.ts │ │ ├── RoadsterLine.ts │ │ ├── RobotFill.ts │ │ ├── RobotLine.ts │ │ ├── Rocket2Fill.ts │ │ ├── Rocket2Line.ts │ │ ├── RocketFill.ts │ │ ├── RocketLine.ts │ │ ├── RouteFill.ts │ │ ├── RouteLine.ts │ │ ├── RouterFill.ts │ │ ├── RouterLine.ts │ │ ├── RssFill.ts │ │ ├── RssLine.ts │ │ ├── Ruler2Fill.ts │ │ ├── Ruler2Line.ts │ │ ├── RulerFill.ts │ │ ├── RulerLine.ts │ │ ├── RunFill.ts │ │ ├── RunLine.ts │ │ ├── SafariFill.ts │ │ ├── SafariLine.ts │ │ ├── Safe2Fill.ts │ │ ├── Safe2Line.ts │ │ ├── SafeFill.ts │ │ ├── SafeLine.ts │ │ ├── SailboatFill.ts │ │ ├── SailboatLine.ts │ │ ├── Save2Fill.ts │ │ ├── Save2Line.ts │ │ ├── Save3Fill.ts │ │ ├── Save3Line.ts │ │ ├── SaveFill.ts │ │ ├── SaveLine.ts │ │ ├── Scan2Fill.ts │ │ ├── Scan2Line.ts │ │ ├── ScanFill.ts │ │ ├── ScanLine.ts │ │ ├── Scissors2Fill.ts │ │ ├── Scissors2Line.ts │ │ ├── ScissorsCutFill.ts │ │ ├── ScissorsCutLine.ts │ │ ├── ScissorsFill.ts │ │ ├── ScissorsLine.ts │ │ ├── Screenshot2Fill.ts │ │ ├── Screenshot2Line.ts │ │ ├── ScreenshotFill.ts │ │ ├── ScreenshotLine.ts │ │ ├── SdCardFill.ts │ │ ├── SdCardLine.ts │ │ ├── SdCardMiniFill.ts │ │ ├── SdCardMiniLine.ts │ │ ├── Search2Fill.ts │ │ ├── Search2Line.ts │ │ ├── SearchEyeFill.ts │ │ ├── SearchEyeLine.ts │ │ ├── SearchFill.ts │ │ ├── SearchLine.ts │ │ ├── SendPlane2Fill.ts │ │ ├── SendPlane2Line.ts │ │ ├── SendPlaneFill.ts │ │ ├── SendPlaneLine.ts │ │ ├── SensorFill.ts │ │ ├── SensorLine.ts │ │ ├── Separator.ts │ │ ├── ServerFill.ts │ │ ├── ServerLine.ts │ │ ├── Settings2Fill.ts │ │ ├── Settings2Line.ts │ │ ├── Settings3Fill.ts │ │ ├── Settings3Line.ts │ │ ├── Settings4Fill.ts │ │ ├── Settings4Line.ts │ │ ├── Settings5Fill.ts │ │ ├── Settings5Line.ts │ │ ├── Settings6Fill.ts │ │ ├── Settings6Line.ts │ │ ├── SettingsFill.ts │ │ ├── SettingsLine.ts │ │ ├── Shape2Fill.ts │ │ ├── Shape2Line.ts │ │ ├── ShapeFill.ts │ │ ├── ShapeLine.ts │ │ ├── ShareBoxFill.ts │ │ ├── ShareBoxLine.ts │ │ ├── ShareCircleFill.ts │ │ ├── ShareCircleLine.ts │ │ ├── ShareFill.ts │ │ ├── ShareForward2Fill.ts │ │ ├── ShareForward2Line.ts │ │ ├── ShareForwardBoxFill.ts │ │ ├── ShareForwardBoxLine.ts │ │ ├── ShareForwardFill.ts │ │ ├── ShareForwardLine.ts │ │ ├── ShareLine.ts │ │ ├── ShieldCrossFill.ts │ │ ├── ShieldCrossLine.ts │ │ ├── ShieldFill.ts │ │ ├── ShieldFlashFill.ts │ │ ├── ShieldFlashLine.ts │ │ ├── ShieldLine.ts │ │ ├── ShieldStarFill.ts │ │ ├── ShieldStarLine.ts │ │ ├── ShieldUserFill.ts │ │ ├── ShieldUserLine.ts │ │ ├── Ship2Fill.ts │ │ ├── Ship2Line.ts │ │ ├── ShipFill.ts │ │ ├── ShipLine.ts │ │ ├── ShirtFill.ts │ │ ├── ShirtLine.ts │ │ ├── ShoppingBag2Fill.ts │ │ ├── ShoppingBag2Line.ts │ │ ├── ShoppingBag3Fill.ts │ │ ├── ShoppingBag3Line.ts │ │ ├── ShoppingBagFill.ts │ │ ├── ShoppingBagLine.ts │ │ ├── ShoppingCart2Fill.ts │ │ ├── ShoppingCart2Line.ts │ │ ├── ShoppingCartFill.ts │ │ ├── ShoppingCartLine.ts │ │ ├── ShowersFill.ts │ │ ├── ShowersLine.ts │ │ ├── ShuffleFill.ts │ │ ├── ShuffleLine.ts │ │ ├── ShutDownFill.ts │ │ ├── ShutDownLine.ts │ │ ├── SideBarFill.ts │ │ ├── SideBarLine.ts │ │ ├── SignalTowerFill.ts │ │ ├── SignalTowerLine.ts │ │ ├── SimCard2Fill.ts │ │ ├── SimCard2Line.ts │ │ ├── SimCardFill.ts │ │ ├── SimCardLine.ts │ │ ├── SingleQuotesL.ts │ │ ├── SingleQuotesR.ts │ │ ├── SipFill.ts │ │ ├── SipLine.ts │ │ ├── SkipBackFill.ts │ │ ├── SkipBackLine.ts │ │ ├── SkipBackMiniFill.ts │ │ ├── SkipBackMiniLine.ts │ │ ├── SkipForwardFill.ts │ │ ├── SkipForwardLine.ts │ │ ├── SkipForwardMiniFill.ts │ │ ├── SkipForwardMiniLine.ts │ │ ├── SkullFill.ts │ │ ├── SkullLine.ts │ │ ├── SkypeFill.ts │ │ ├── SkypeLine.ts │ │ ├── SlackFill.ts │ │ ├── SlackLine.ts │ │ ├── SliceFill.ts │ │ ├── SliceLine.ts │ │ ├── Slideshow2Fill.ts │ │ ├── Slideshow2Line.ts │ │ ├── Slideshow3Fill.ts │ │ ├── Slideshow3Line.ts │ │ ├── Slideshow4Fill.ts │ │ ├── Slideshow4Line.ts │ │ ├── SlideshowFill.ts │ │ ├── SlideshowLine.ts │ │ ├── SmartphoneFill.ts │ │ ├── SmartphoneLine.ts │ │ ├── SnapchatFill.ts │ │ ├── SnapchatLine.ts │ │ ├── SnowyFill.ts │ │ ├── SnowyLine.ts │ │ ├── SoundModuleFill.ts │ │ ├── SoundModuleLine.ts │ │ ├── Space.ts │ │ ├── SpaceShipFill.ts │ │ ├── SpaceShipLine.ts │ │ ├── Spam2Fill.ts │ │ ├── Spam2Line.ts │ │ ├── Spam3Fill.ts │ │ ├── Spam3Line.ts │ │ ├── SpamFill.ts │ │ ├── SpamLine.ts │ │ ├── Speaker2Fill.ts │ │ ├── Speaker2Line.ts │ │ ├── Speaker3Fill.ts │ │ ├── Speaker3Line.ts │ │ ├── SpeakerFill.ts │ │ ├── SpeakerLine.ts │ │ ├── SpeedFill.ts │ │ ├── SpeedLine.ts │ │ ├── SpeedMiniFill.ts │ │ ├── SpeedMiniLine.ts │ │ ├── SpotifyFill.ts │ │ ├── SpotifyLine.ts │ │ ├── StackFill.ts │ │ ├── StackLine.ts │ │ ├── StackOverflowFill.ts │ │ ├── StackOverflowLine.ts │ │ ├── StarFill.ts │ │ ├── StarHalfFill.ts │ │ ├── StarHalfLine.ts │ │ ├── StarHalfSFill.ts │ │ ├── StarHalfSLine.ts │ │ ├── StarLine.ts │ │ ├── StarSFill.ts │ │ ├── StarSLine.ts │ │ ├── StockFill.ts │ │ ├── StockLine.ts │ │ ├── StopCircleFill.ts │ │ ├── StopCircleLine.ts │ │ ├── StopFill.ts │ │ ├── StopLine.ts │ │ ├── StopMiniFill.ts │ │ ├── StopMiniLine.ts │ │ ├── Store2Fill.ts │ │ ├── Store2Line.ts │ │ ├── Store3Fill.ts │ │ ├── Store3Line.ts │ │ ├── StoreFill.ts │ │ ├── StoreLine.ts │ │ ├── Strikethrough.ts │ │ ├── Strikethrough2.ts │ │ ├── Subscript.ts │ │ ├── Subscript2.ts │ │ ├── SubtractFill.ts │ │ ├── SubtractLine.ts │ │ ├── SubwayFill.ts │ │ ├── SubwayLine.ts │ │ ├── SunCloudyFill.ts │ │ ├── SunCloudyLine.ts │ │ ├── SunFill.ts │ │ ├── SunFoggyFill.ts │ │ ├── SunFoggyLine.ts │ │ ├── SunLine.ts │ │ ├── Superscript.ts │ │ ├── Superscript2.ts │ │ ├── SurroundSoundFill.ts │ │ ├── SurroundSoundLine.ts │ │ ├── SwapBoxFill.ts │ │ ├── SwapBoxLine.ts │ │ ├── SwapFill.ts │ │ ├── SwapLine.ts │ │ ├── SwitchFill.ts │ │ ├── SwitchLine.ts │ │ ├── TBoxFill.ts │ │ ├── TBoxLine.ts │ │ ├── TShirtFill.ts │ │ ├── TShirtLine.ts │ │ ├── Table2.ts │ │ ├── TableFill.ts │ │ ├── TableLine.ts │ │ ├── TabletFill.ts │ │ ├── TabletLine.ts │ │ ├── TaobaoFill.ts │ │ ├── TaobaoLine.ts │ │ ├── TapeFill.ts │ │ ├── TapeLine.ts │ │ ├── TaskFill.ts │ │ ├── TaskLine.ts │ │ ├── TaxiFill.ts │ │ ├── TaxiLine.ts │ │ ├── TelegramFill.ts │ │ ├── TelegramLine.ts │ │ ├── TempColdFill.ts │ │ ├── TempColdLine.ts │ │ ├── TempHotFill.ts │ │ ├── TempHotLine.ts │ │ ├── TerminalBoxFill.ts │ │ ├── TerminalBoxLine.ts │ │ ├── TerminalFill.ts │ │ ├── TerminalLine.ts │ │ ├── TerminalWindowFill.ts │ │ ├── TerminalWindowLine.ts │ │ ├── Text.ts │ │ ├── TextDirectionL.ts │ │ ├── TextDirectionR.ts │ │ ├── TextSpacing.ts │ │ ├── TextWrap.ts │ │ ├── ThumbDownFill.ts │ │ ├── ThumbDownLine.ts │ │ ├── ThumbUpFill.ts │ │ ├── ThumbUpLine.ts │ │ ├── ThunderstormsFill.ts │ │ ├── ThunderstormsLine.ts │ │ ├── TimeFill.ts │ │ ├── TimeLine.ts │ │ ├── Timer2Fill.ts │ │ ├── Timer2Line.ts │ │ ├── TimerFill.ts │ │ ├── TimerFlashFill.ts │ │ ├── TimerFlashLine.ts │ │ ├── TimerLine.ts │ │ ├── TodoFill.ts │ │ ├── TodoLine.ts │ │ ├── ToggleFill.ts │ │ ├── ToggleLine.ts │ │ ├── TornadoFill.ts │ │ ├── TornadoLine.ts │ │ ├── TrafficLightFill.ts │ │ ├── TrafficLightLine.ts │ │ ├── TrainFill.ts │ │ ├── TrainLine.ts │ │ ├── TravestiFill.ts │ │ ├── TravestiLine.ts │ │ ├── TreasureMapFill.ts │ │ ├── TreasureMapLine.ts │ │ ├── TrelloFill.ts │ │ ├── TrelloLine.ts │ │ ├── TrophyFill.ts │ │ ├── TrophyLine.ts │ │ ├── TruckFill.ts │ │ ├── TruckLine.ts │ │ ├── TumblrFill.ts │ │ ├── TumblrLine.ts │ │ ├── Tv2Fill.ts │ │ ├── Tv2Line.ts │ │ ├── TvFill.ts │ │ ├── TvLine.ts │ │ ├── TwitchFill.ts │ │ ├── TwitchLine.ts │ │ ├── TwitterFill.ts │ │ ├── TwitterLine.ts │ │ ├── UDiskFill.ts │ │ ├── UDiskLine.ts │ │ ├── UbuntuFill.ts │ │ ├── UbuntuLine.ts │ │ ├── UmbrellaFill.ts │ │ ├── UmbrellaLine.ts │ │ ├── Underline.ts │ │ ├── Upload2Fill.ts │ │ ├── Upload2Line.ts │ │ ├── UploadCloudFill.ts │ │ ├── UploadCloudLine.ts │ │ ├── UploadFill.ts │ │ ├── UploadLine.ts │ │ ├── User2Fill.ts │ │ ├── User2Line.ts │ │ ├── User3Fill.ts │ │ ├── User3Line.ts │ │ ├── User4Fill.ts │ │ ├── User4Line.ts │ │ ├── User5Fill.ts │ │ ├── User5Line.ts │ │ ├── UserAddFill.ts │ │ ├── UserAddLine.ts │ │ ├── UserFill.ts │ │ ├── UserFollowFill.ts │ │ ├── UserFollowLine.ts │ │ ├── UserLine.ts │ │ ├── UserLocationFill.ts │ │ ├── UserLocationLine.ts │ │ ├── UserReceived2Fill.ts │ │ ├── UserReceived2Line.ts │ │ ├── UserReceivedFill.ts │ │ ├── UserReceivedLine.ts │ │ ├── UserSearchFill.ts │ │ ├── UserSearchLine.ts │ │ ├── UserSettingsFill.ts │ │ ├── UserSettingsLine.ts │ │ ├── UserShared2Fill.ts │ │ ├── UserShared2Line.ts │ │ ├── UserSharedFill.ts │ │ ├── UserSharedLine.ts │ │ ├── UserSmileFill.ts │ │ ├── UserSmileLine.ts │ │ ├── UserStarFill.ts │ │ ├── UserStarLine.ts │ │ ├── UserUnfollowFill.ts │ │ ├── UserUnfollowLine.ts │ │ ├── UserVoiceFill.ts │ │ ├── UserVoiceLine.ts │ │ ├── VideoChatFill.ts │ │ ├── VideoChatLine.ts │ │ ├── VideoFill.ts │ │ ├── VideoLine.ts │ │ ├── Vidicon2Fill.ts │ │ ├── Vidicon2Line.ts │ │ ├── VidiconFill.ts │ │ ├── VidiconLine.ts │ │ ├── VipCrown2Fill.ts │ │ ├── VipCrown2Line.ts │ │ ├── VipCrownFill.ts │ │ ├── VipCrownLine.ts │ │ ├── VipDiamondFill.ts │ │ ├── VipDiamondLine.ts │ │ ├── VipFill.ts │ │ ├── VipLine.ts │ │ ├── VisaFill.ts │ │ ├── VisaLine.ts │ │ ├── VoiceprintFill.ts │ │ ├── VoiceprintLine.ts │ │ ├── VolumeDownFill.ts │ │ ├── VolumeDownLine.ts │ │ ├── VolumeMuteFill.ts │ │ ├── VolumeMuteLine.ts │ │ ├── VolumeUpFill.ts │ │ ├── VolumeUpLine.ts │ │ ├── VuejsFill.ts │ │ ├── VuejsLine.ts │ │ ├── WalkFill.ts │ │ ├── WalkLine.ts │ │ ├── Wallet2Fill.ts │ │ ├── Wallet2Line.ts │ │ ├── Wallet3Fill.ts │ │ ├── Wallet3Line.ts │ │ ├── WalletFill.ts │ │ ├── WalletLine.ts │ │ ├── WaterFlashFill.ts │ │ ├── WaterFlashLine.ts │ │ ├── WebcamFill.ts │ │ ├── WebcamLine.ts │ │ ├── Wechat2Fill.ts │ │ ├── Wechat2Line.ts │ │ ├── WechatFill.ts │ │ ├── WechatLine.ts │ │ ├── WechatPayFill.ts │ │ ├── WechatPayLine.ts │ │ ├── WeiboFill.ts │ │ ├── WeiboLine.ts │ │ ├── WhatsappFill.ts │ │ ├── WhatsappLine.ts │ │ ├── WifiFill.ts │ │ ├── WifiLine.ts │ │ ├── Window2Fill.ts │ │ ├── Window2Line.ts │ │ ├── WindowFill.ts │ │ ├── WindowLine.ts │ │ ├── WindowsFill.ts │ │ ├── WindowsLine.ts │ │ ├── WindyFill.ts │ │ ├── WindyLine.ts │ │ ├── WomenFill.ts │ │ ├── WomenLine.ts │ │ ├── XboxFill.ts │ │ ├── XboxLine.ts │ │ ├── XingFill.ts │ │ ├── XingLine.ts │ │ ├── YoutubeFill.ts │ │ ├── YoutubeLine.ts │ │ ├── ZcoolFill.ts │ │ ├── ZcoolLine.ts │ │ ├── ZhihuFill.ts │ │ ├── ZhihuLine.ts │ │ ├── ZoomInFill.ts │ │ ├── ZoomInLine.ts │ │ ├── ZoomOutFill.ts │ │ ├── ZoomOutLine.ts │ │ ├── index.ts │ │ └── utils │ │ │ └── createIcon.ts │ ├── template │ └── tsconfig.json ├── fluent-windows-styles │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── breakpoints.ts │ │ ├── createGlobalStyle.tsx │ │ ├── index.ts │ │ └── themeGet.ts │ └── tsconfig.json └── fluent-windows │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ ├── Box │ │ ├── Box.styled.ts │ │ ├── Box.tsx │ │ ├── Box.type.ts │ │ ├── __tests__ │ │ │ ├── Box.test.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Box.test.tsx.snap │ │ │ ├── background.test.tsx │ │ │ ├── border.test.tsx │ │ │ ├── color.test.tsx │ │ │ ├── flexbox.test.tsx │ │ │ ├── grid.test.tsx │ │ │ ├── layout.test.tsx │ │ │ ├── position.test.tsx │ │ │ ├── shadow.test.tsx │ │ │ ├── space.test.tsx │ │ │ └── typography.test.tsx │ │ ├── index.ts │ │ └── omitProps.ts │ ├── Button │ │ ├── Button.styled.ts │ │ ├── Button.tsx │ │ ├── Button.type.ts │ │ ├── __tests__ │ │ │ ├── Button.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Button.test.tsx.snap │ │ └── index.ts │ ├── Card │ │ ├── Card.styled.ts │ │ ├── Card.tsx │ │ ├── Card.type.ts │ │ ├── __tests__ │ │ │ ├── Card.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Card.test.tsx.snap │ │ ├── components │ │ │ ├── Actions.tsx │ │ │ ├── Content.tsx │ │ │ └── Header.tsx │ │ └── index.ts │ ├── Checkbox │ │ ├── Checkbox.styled.ts │ │ ├── Checkbox.tsx │ │ ├── Checkbox.type.ts │ │ ├── __tests__ │ │ │ └── Checkbox.test.tsx │ │ └── index.ts │ ├── Command │ │ ├── Command.styled.ts │ │ ├── Command.tsx │ │ ├── Command.type.ts │ │ ├── __tests__ │ │ │ ├── Command.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Command.test.tsx.snap │ │ ├── components │ │ │ ├── Content.tsx │ │ │ └── Secondary.tsx │ │ └── index.ts │ ├── Dialog │ │ ├── Dialog.styled.ts │ │ ├── Dialog.tsx │ │ ├── Dialog.type.ts │ │ ├── components │ │ │ ├── Actions.tsx │ │ │ ├── Content.tsx │ │ │ └── Title.tsx │ │ └── index.ts │ ├── Drawer │ │ ├── Drawer.styled.ts │ │ ├── Drawer.tsx │ │ ├── Drawer.type.ts │ │ └── index.ts │ ├── Form │ │ ├── Form.context.ts │ │ ├── Form.styled.ts │ │ ├── Form.tsx │ │ ├── Form.type.ts │ │ ├── Form.validator.ts │ │ ├── components │ │ │ └── Field │ │ │ │ ├── Field.styled.ts │ │ │ │ ├── Field.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── FormLabel │ │ ├── FormLabel.styled.ts │ │ ├── FormLabel.tsx │ │ ├── FormLabel.type.ts │ │ ├── __tests__ │ │ │ ├── FormLabel.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── FormLabel.test.tsx.snap │ │ └── index.ts │ ├── IconButton │ │ ├── IconButton.styled.ts │ │ ├── IconButton.tsx │ │ ├── IconButton.type.ts │ │ ├── __tests__ │ │ │ ├── IconButton.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── IconButton.test.tsx.snap │ │ └── index.ts │ ├── Input │ │ ├── Input.styled.ts │ │ ├── Input.tsx │ │ ├── Input.type.ts │ │ ├── __tests__ │ │ │ ├── Input.test.tsx │ │ │ ├── TextArea.test.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── Input.test.tsx.snap │ │ │ │ └── TextArea.test.tsx.snap │ │ ├── components │ │ │ ├── TextArea.styled.ts │ │ │ ├── TextArea.tsx │ │ │ └── TextArea.type.ts │ │ └── index.ts │ ├── Item │ │ ├── Item.styled.ts │ │ ├── Item.tsx │ │ ├── Item.type.ts │ │ ├── __tests__ │ │ │ ├── Item.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Item.test.tsx.snap │ │ └── index.ts │ ├── ItemGroup │ │ ├── ItemGroup.styled.ts │ │ ├── ItemGroup.tsx │ │ ├── ItemGroup.type.ts │ │ ├── __tests__ │ │ │ ├── ItemGroup.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── ItemGroup.test.tsx.snap │ │ └── index.ts │ ├── List │ │ ├── List.styled.ts │ │ ├── List.tsx │ │ ├── List.type.ts │ │ ├── __tests__ │ │ │ ├── List.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── List.test.tsx.snap │ │ └── index.ts │ ├── Navigation │ │ ├── Navigation.styled.ts │ │ ├── Navigation.tsx │ │ ├── Navigation.type.ts │ │ ├── __tests__ │ │ │ ├── Navigation.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Navigation.test.tsx.snap │ │ ├── components │ │ │ ├── Content.tsx │ │ │ ├── Footer.tsx │ │ │ └── Header.tsx │ │ └── index.ts │ ├── Portal │ │ ├── Portal.tsx │ │ ├── Portal.type.ts │ │ └── index.ts │ ├── Progress │ │ ├── Progress.styled.ts │ │ ├── Progress.tsx │ │ ├── Progress.type.ts │ │ ├── __tests__ │ │ │ ├── Progress.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Progress.test.tsx.snap │ │ └── index.ts │ ├── Radio │ │ ├── Radio.styled.ts │ │ ├── Radio.tsx │ │ ├── Radio.type.ts │ │ ├── __tests__ │ │ │ └── Radio.test.tsx │ │ └── index.ts │ ├── Select │ │ ├── Select.styled.ts │ │ ├── Select.tsx │ │ ├── Select.type.ts │ │ ├── __tests__ │ │ │ ├── Select.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Select.test.tsx.snap │ │ └── index.ts │ ├── Spinner │ │ ├── Spinner.styled.ts │ │ ├── Spinner.tsx │ │ ├── Spinner.type.ts │ │ ├── __tests__ │ │ │ └── Spinner.test.tsx │ │ └── index.ts │ ├── Table │ │ ├── Table.styled.ts │ │ ├── Table.tsx │ │ ├── Table.type.ts │ │ ├── TableGroup.ts │ │ ├── __tests__ │ │ │ ├── Table.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Table.test.tsx.snap │ │ ├── components │ │ │ ├── Body.tsx │ │ │ ├── Cell.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Head.tsx │ │ │ ├── Row.tsx │ │ │ └── TableContext.ts │ │ └── index.ts │ ├── Tabs │ │ ├── Tabs.styled.ts │ │ ├── Tabs.tsx │ │ ├── Tabs.type.ts │ │ ├── __tests__ │ │ │ ├── Tabs.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Tabs.test.tsx.snap │ │ ├── components │ │ │ └── Panel.tsx │ │ └── index.ts │ ├── ThemeProvider │ │ ├── Normalize.tsx │ │ ├── ThemeProvider.tsx │ │ └── index.ts │ ├── Toast │ │ ├── Toast.styled.ts │ │ ├── Toast.tsx │ │ ├── Toast.type.ts │ │ └── index.ts │ ├── Toggle │ │ ├── Toggle.styled.ts │ │ ├── Toggle.tsx │ │ ├── Toggle.type.ts │ │ ├── __tests__ │ │ │ └── Toggle.test.tsx │ │ └── index.ts │ ├── Tooltip │ │ ├── Tooltip.styled.ts │ │ ├── Tooltip.tsx │ │ ├── Tooltip.type.ts │ │ └── index.ts │ ├── Transition │ │ ├── Transition.styled.tsx │ │ ├── Transition.tsx │ │ ├── Transition.type.ts │ │ └── index.ts │ ├── Typography │ │ ├── Typography.styled.ts │ │ ├── Typography.tsx │ │ ├── Typography.type.ts │ │ ├── __tests__ │ │ │ ├── Typography.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Typography.test.tsx.snap │ │ └── index.ts │ ├── colors │ │ ├── black.ts │ │ ├── error.ts │ │ ├── index.ts │ │ ├── primary.ts │ │ ├── standard.ts │ │ └── white.ts │ ├── index.ts │ ├── styles │ │ ├── createBreakpoint.ts │ │ ├── createColor.ts │ │ ├── createShadow.ts │ │ ├── createSize.ts │ │ ├── createSpace.ts │ │ ├── createTheme.ts │ │ ├── createTransition.ts │ │ ├── createTypography.ts │ │ ├── index.ts │ │ └── stylize.ts │ ├── test-utils │ │ ├── createRender.tsx │ │ ├── getClasses.tsx │ │ ├── getStyle.tsx │ │ └── index.ts │ ├── types │ │ └── index.d.ts │ └── utils │ │ ├── __tests__ │ │ ├── convertingColor.test.ts │ │ ├── deepMerge.test.ts │ │ └── omit.test.ts │ │ ├── convertingColor.ts │ │ ├── index.ts │ │ └── mixins.ts │ └── tsconfig.json ├── scripts └── copy-files.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.md] 4 | trim_trailing_whitespace = false 5 | 6 | [*.js] 7 | trim_trailing_whitespace = true 8 | 9 | [*] 10 | indent_style = space 11 | indent_size = 2 12 | end_of_line = lf 13 | charset = utf-8 14 | insert_final_newline = true 15 | max_line_length = 100 -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /.git 2 | /.next 3 | /coverage 4 | /tmp 5 | node_modules 6 | dist 7 | public 8 | build 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | .DS_Store 5 | *.log 6 | .vscode 7 | .idea 8 | dist 9 | compiled 10 | .awcache 11 | .rpt2_cache 12 | public 13 | .cache 14 | build 15 | design 16 | local_test.tsx 17 | test.bash 18 | .env 19 | .env.build 20 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /.git 2 | /.next 3 | /coverage 4 | /tmp 5 | build 6 | node_modules 7 | package-lock.json 8 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "semi": false 4 | } 5 | -------------------------------------------------------------------------------- /docs/.eslintignore: -------------------------------------------------------------------------------- 1 | /packages/fluent-windows/build 2 | /.git 3 | /.next 4 | /coverage 5 | /tmp 6 | node_modules 7 | dist 8 | public 9 | build 10 | -------------------------------------------------------------------------------- /docs/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.eslintrc" 3 | } 4 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .now -------------------------------------------------------------------------------- /docs/gatsby-browser.js: -------------------------------------------------------------------------------- 1 | export const onServiceWorkerUpdateReady = () => { 2 | const answer = window.confirm( 3 | `This application has been updated. ` + `Reload to display the latest version?` 4 | ) 5 | 6 | if (answer === true) { 7 | window.location.reload() 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /docs/gatsby-ssr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Implement Gatsby's SSR (Server Side Rendering) APIs in this file. 3 | * 4 | * See: https://www.gatsbyjs.org/docs/ssr-apis/ 5 | */ 6 | 7 | // You can delete this file if you're not using it 8 | -------------------------------------------------------------------------------- /docs/src/docs/components/Icon/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Icon 3 | components: Icon 4 | api: true 5 | langKey: "en" 6 | --- 7 | 8 | ### Props 9 | 10 | | Name | Type | Default | Description | 11 | | --- | --- | --- | --- | 12 | | className | string | | The svg className. | 13 | | style | CSSProperties | | The svg styles. | 14 | -------------------------------------------------------------------------------- /docs/src/docs/components/Icon/api.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Icon(图标) 3 | components: Icon 4 | api: true 5 | langKey: "zh" 6 | --- 7 | 8 | ### Props 9 | 10 | | Name | Type | Default | Description | 11 | | --- | --- | --- | --- | 12 | | className | string | | Svg 的 className。 | 13 | | style | CSSProperties | | Svg 的 styles。 | 14 | -------------------------------------------------------------------------------- /docs/src/pages/404.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | 3 | import Layout from '../components/layout' 4 | import SEO from '../components/seo' 5 | 6 | const NotFoundPage = () => ( 7 | 8 | 9 |

NOT FOUND

10 |
11 | ) 12 | 13 | export default NotFoundPage 14 | -------------------------------------------------------------------------------- /docs/src/translations/index.ts: -------------------------------------------------------------------------------- 1 | import en from './translations' 2 | import zh from './translations-zh' 3 | 4 | export { en, zh } 5 | 6 | export type LangKey = 'en' | 'zh' 7 | 8 | export const langKeys = { 9 | en: '🇺🇸 English', 10 | zh: '🇨🇳 中文' 11 | } 12 | 13 | export const LANGUAGES = ['en', 'zh'] 14 | -------------------------------------------------------------------------------- /docs/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './theme' 2 | export * from './helpers' 3 | -------------------------------------------------------------------------------- /docs/static/images/fluent-windows-pure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent-org/fluent-windows/23bde6d0052b38f432bbf474261b3a4e43bffc5e/docs/static/images/fluent-windows-pure.png -------------------------------------------------------------------------------- /docs/static/images/fluent-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent-org/fluent-windows/23bde6d0052b38f432bbf474261b3a4e43bffc5e/docs/static/images/fluent-windows.png -------------------------------------------------------------------------------- /docs/static/images/icon-arrangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent-org/fluent-windows/23bde6d0052b38f432bbf474261b3a4e43bffc5e/docs/static/images/icon-arrangement.png -------------------------------------------------------------------------------- /docs/static/images/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent-org/fluent-windows/23bde6d0052b38f432bbf474261b3a4e43bffc5e/docs/static/images/wall.jpg -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const base = require('./jest.config.base.js') 3 | 4 | module.exports = { 5 | ...base, 6 | rootDir: path.resolve(__dirname, './'), 7 | projects: ['/packages/*/jest.config.js'], 8 | coverageDirectory: '/coverage/' 9 | } 10 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/jest.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | const base = require('../../jest.config.base.') 4 | const pack = require('./package.json') 5 | 6 | module.exports = { 7 | ...base, 8 | rootDir: path.resolve(__dirname, './'), 9 | name: pack.name, 10 | displayName: pack.name 11 | } 12 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useAction/index.ts: -------------------------------------------------------------------------------- 1 | export { default as useAction } from './useAction' 2 | export { default as useDispatch } from './useDispatch' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useAction/useDispatch.ts: -------------------------------------------------------------------------------- 1 | import { Dispatch, dispatch } from './subscribers' 2 | 3 | function useDispatch(param: Dispatch): typeof dispatch { 4 | return dispatch.bind(undefined, param) 5 | } 6 | 7 | export default useDispatch 8 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useClick/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useClick' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useClickOutside/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useClickOutside' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useFocus/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useFocus' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useGlobal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useGlobal' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useHover/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useHover' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useMedia/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useMedia' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useMessage' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/usePopper/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePopper' 2 | export { default } from './usePopper' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useReveal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useReveal' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useTouch/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useTouch' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/src/useUpdateEffect/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useUpdateEffect' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows-hooks/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "include": ["src/**/*"] 4 | } 5 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/jest.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | const base = require('../../jest.config.base.') 4 | const pack = require('./package.json') 5 | 6 | module.exports = { 7 | ...base, 8 | rootDir: path.resolve(__dirname, './'), 9 | name: pack.name, 10 | displayName: pack.name 11 | } 12 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/bank-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/building-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/building-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/building-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/building-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/building-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/government-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-7-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-8-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/home-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/hospital-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/hotel-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Buildings/store-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-box-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-grouped-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-grouped-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-horizontal-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-horizontal-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bar-chart-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bookmark-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/bookmark-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/calendar-event-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/calendar-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/flag-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/flag-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/flag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/honour-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/inbox-archive-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/inbox-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/reply-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/send-plane-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/slideshow-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/slideshow-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/slideshow-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/slideshow-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/slideshow-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/window-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/window-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/window-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Business/window-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-1-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-download-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-forward-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-new-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-new-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-smile-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/chat-upload-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/feedback-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/message-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/message-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/message-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/message-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Communication/video-chat-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/brackets-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/brackets-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/css3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/cursor-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/git-commit-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/git-commit-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/terminal-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Development/terminal-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/battery-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/battery-charge-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/battery-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/battery-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/battery-low-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/battery-low-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/cellphone-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/cellphone-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/hard-drive-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/hard-drive-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/keyboard-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/keyboard-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/macbook-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/macbook-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/save-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/save-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/save-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/sensor-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/sensor-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/server-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/server-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/sim-card-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/sim-card-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/smartphone-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/smartphone-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/tablet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/tablet-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/tv-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Device/u-disk-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/article-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/bill-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/bill-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/book-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/book-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/book-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/book-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-chart-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-info-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-list-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-list-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-mark-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-paper-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-paper-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-reduce-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-transfer-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/file-upload-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-add-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-chart-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-download-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-info-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-reduce-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-transfer-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-upload-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/folder-warning-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/numbers-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/numbers-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/pages-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Document/todo-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/align-vertically.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/font-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/font-size-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/functions.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/heading.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/indent-decrease.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/indent-increase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/line-height.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/list-check-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/list-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/separator.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/space.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/strikethrough-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/text-direction-l.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/text-direction-r.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/text-spacing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/text-wrap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Editor/underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/bank-card-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/bank-card-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/bank-card-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/bank-card-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/copper-coin-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/copper-diamond-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/exchange-box-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/exchange-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/increase-decrease-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/price-tag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/refund-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/refund-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/shopping-bag-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/shopping-bag-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/stock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/stock-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/trophy-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/vip-crown-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/vip-crown-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/wallet-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/wallet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/wallet-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Finance/water-flash-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Life/door-lock-box-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Life/door-lock-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Life/key-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Life/outlet-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Life/outlet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Life/reserved-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/douban-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/facebook-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/netflix-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/patreon-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/vuejs-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/vuejs-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/windows-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Logos/windows-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/compass-discover-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/compass-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/cup-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/goblet-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/goblet-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/guide-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/hotel-bed-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-5-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-5-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-add-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-time-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/map-pin-time-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/navigation-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/oil-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/parking-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/parking-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/plane-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/plane-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Map/restaurant-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/dvd-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/dvd-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/fullscreen-exit-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/fullscreen-exit-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/fullscreen-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/fullscreen-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/landscape-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/music-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/music-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/music-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/music-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/notification-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/notification-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/notification-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/notification-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/notification-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/order-play-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/order-play-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/pause-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/pause-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/pause-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/pause-mini-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/pause-mini-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/play-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/play-list-add-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/play-list-add-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/play-list-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/play-list-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/play-mini-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/record-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/repeat-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/repeat-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/rhythm-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/rhythm-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/skip-back-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/skip-forward-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/sound-module-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/sound-module-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/stop-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/stop-circle-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/stop-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/stop-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/stop-mini-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/stop-mini-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/voiceprint-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Media/voiceprint-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/add-box-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/add-box-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/add-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/add-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/add-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/alert-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-down-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-down-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-down-s-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-down-s-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-down-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-left-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-left-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-right-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-right-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-up-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-drop-up-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-go-back-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-go-back-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-go-forward-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-go-forward-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-down-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-s-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-s-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-up-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-left-up-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-down-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-s-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-s-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-up-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-right-up-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-up-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-up-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-up-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-up-s-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/arrow-up-s-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/barcode-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/barcode-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/check-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/check-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/checkbox-blank-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/checkbox-blank-circle-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/checkbox-blank-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/checkbox-blank-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/checkbox-indeterminate-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/checkbox-indeterminate-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/close-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/close-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/dashboard-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/dashboard-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-6-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-6-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-7-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/delete-bin-7-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/divide-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/divide-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/download-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/download-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/download-cloud-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/download-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/download-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/error-warning-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/filter-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/filter-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/filter-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/filter-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/filter-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/filter-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/function-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/function-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/heart-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/indeterminate-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/information-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/loader-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/loader-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/loader-5-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/loader-5-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/login-box-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/login-box-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/login-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/logout-box-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/logout-box-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/logout-circle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/menu-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/menu-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/menu-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/menu-3-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/menu-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/menu-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/qr-scan-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/qr-scan-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/qr-scan-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/radio-button-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/rss-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/rss-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/search-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/settings-6-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/settings-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/share-box-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/share-forward-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/shut-down-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/side-bar-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/side-bar-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/spam-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/spam-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/spam-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/star-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/star-s-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/subtract-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/subtract-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/time-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/time-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/timer-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/timer-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/toggle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/toggle-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/upload-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/upload-2-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/upload-cloud-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/upload-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/System/upload-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/emotion-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/genderless-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/men-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/men-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/travesti-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/user-3-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/user-4-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/user-4-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/user-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/user-smile-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/User/women-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/cloud-windy-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/cloudy-2-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/cloudy-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/drizzle-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/flashlight-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/flashlight-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/foggy-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/heavy-showers-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/mist-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/moon-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/showers-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/temp-cold-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/temp-hot-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/tornado-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/remix/Weather/tornado-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/template: -------------------------------------------------------------------------------- 1 | import createIcon, { JSX } from './utils/createIcon' 2 | 3 | export const jsx: JSX = {{jsx}} 4 | 5 | export default createIcon(jsx, '{{componentName}}') 6 | -------------------------------------------------------------------------------- /packages/fluent-windows-icons/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "include": ["src/**/*"] 4 | } 5 | -------------------------------------------------------------------------------- /packages/fluent-windows-styles/jest.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | const base = require('../../jest.config.base.') 4 | const pack = require('./package.json') 5 | 6 | module.exports = { 7 | ...base, 8 | rootDir: path.resolve(__dirname, './'), 9 | name: pack.name, 10 | displayName: pack.name 11 | } 12 | -------------------------------------------------------------------------------- /packages/fluent-windows-styles/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from 'react-jss' 2 | export * from 'styled-system' 3 | 4 | export * from './breakpoints' 5 | export * from './themeGet' 6 | export * from './createGlobalStyle' 7 | -------------------------------------------------------------------------------- /packages/fluent-windows-styles/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "include": ["src/**/*"] 4 | } 5 | -------------------------------------------------------------------------------- /packages/fluent-windows/jest.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | 3 | const base = require('../../jest.config.base.') 4 | const pack = require('./package.json') 5 | 6 | module.exports = { 7 | ...base, 8 | rootDir: path.resolve(__dirname, './'), 9 | name: pack.name, 10 | displayName: pack.name 11 | } 12 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Box/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Box' 2 | export * from './Box.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button' 2 | export * from './Button.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Card/components/Content.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | import Box from '../../Box' 3 | 4 | const Content: React.FC = (props): React.ReactElement => { 5 | return 6 | } 7 | 8 | Content.displayName = 'FCardContent' 9 | 10 | export default Content 11 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Card/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Card' 2 | export * from './Card.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Checkbox' 2 | export * from './Checkbox.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Command/components/Content.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | 3 | const Content: React.FC = (props): React.ReactElement => { 4 | return
5 | } 6 | 7 | Content.displayName = `FCommandContent` 8 | 9 | export default Content 10 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Command/components/Secondary.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react' 2 | 3 | const Secondary: React.FC = (props): React.ReactElement => { 4 | return
5 | } 6 | 7 | Secondary.displayName = `FCommandSecondary` 8 | 9 | export default Secondary 10 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Command/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Command' 2 | export * from './Command.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Dialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Dialog' 2 | export * from './Dialog.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Drawer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Drawer' 2 | export * from './Drawer.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Form/Form.context.ts: -------------------------------------------------------------------------------- 1 | import { createContext } from 'react' 2 | 3 | interface FormContextType { 4 | value: any 5 | dispatch: React.Dispatch 6 | descriptor: any 7 | } 8 | 9 | // @ts-ignore 10 | export const FormContext = createContext(null) 11 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Form/components/Field/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Field' 2 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Form/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Form' 2 | export * from './Form.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/FormLabel/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FormLabel' 2 | export * from './FormLabel.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/IconButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './IconButton' 2 | export * from './IconButton.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Input/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Input' 2 | export * from './Input.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Item/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Item' 2 | export * from './Item.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/ItemGroup/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ItemGroup' 2 | export * from './ItemGroup.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/List/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './List' 2 | export * from './List.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Navigation/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Navigation' 2 | export * from './Navigation.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Portal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Portal' 2 | export * from './Portal.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Progress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Progress' 2 | export * from './Progress.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Radio/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Radio' 2 | export * from './Radio.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Select/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Select' 2 | export * from './Select.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner' 2 | export * from './Spinner.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Table/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Table' 2 | export * from './TableGroup' 3 | export * from './Table.type' 4 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Tabs/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Tabs' 2 | export * from './Tabs.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/ThemeProvider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ThemeProvider' 2 | export { default as Normalize } from './Normalize' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Toast/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Toast' 2 | export * from './Toast.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Toggle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Toggle' 2 | export * from './Toggle.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Tooltip' 2 | export * from './Tooltip.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Transition/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Transition' 2 | export * from './Transition.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/Typography/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Typography' 2 | export * from './Typography.type' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/colors/black.ts: -------------------------------------------------------------------------------- 1 | import { Color } from './index' 2 | 3 | const black: Color = { 4 | default: '#000000' 5 | } 6 | 7 | export default black 8 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/colors/error.ts: -------------------------------------------------------------------------------- 1 | import { Color } from './index' 2 | 3 | const error: Color = { 4 | light3: '#ffbfb3', 5 | light2: '#ff998a', 6 | light1: '#ff7161', 7 | default: '#f44336', 8 | dark1: '#cf2923', 9 | dark2: '#a81414', 10 | dark3: '#82090d' 11 | } 12 | 13 | export default error 14 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/colors/primary.ts: -------------------------------------------------------------------------------- 1 | import { Color } from './index' 2 | 3 | const primary: Color = { 4 | light3: '#78cffa', 5 | light2: '#4cb2ed', 6 | light1: '#2495e0', 7 | default: '#0078d4', 8 | dark1: '#005cad', 9 | dark2: '#004487', 10 | dark3: '#002d61' 11 | } 12 | 13 | export default primary 14 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/colors/white.ts: -------------------------------------------------------------------------------- 1 | import { Color } from './index' 2 | 3 | const white: Color = { 4 | default: '#ffffff' 5 | } 6 | 7 | export default white 8 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/styles/index.ts: -------------------------------------------------------------------------------- 1 | export * from './createTheme' 2 | export * from './stylize' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/styles/stylize.ts: -------------------------------------------------------------------------------- 1 | import { hexToRgb } from '../utils' 2 | 3 | export function lighten(hex: string, alpha: number): string { 4 | return `rgba(${hexToRgb(hex)}, ${alpha})` 5 | } 6 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/test-utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './createRender' 2 | export * from './getClasses' 3 | export * from './getStyle' 4 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'async-validator' 2 | declare module '@styled-system/prop-types' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mixins' 2 | export * from './convertingColor' 3 | -------------------------------------------------------------------------------- /packages/fluent-windows/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "include": ["src/**/*"] 4 | } 5 | --------------------------------------------------------------------------------