├── .prettierrc ├── .npmrc ├── .gitignore ├── .babelrc ├── src ├── index.ts └── components │ └── Icon │ ├── index.tsx │ └── iconList.ts ├── example └── src │ └── reactComponentLib │ ├── index.d.ts │ ├── components │ └── Icon │ │ ├── iconList.d.ts │ │ └── index.d.ts │ └── index.js ├── .storybook ├── addons.js ├── config.js └── webpack.config.js ├── test ├── setupEnzyme.ts └── components │ └── icon.component.spec.tsx ├── tsconfig.json ├── jest.config.js ├── .travis.yml ├── rollup.config.js ├── LICENSE ├── README.md ├── stories └── components │ └── icon.story.tsx └── package.json /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | registry = "https://registry.npmjs.com/" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | .rpt2_cache 5 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env", "@babel/preset-react"] 3 | } -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import Icon from "./components/Icon"; 2 | 3 | export default Icon; 4 | -------------------------------------------------------------------------------- /example/src/reactComponentLib/index.d.ts: -------------------------------------------------------------------------------- 1 | import Icon from "./components/Icon"; 2 | export default Icon; 3 | -------------------------------------------------------------------------------- /example/src/reactComponentLib/components/Icon/iconList.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: string[]; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- 1 | import "@storybook/addon-actions/register"; 2 | import "@storybook/addon-links/register"; 3 | import "@storybook/addon-knobs/register"; 4 | -------------------------------------------------------------------------------- /test/setupEnzyme.ts: -------------------------------------------------------------------------------- 1 | import * as Enzyme from "enzyme"; 2 | import * as Adapter from "enzyme-adapter-react-16"; 3 | Enzyme.configure({ adapter: new Adapter() }); 4 | -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- 1 | import { configure } from "@storybook/react"; 2 | 3 | // automatically import all files ending in *.stories.js 4 | const req = require.context("../stories/components", true, /\.story\.tsx$/); 5 | function loadStories() { 6 | req.keys().forEach(filename => req(filename)); 7 | } 8 | 9 | configure(loadStories, module); 10 | -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = ({ config }) => { 2 | config.module.rules.push({ 3 | test: /\.(ts|tsx)$/, 4 | use: [ 5 | { 6 | loader: require.resolve("awesome-typescript-loader") 7 | }, 8 | // Optional 9 | { 10 | loader: require.resolve("react-docgen-typescript-loader") 11 | } 12 | ] 13 | }); 14 | config.resolve.extensions.push(".ts", ".tsx"); 15 | return config; 16 | }; 17 | -------------------------------------------------------------------------------- /test/components/icon.component.spec.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { expect } from "chai"; 3 | import { mount } from "enzyme"; 4 | 5 | import Icon from "../../src/"; 6 | 7 | describe("Icon component", function describe() { 8 | it("should render correctly", () => { 9 | const wrapper = mount(); 10 | expect(wrapper.props()).to.eql({ 11 | type: "line", 12 | name: "home-3", 13 | size: "3x" 14 | }); 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": true, 4 | "declarationDir": "./dist", 5 | "strict": true, 6 | "allowSyntheticDefaultImports": true, 7 | "sourceMap": true, 8 | "noUnusedParameters": true, 9 | "strictNullChecks": true, 10 | "moduleResolution": "node", 11 | "noImplicitAny": true, 12 | "outDir": "./dist", 13 | "target": "es5", 14 | "jsx": "react", 15 | "resolveJsonModule": true 16 | }, 17 | "include": ["src/**/*"], 18 | "exclude": ["node_modules"] 19 | } 20 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | roots: ["/test/components"], 3 | transform: { 4 | "^.+\\.tsx?$": "ts-jest", 5 | "^.+\\.(js|jsx|mjs)$": "/node_modules/babel-jest", 6 | "\\.(scss|sass|css)$": "identity-obj-proxy" 7 | }, 8 | testRegex: "\\.spec\\.tsx$", 9 | moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], 10 | moduleNameMapper: { 11 | "\\.(css|less|scss|sss|styl)$": "/node_modules/jest-css-modules" 12 | }, 13 | setupFilesAfterEnv: ["/test/setupEnzyme.ts"] 14 | }; 15 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: "node_js" 2 | node_js: "8" 3 | 4 | # Script that is run before the script phase 5 | before_script: 6 | - yarn build-storybook 7 | 8 | # Deployment information 9 | deploy: 10 | provider: pages # Tell Travis we want to deploy to Github Pages 11 | skip-cleanup: true 12 | github-token: $GITHUB_TOKEN # Will take the environment variable you created on step 5 13 | local_dir: storybook-static # The folder that needs to be deployed 14 | repo: imshubhamsingh/react-remixicon # Add your username/project_name here 15 | target_branch: gh-pages # Tell Travis to deploy on the gh-pages branch 16 | on: 17 | branch: master # Tell T 18 | -------------------------------------------------------------------------------- /example/src/reactComponentLib/components/Icon/index.d.ts: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import "remixicon/fonts/remixicon.css"; 3 | export interface IconProps { 4 | size?: "lg" | "xl" | "xxs" | "xs" | "sm" | "1x" | "2x" | "3x" | "4x" | "5x" | "6x" | "7x" | "8x" | "9x" | "10x" | "fw"; 5 | name: string; 6 | component?: React.ElementType; 7 | role?: string; 8 | ariaHidden?: string; 9 | userClass?: string; 10 | ref?: React.Ref; 11 | type?: "fill" | "line"; 12 | style?: Object; 13 | } 14 | declare const _default: React.MemoExoticComponent & React.RefAttributes>>; 15 | export default _default; 16 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import typescript from "rollup-plugin-typescript2"; 2 | import postcss from "rollup-plugin-postcss"; 3 | import resolve from "rollup-plugin-node-resolve"; 4 | 5 | import pkg from "./package.json"; 6 | 7 | export default [ 8 | { 9 | input: "src/index.ts", 10 | external: ["react", "remixicon"], 11 | plugins: [ 12 | typescript({ 13 | typescript: require("typescript") 14 | }), 15 | postcss({ 16 | extensions: [".css"] 17 | }), 18 | resolve() 19 | ], 20 | output: [ 21 | { file: pkg.main, format: "cjs" }, 22 | { file: pkg.module, format: "es" }, 23 | { 24 | file: "example/src/reactComponentLib/index.js", 25 | format: "es", 26 | banner: "/* eslint-disable */" 27 | } 28 | ] 29 | } 30 | ]; 31 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2018 Shubham Singh 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 7 | of the Software, and to permit persons to whom the Software is furnished to do 8 | so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # react-remixicons 3 | [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) 4 | [![Build Status](https://travis-ci.com/imshubhamsingh/react-remixicon.svg?token=gtzMwXPBX5XyX3Gzv2LJ&branch=master)](https://travis-ci.com/imshubhamsingh/react-remixicon) 5 | 6 | 7 | ### Description 8 | [Remix Icons](https://remixicon.com/) as React Component 9 | 10 | 11 | ### Installation 12 | 13 | 1. **Add the library as a dependency from NPM:** 14 | 15 | ```bash 16 | # yarn 17 | yarn add react-remixicon 18 | 19 | # npm 20 | npm install react-remixicon 21 | ``` 22 | 23 | 2. **Add a link to the font files in your project's HTML files:** 24 | 25 | ```html 26 | 27 | ``` 28 | 29 | 30 | ### Demo 31 | View the [DEMO](https://imshubhamsingh.github.io/react-remixicon/?path=/story/icon--name) 32 | 33 | ### API 34 | | Prop name | Type | Default | Description | 35 | | --------- | --------- | ------------ | ----------- | 36 | | name | string | required | Icon name | 37 | | type | string | fill | Icon type | 38 | | size | string | 1x | Icon size | 39 | | role | string | presentation | Icon role | 40 | | style | Object | {} | Icon style | 41 | | ref | React.ref | null | Icon node | 42 | 43 | ### Code example 44 | ```jsx 45 | import React from 'react'; 46 | import Icon from 'react-remixicon'; 47 | 48 | export default class App extends React.Component { 49 | render() { 50 | return ( 51 | 52 | ); 53 | } 54 | } 55 | ``` -------------------------------------------------------------------------------- /stories/components/icon.story.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { storiesOf } from "@storybook/react"; 3 | import { withKnobs, select, object } from "@storybook/addon-knobs"; 4 | 5 | import iconList from "../../src/components/Icon/iconList"; 6 | 7 | import Icon from "../../src"; 8 | 9 | type size = 10 | | "lg" 11 | | "xl" 12 | | "xxs" 13 | | "xs" 14 | | "sm" 15 | | "1x" 16 | | "2x" 17 | | "3x" 18 | | "4x" 19 | | "5x" 20 | | "6x" 21 | | "7x" 22 | | "8x" 23 | | "9x" 24 | | "10x" 25 | | "fw"; 26 | 27 | type _type = "fill" | "line"; 28 | 29 | storiesOf("Icon", module) 30 | .addDecorator(withKnobs) 31 | .add("name", () => ( 32 | 37 | )) 38 | .add("size", () => ( 39 | 65 | )) 66 | .add("type", () => ( 67 | 72 | )) 73 | .add("style", () => ( 74 | 83 | )); 84 | -------------------------------------------------------------------------------- /src/components/Icon/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | 3 | import iconList from "./iconList"; 4 | 5 | import "remixicon/fonts/remixicon.css"; 6 | export interface IconProps { 7 | size?: 8 | | "lg" 9 | | "xl" 10 | | "xxs" 11 | | "xs" 12 | | "sm" 13 | | "1x" 14 | | "2x" 15 | | "3x" 16 | | "4x" 17 | | "5x" 18 | | "6x" 19 | | "7x" 20 | | "8x" 21 | | "9x" 22 | | "10x" 23 | | "fw"; 24 | name: string; 25 | component?: React.ElementType; 26 | role?: string; 27 | ariaHidden?: string; 28 | userClass?: string; 29 | ref?: React.Ref; 30 | type?: "fill" | "line"; 31 | style?: Object; 32 | } 33 | 34 | const Icon: React.FC = (props, ref) => { 35 | const { 36 | name, 37 | size, 38 | component, 39 | role, 40 | ariaHidden, 41 | userClass, 42 | children, 43 | type, 44 | style, 45 | ...remainder 46 | } = props; 47 | if (!iconList.includes(name)) { 48 | log(`Could not find icon ${name}`); 49 | return null; 50 | } 51 | const CustomTag = component || "i"; 52 | 53 | return ( 54 | e) 64 | .join(" ")} 65 | {...remainder} 66 | ref={ref} 67 | style={style} 68 | > 69 | {children} 70 | 71 | ); 72 | }; 73 | 74 | export default React.memo(React.forwardRef(Icon)); 75 | 76 | const log = (message: string) => { 77 | if (!(process && process.env && process.env.NODE_ENV === "production")) { 78 | // eslint-disable-next-line no-console 79 | console.error(`[react-remixicon]: ${message}.`); 80 | } 81 | }; 82 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-remixicon", 3 | "version": "1.0.3", 4 | "description": "React component for Remix Icon", 5 | "main": "dist/index.cjs.js", 6 | "module": "dist/index.esm.js", 7 | "author": "Shubham Singh ", 8 | "repository": { 9 | "url": "https://github.com/imshubhamsingh/react-remixicon", 10 | "type": "git" 11 | }, 12 | "license": "MIT", 13 | "types": "dist/index.d.ts", 14 | "devDependencies": { 15 | "@babel/core": "^7.5.5", 16 | "@babel/preset-env": "^7.5.5", 17 | "@babel/preset-react": "^7.0.0", 18 | "@storybook/addon-actions": "^5.1.10", 19 | "@storybook/addon-info": "^5.1.10", 20 | "@storybook/addon-knobs": "^5.1.10", 21 | "@storybook/addon-links": "^5.1.10", 22 | "@storybook/addons": "^5.1.10", 23 | "@storybook/react": "^5.1.10", 24 | "@types/chai": "^4.1.7", 25 | "@types/enzyme": "^3.10.3", 26 | "@types/enzyme-adapter-react-16": "^1.0.5", 27 | "@types/jest": "^24.0.16", 28 | "@types/react": "^16.8.8", 29 | "@types/react-dom": "^16.8.3", 30 | "@types/storybook__addon-knobs": "^5.0.3", 31 | "@types/storybook__react": "^4.0.2", 32 | "add": "^2.0.6", 33 | "awesome-typescript-loader": "^5.2.1", 34 | "babel-core": "^7.0.0-0", 35 | "babel-jest": "^24.8.0", 36 | "babel-loader": "^8.0.6", 37 | "chai": "^4.2.0", 38 | "concurrently": "^4.1.0", 39 | "enzyme": "^3.10.0", 40 | "enzyme-adapter-react-16": "^1.14.0", 41 | "jest": "^24.8.0", 42 | "jest-css-modules": "^2.1.0", 43 | "mocha": "^6.2.0", 44 | "nyc": "^14.1.1", 45 | "prepend-file": "^1.3.1", 46 | "raf": "^3.4.1", 47 | "react-docgen-typescript-loader": "^3.1.0", 48 | "rollup": "^1.0.0", 49 | "rollup-plugin-commonjs": "^10.0.1", 50 | "rollup-plugin-node-resolve": "^5.2.0", 51 | "rollup-plugin-peer-deps-external": "^2.2.0", 52 | "rollup-plugin-postcss": "^2.0.3", 53 | "rollup-plugin-typescript2": "^0.20.1", 54 | "ts-jest": "^24.0.2", 55 | "ts-node": "^8.3.0", 56 | "tslib": "^1.9.3", 57 | "typescript": "^3.2.2", 58 | "yarn": "^1.17.3" 59 | }, 60 | "peerDependencies": { 61 | "react": "^16.8.4", 62 | "remixicon": "^1.3.1" 63 | }, 64 | "scripts": { 65 | "build": "rollup -c", 66 | "build-watch": "rollup -c -w", 67 | "install-all": "npm i && cd example && npm i", 68 | "start-example": "cd example && npm start", 69 | "deploy-example": "cd example && npm run deploy", 70 | "dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"", 71 | "test": "jest", 72 | "test:watch": "jest --watch", 73 | "coverage": "rm -rf coverage && yarn test --coverage", 74 | "storybook": "start-storybook -p 6006", 75 | "build-storybook": "build-storybook -s public" 76 | }, 77 | "files": [ 78 | "dist" 79 | ], 80 | "dependencies": { 81 | "react": "^16.8.6", 82 | "react-dom": "^16.8.6", 83 | "remixicon": "^1.3.1" 84 | }, 85 | "keywords": [ 86 | "react", 87 | "remixicon", 88 | "icons", 89 | "jsx", 90 | "react-components", 91 | "components" 92 | ] 93 | } 94 | -------------------------------------------------------------------------------- /src/components/Icon/iconList.ts: -------------------------------------------------------------------------------- 1 | export default [ 2 | "4k", 3 | "account-box", 4 | "account-circle", 5 | "account-pin-box", 6 | "account-pin-circle", 7 | "add-box", 8 | "add-circle", 9 | "add", 10 | "admin", 11 | "airplay", 12 | "alarm", 13 | "alarm-warning", 14 | "album", 15 | "alert", 16 | "align-bottom", 17 | "align-justify", 18 | "align-right", 19 | "align-vertically", 20 | "alipay", 21 | "amazon", 22 | "anchor", 23 | "android", 24 | "angularjs", 25 | "anticlockwise-2", 26 | "anticlockwise", 27 | "apple", 28 | "apps-2", 29 | "apps", 30 | "archive-drawer", 31 | "archive", 32 | "arrow-down-circle", 33 | "arrow-down", 34 | "arrow-down-s", 35 | "arrow-drop-down", 36 | "arrow-drop-left", 37 | "arrow-drop-right", 38 | "arrow-drop-up", 39 | "arrow-go-back", 40 | "arrow-go-forward", 41 | "arrow-left-circle", 42 | "arrow-left-down", 43 | "arrow-left", 44 | "arrow-left-s", 45 | "arrow-left-up", 46 | "arrow-right-circle", 47 | "arrow-right-down", 48 | "arrow-right", 49 | "arrow-right-s", 50 | "arrow-right-up", 51 | "arrow-up-circle", 52 | "arrow-up", 53 | "arrow-up-s", 54 | "artboard-2", 55 | "artboard", 56 | "article", 57 | "at", 58 | "attachment", 59 | "award", 60 | "baidu", 61 | "ball-pen", 62 | "bank-card-2", 63 | "bank-card", 64 | "bank", 65 | "bar-chart-2", 66 | "bar-chart-box", 67 | "bar-chart", 68 | "bar-chart-grouped", 69 | "bar-chart-horizontal", 70 | "barcode-box", 71 | "barcode", 72 | "barricade", 73 | "base-station", 74 | "battery-2-charge", 75 | "battery-2", 76 | "battery-charge", 77 | "battery", 78 | "battery-low", 79 | "behance", 80 | "bike", 81 | "bill", 82 | "bit-coin", 83 | "bluetooth-connect", 84 | "bluetooth", 85 | "blur-off", 86 | "bold", 87 | "book-2", 88 | "book-3", 89 | "book", 90 | "book-mark", 91 | "book-open", 92 | "book-read", 93 | "bookmark-2", 94 | "bookmark-3", 95 | "bookmark", 96 | "braces", 97 | "brackets", 98 | "briefcase-2", 99 | "briefcase-3", 100 | "briefcase-4", 101 | "briefcase-5", 102 | "briefcase", 103 | "broadcast", 104 | "brush-2", 105 | "brush-3", 106 | "brush-4", 107 | "brush", 108 | "bug-2", 109 | "bug", 110 | "building-2", 111 | "building-3", 112 | "building-4", 113 | "building", 114 | "bus-2", 115 | "bus", 116 | "calculator", 117 | "calendar-2", 118 | "calendar-event", 119 | "calendar", 120 | "calendar-todo", 121 | "camera-2", 122 | "camera-3", 123 | "camera-lens", 124 | "camera", 125 | "camera-off", 126 | "camera-switch", 127 | "car", 128 | "car-washing", 129 | "cast", 130 | "cellphone", 131 | "celsius", 132 | "charging-pile-2", 133 | "charging-pile", 134 | "chat-1", 135 | "chat-2", 136 | "chat-3", 137 | "chat-4", 138 | "chat-check", 139 | "chat-delete", 140 | "chat-download", 141 | "chat-forward", 142 | "chat-heart", 143 | "chat-new", 144 | "chat-settings", 145 | "chat-smile-2", 146 | "chat-smile-3", 147 | "chat-smile", 148 | "chat-upload", 149 | "chat-voice", 150 | "check-double", 151 | "check", 152 | "checkbox-blank-circle", 153 | "checkbox-blank", 154 | "checkbox-circle", 155 | "checkbox-indeterminate", 156 | "checkbox", 157 | "checkbox-multiple-blank", 158 | "checkbox-multiple", 159 | "china-railway", 160 | "chrome", 161 | "clapperboard", 162 | "clipboard", 163 | "clockwise-2", 164 | "clockwise", 165 | "close-circle", 166 | "close", 167 | "cloud", 168 | "cloud-windy", 169 | "cloudy-2", 170 | "cloudy", 171 | "code-box", 172 | "code", 173 | "code-s", 174 | "code-s-slash", 175 | "codepen", 176 | "command", 177 | "community", 178 | "compass-2", 179 | "compass-3", 180 | "compass-4", 181 | "compass-discover", 182 | "compass", 183 | "compasses-2", 184 | "compasses", 185 | "computer", 186 | "contacts-book-2", 187 | "contacts-book", 188 | "contacts", 189 | "contrast-2", 190 | "contrast-drop-2", 191 | "contrast-drop", 192 | "contrast", 193 | "copper-coin", 194 | "copper-diamond", 195 | "coreos", 196 | "coupon-2", 197 | "coupon-3", 198 | "coupon-4", 199 | "coupon-5", 200 | "coupon", 201 | "cpu", 202 | "crop-2", 203 | "crop", 204 | "css3", 205 | "cup", 206 | "currency", 207 | "cursor", 208 | "customer-service-2", 209 | "customer-service", 210 | "dashboard", 211 | "database-2", 212 | "database", 213 | "delete-back-2", 214 | "delete-back", 215 | "delete-bin-2", 216 | "delete-bin-3", 217 | "delete-bin-4", 218 | "delete-bin-5", 219 | "delete-bin-6", 220 | "delete-bin-7", 221 | "delete-bin", 222 | "device", 223 | "dingding", 224 | "direction", 225 | "disc", 226 | "discord", 227 | "discuss", 228 | "divide", 229 | "door-lock-box", 230 | "door-lock", 231 | "douban", 232 | "double-quotes-l", 233 | "download-2", 234 | "download-cloud", 235 | "download", 236 | "drag-move-2", 237 | "drag-move", 238 | "dribbble", 239 | "drive", 240 | "drizzle", 241 | "drop", 242 | "dropbox", 243 | "dv", 244 | "dvd", 245 | "e-bike-2", 246 | "e-bike", 247 | "earth", 248 | "edge", 249 | "edit-2", 250 | "edit-box", 251 | "edit-circle", 252 | "edit", 253 | "eject", 254 | "emotion-2", 255 | "emotion", 256 | "emotion-happy", 257 | "emotion-normal", 258 | "emotion-unhappy", 259 | "equalizer", 260 | "eraser", 261 | "error-warning", 262 | "evernote", 263 | "exchange-box", 264 | "exchange-cny", 265 | "exchange-dollar", 266 | "exchange", 267 | "exchange-funds", 268 | "eye-close", 269 | "eye", 270 | "eye-off", 271 | "facebook-box", 272 | "facebook-circle", 273 | "facebook", 274 | "fahrenheit", 275 | "feedback", 276 | "file-2", 277 | "file-3", 278 | "file-4", 279 | "file-add", 280 | "file-chart-2", 281 | "file-chart", 282 | "file-code", 283 | "file-copy-2", 284 | "file-copy", 285 | "file-damage", 286 | "file-download", 287 | "file-edit", 288 | "file-excel-2", 289 | "file-excel", 290 | "file", 291 | "file-forbid", 292 | "file-info", 293 | "file-list-2", 294 | "file-list-3", 295 | "file-list", 296 | "file-lock", 297 | "file-mark", 298 | "file-music", 299 | "file-paper", 300 | "file-pdf", 301 | "file-ppt-2", 302 | "file-ppt", 303 | "file-reduce", 304 | "file-search", 305 | "file-settings", 306 | "file-shield-2", 307 | "file-shield", 308 | "file-shred", 309 | "file-text", 310 | "file-transfer", 311 | "file-unknow", 312 | "file-upload", 313 | "file-user", 314 | "file-warning", 315 | "file-word-2", 316 | "file-word", 317 | "file-zip", 318 | "film", 319 | "filter-2", 320 | "filter-3", 321 | "filter", 322 | "find-replace", 323 | "fire", 324 | "firefox", 325 | "flag-2", 326 | "flag", 327 | "flashlight", 328 | "flight-land", 329 | "flight-takeoff", 330 | "focus-2", 331 | "focus", 332 | "foggy", 333 | "folder-2", 334 | "folder-3", 335 | "folder-4", 336 | "folder-5", 337 | "folder-add", 338 | "folder-chart-2", 339 | "folder-chart", 340 | "folder-download", 341 | "folder", 342 | "folder-forbid", 343 | "folder-info", 344 | "folder-lock", 345 | "folder-music", 346 | "folder-received", 347 | "folder-reduce", 348 | "folder-settings", 349 | "folder-shared", 350 | "folder-shield-2", 351 | "folder-shield", 352 | "folder-transfer", 353 | "folder-unknow", 354 | "folder-upload", 355 | "folder-user", 356 | "folder-warning", 357 | "folders", 358 | "font-color", 359 | "font-size", 360 | "footprint", 361 | "forbid-2", 362 | "forbid", 363 | "fullscreen-exit", 364 | "fullscreen", 365 | "function", 366 | "functions", 367 | "funds-box", 368 | "funds", 369 | "gallery", 370 | "gas-station", 371 | "genderless", 372 | "git-branch", 373 | "git-commit", 374 | "git-merge", 375 | "git-pull-request", 376 | "git-repository-commits", 377 | "git-repository", 378 | "git-repository-private", 379 | "github", 380 | "gitlab", 381 | "global", 382 | "globe", 383 | "goblet", 384 | "google", 385 | "government", 386 | "gps", 387 | "gradienter", 388 | "grid", 389 | "group-2", 390 | "group", 391 | "guide", 392 | "hail", 393 | "hard-drive-2", 394 | "hard-drive", 395 | "haze", 396 | "hd", 397 | "heading", 398 | "headphone", 399 | "heart-2", 400 | "heart", 401 | "heavy-showers", 402 | "home-2", 403 | "home-3", 404 | "home-4", 405 | "home-5", 406 | "home-6", 407 | "home-7", 408 | "home-8", 409 | "home-gear", 410 | "home-heart", 411 | "home", 412 | "home-smile-2", 413 | "home-smile", 414 | "home-wifi", 415 | "honour", 416 | "hospital", 417 | "hotel-bed", 418 | "hotel", 419 | "hq", 420 | "html5", 421 | "ie", 422 | "image-2", 423 | "image", 424 | "inbox-archive", 425 | "inbox", 426 | "increase-decrease", 427 | "indent-increase", 428 | "indeterminate-circle", 429 | "information", 430 | "input-method", 431 | "instagram", 432 | "invision", 433 | "kakao-talk", 434 | "key-2", 435 | "key", 436 | "keyboard-box", 437 | "keyboard", 438 | "keynote", 439 | "landscape", 440 | "layout-column", 441 | "layout", 442 | "layout-row", 443 | "lightbulb", 444 | "lightbulb-flash", 445 | "line", 446 | "line", 447 | "link-unlink-m", 448 | "link", 449 | "linkedin-box", 450 | "linkedin", 451 | "links", 452 | "list-check", 453 | "list-settings", 454 | "list-unordered", 455 | "loader-2", 456 | "loader-3", 457 | "loader-4", 458 | "loader-5", 459 | "loader", 460 | "lock-2", 461 | "lock", 462 | "lock-password", 463 | "lock-unlock", 464 | "login-box", 465 | "login-circle", 466 | "logout-box", 467 | "logout-circle", 468 | "mac", 469 | "macbook", 470 | "magic", 471 | "mail-add", 472 | "mail-check", 473 | "mail-close", 474 | "mail-download", 475 | "mail-forbid", 476 | "mail", 477 | "mail-lock", 478 | "mail-open", 479 | "mail-send", 480 | "mail-settings", 481 | "mail-star", 482 | "mail-unread", 483 | "map-2", 484 | "map", 485 | "map-pin-2", 486 | "map-pin-3", 487 | "map-pin-4", 488 | "map-pin-5", 489 | "map-pin-add", 490 | "map-pin", 491 | "map-pin-range", 492 | "map-pin-time", 493 | "map-pin-user", 494 | "mark-pen", 495 | "markdown", 496 | "markup", 497 | "mastercard", 498 | "mastodon", 499 | "medium", 500 | "men", 501 | "menu-2", 502 | "menu-3", 503 | "menu", 504 | "message-2", 505 | "message-3", 506 | "message", 507 | "messenger", 508 | "mic-2", 509 | "mic", 510 | "mic-off", 511 | "mini-program", 512 | "mist", 513 | "money-cny-box", 514 | "money-cny-circle", 515 | "money-dollar-box", 516 | "money-dollar-circle", 517 | "money-euro-box", 518 | "money-euro-circle", 519 | "money-pound-box", 520 | "money-pound-circle", 521 | "moon-clear", 522 | "moon-cloudy", 523 | "moon-foggy", 524 | "moon", 525 | "more-2", 526 | "more", 527 | "motorbike", 528 | "mouse", 529 | "movie-2", 530 | "movie", 531 | "music-2", 532 | "music", 533 | "mv", 534 | "navigation", 535 | "netease-cloud-music", 536 | "netflix", 537 | "newspaper", 538 | "notification-2", 539 | "notification-3", 540 | "notification-4", 541 | "notification-badge", 542 | "notification", 543 | "notification-off", 544 | "numbers", 545 | "oil", 546 | "open-arm", 547 | "opera", 548 | "order-play", 549 | "outlet-2", 550 | "outlet", 551 | "page-separator", 552 | "pages", 553 | "paint-brush", 554 | "paint", 555 | "palette", 556 | "pantone", 557 | "parent", 558 | "parentheses", 559 | "parking-box", 560 | "parking", 561 | "patreon", 562 | "pause-circle", 563 | "pause", 564 | "pause-mini", 565 | "paypal", 566 | "pen-nib", 567 | "pencil", 568 | "pencil-ruler-2", 569 | "pencil-ruler", 570 | "percent", 571 | "phone-camera", 572 | "phone", 573 | "pie-chart-2", 574 | "pie-chart-box", 575 | "pie-chart", 576 | "pin-distance", 577 | "pinterest", 578 | "plane", 579 | "play-circle", 580 | "play", 581 | "play-list-add", 582 | "play-list", 583 | "play-mini", 584 | "playstation", 585 | "plug-2", 586 | "plug", 587 | "polaroid-2", 588 | "polaroid", 589 | "police-car", 590 | "price-tag-2", 591 | "price-tag-3", 592 | "price-tag", 593 | "printer", 594 | "product-hunt", 595 | "profile", 596 | "projector-2", 597 | "projector", 598 | "qq", 599 | "qr-code", 600 | "qr-scan-2", 601 | "qr-scan", 602 | "question-answer", 603 | "question", 604 | "questionnaire", 605 | "quill-pen", 606 | "radar", 607 | "radio-2", 608 | "radio-button", 609 | "radio", 610 | "rainy", 611 | "reactjs", 612 | "record-circle", 613 | "record-mail", 614 | "red-packet", 615 | "reddit", 616 | "refresh", 617 | "refund", 618 | "remixicon", 619 | "repeat-2", 620 | "repeat", 621 | "repeat-one", 622 | "reply", 623 | "reserved", 624 | "restart", 625 | "restaurant-2", 626 | "restaurant", 627 | "rewind", 628 | "rewind-mini", 629 | "rhythm", 630 | "riding", 631 | "road-map", 632 | "roadster", 633 | "robot", 634 | "rocket-2", 635 | "rocket", 636 | "route", 637 | "router", 638 | "rss", 639 | "ruler-2", 640 | "ruler", 641 | "run", 642 | "safari", 643 | "safe-2", 644 | "safe", 645 | "sailboat", 646 | "save-2", 647 | "save-3", 648 | "save", 649 | "scan-2", 650 | "scan", 651 | "scissors-2", 652 | "scissors-cut", 653 | "scissors", 654 | "screenshot-2", 655 | "screenshot", 656 | "sd-card", 657 | "sd-card-mini", 658 | "search-2", 659 | "search-eye", 660 | "search", 661 | "send-plane-2", 662 | "send-plane", 663 | "sensor", 664 | "separator", 665 | "server", 666 | "settings-2", 667 | "settings-3", 668 | "settings-4", 669 | "settings-5", 670 | "settings-6", 671 | "settings", 672 | "shape-2", 673 | "shape", 674 | "share-box", 675 | "share-circle", 676 | "share-forward-2", 677 | "share-forward-box", 678 | "share-forward", 679 | "share", 680 | "shield-cross", 681 | "shield-flash", 682 | "shield", 683 | "shield-star", 684 | "shield-user", 685 | "ship-2", 686 | "ship", 687 | "shirt", 688 | "shopping-bag-2", 689 | "shopping-bag-3", 690 | "shopping-bag", 691 | "shopping-cart-2", 692 | "shopping-cart", 693 | "showers", 694 | "shuffle", 695 | "shut-down", 696 | "side-bar", 697 | "signal-tower", 698 | "sim-card-2", 699 | "sim-card", 700 | "single-quotes-r", 701 | "sip", 702 | "skip-back", 703 | "skip-back-mini", 704 | "skip-forward", 705 | "skip-forward-mini", 706 | "skull", 707 | "skype", 708 | "slack", 709 | "slice", 710 | "slideshow-2", 711 | "slideshow-3", 712 | "slideshow-4", 713 | "slideshow", 714 | "smartphone", 715 | "snapchat", 716 | "snowy", 717 | "sound-module", 718 | "space-ship", 719 | "spam-2", 720 | "spam-3", 721 | "spam", 722 | "speaker-2", 723 | "speaker-3", 724 | "speaker", 725 | "speed", 726 | "speed-mini", 727 | "spotify", 728 | "stack", 729 | "stack-overflow", 730 | "star", 731 | "star-half", 732 | "star-half-s", 733 | "star-s", 734 | "stock", 735 | "stop-circle", 736 | "stop", 737 | "stop-mini", 738 | "store-2", 739 | "store-3", 740 | "store", 741 | "strikethrough-2", 742 | "subscript-2", 743 | "subtract", 744 | "subway", 745 | "sun-cloudy", 746 | "sun", 747 | "sun-foggy", 748 | "superscript-2", 749 | "surround-sound", 750 | "swap-box", 751 | "swap", 752 | "switch", 753 | "t-box", 754 | "t-shirt", 755 | "table-2", 756 | "table", 757 | "tablet", 758 | "taobao", 759 | "tape", 760 | "task", 761 | "taxi", 762 | "telegram", 763 | "temp-cold", 764 | "temp-hot", 765 | "terminal-box", 766 | "terminal", 767 | "terminal-window", 768 | "text-direction-r", 769 | "text-wrap", 770 | "thumb-down", 771 | "thumb-up", 772 | "thunderstorms", 773 | "time", 774 | "timer-2", 775 | "timer", 776 | "timer-flash", 777 | "todo", 778 | "toggle", 779 | "tornado", 780 | "traffic-light", 781 | "train", 782 | "travesti", 783 | "treasure-map", 784 | "trello", 785 | "trophy", 786 | "truck", 787 | "tumblr", 788 | "tv-2", 789 | "tv", 790 | "twitter", 791 | "u-disk", 792 | "ubuntu", 793 | "umbrella", 794 | "underline", 795 | "upload-2", 796 | "upload-cloud", 797 | "upload", 798 | "user-2", 799 | "user-3", 800 | "user-4", 801 | "user-5", 802 | "user-add", 803 | "user-follow", 804 | "user", 805 | "user-location", 806 | "user-received-2", 807 | "user-received", 808 | "user-search", 809 | "user-settings", 810 | "user-shared-2", 811 | "user-shared", 812 | "user-smile", 813 | "user-star", 814 | "user-unfollow", 815 | "user-voice", 816 | "video-chat", 817 | "video", 818 | "vidicon-2", 819 | "vidicon", 820 | "vip-crown-2", 821 | "vip-crown", 822 | "vip-diamond", 823 | "vip", 824 | "visa", 825 | "voiceprint", 826 | "volume-down", 827 | "volume-mute", 828 | "volume-up", 829 | "vuejs", 830 | "walk", 831 | "wallet-2", 832 | "wallet-3", 833 | "wallet", 834 | "water-flash", 835 | "webcam", 836 | "wechat-2", 837 | "wechat", 838 | "wechat-pay", 839 | "weibo", 840 | "whatsapp", 841 | "wifi", 842 | "window-2", 843 | "window", 844 | "windows", 845 | "windy", 846 | "women", 847 | "xbox", 848 | "youtube", 849 | "zcool", 850 | "zhihu", 851 | "zoom-in", 852 | "zoom-out" 853 | ]; 854 | -------------------------------------------------------------------------------- /example/src/reactComponentLib/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | import { memo, forwardRef, createElement } from 'react'; 3 | 4 | /*! ***************************************************************************** 5 | Copyright (c) Microsoft Corporation. All rights reserved. 6 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 7 | this file except in compliance with the License. You may obtain a copy of the 8 | License at http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 11 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 12 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 13 | MERCHANTABLITY OR NON-INFRINGEMENT. 14 | 15 | See the Apache Version 2.0 License for specific language governing permissions 16 | and limitations under the License. 17 | ***************************************************************************** */ 18 | 19 | var __assign = function() { 20 | __assign = Object.assign || function __assign(t) { 21 | for (var s, i = 1, n = arguments.length; i < n; i++) { 22 | s = arguments[i]; 23 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; 24 | } 25 | return t; 26 | }; 27 | return __assign.apply(this, arguments); 28 | }; 29 | 30 | function __rest(s, e) { 31 | var t = {}; 32 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) 33 | t[p] = s[p]; 34 | if (s != null && typeof Object.getOwnPropertySymbols === "function") 35 | for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) 36 | t[p[i]] = s[p[i]]; 37 | return t; 38 | } 39 | 40 | var iconList = [ 41 | "4k", 42 | "account-box", 43 | "account-circle", 44 | "account-pin-box", 45 | "account-pin-circle", 46 | "add-box", 47 | "add-circle", 48 | "add", 49 | "admin", 50 | "airplay", 51 | "alarm", 52 | "alarm-warning", 53 | "album", 54 | "alert", 55 | "align-bottom", 56 | "align-justify", 57 | "align-right", 58 | "align-vertically", 59 | "alipay", 60 | "amazon", 61 | "anchor", 62 | "android", 63 | "angularjs", 64 | "anticlockwise-2", 65 | "anticlockwise", 66 | "apple", 67 | "apps-2", 68 | "apps", 69 | "archive-drawer", 70 | "archive", 71 | "arrow-down-circle", 72 | "arrow-down", 73 | "arrow-down-s", 74 | "arrow-drop-down", 75 | "arrow-drop-left", 76 | "arrow-drop-right", 77 | "arrow-drop-up", 78 | "arrow-go-back", 79 | "arrow-go-forward", 80 | "arrow-left-circle", 81 | "arrow-left-down", 82 | "arrow-left", 83 | "arrow-left-s", 84 | "arrow-left-up", 85 | "arrow-right-circle", 86 | "arrow-right-down", 87 | "arrow-right", 88 | "arrow-right-s", 89 | "arrow-right-up", 90 | "arrow-up-circle", 91 | "arrow-up", 92 | "arrow-up-s", 93 | "artboard-2", 94 | "artboard", 95 | "article", 96 | "at", 97 | "attachment", 98 | "award", 99 | "baidu", 100 | "ball-pen", 101 | "bank-card-2", 102 | "bank-card", 103 | "bank", 104 | "bar-chart-2", 105 | "bar-chart-box", 106 | "bar-chart", 107 | "bar-chart-grouped", 108 | "bar-chart-horizontal", 109 | "barcode-box", 110 | "barcode", 111 | "barricade", 112 | "base-station", 113 | "battery-2-charge", 114 | "battery-2", 115 | "battery-charge", 116 | "battery", 117 | "battery-low", 118 | "behance", 119 | "bike", 120 | "bill", 121 | "bit-coin", 122 | "bluetooth-connect", 123 | "bluetooth", 124 | "blur-off", 125 | "bold", 126 | "book-2", 127 | "book-3", 128 | "book", 129 | "book-mark", 130 | "book-open", 131 | "book-read", 132 | "bookmark-2", 133 | "bookmark-3", 134 | "bookmark", 135 | "braces", 136 | "brackets", 137 | "briefcase-2", 138 | "briefcase-3", 139 | "briefcase-4", 140 | "briefcase-5", 141 | "briefcase", 142 | "broadcast", 143 | "brush-2", 144 | "brush-3", 145 | "brush-4", 146 | "brush", 147 | "bug-2", 148 | "bug", 149 | "building-2", 150 | "building-3", 151 | "building-4", 152 | "building", 153 | "bus-2", 154 | "bus", 155 | "calculator", 156 | "calendar-2", 157 | "calendar-event", 158 | "calendar", 159 | "calendar-todo", 160 | "camera-2", 161 | "camera-3", 162 | "camera-lens", 163 | "camera", 164 | "camera-off", 165 | "camera-switch", 166 | "car", 167 | "car-washing", 168 | "cast", 169 | "cellphone", 170 | "celsius", 171 | "charging-pile-2", 172 | "charging-pile", 173 | "chat-1", 174 | "chat-2", 175 | "chat-3", 176 | "chat-4", 177 | "chat-check", 178 | "chat-delete", 179 | "chat-download", 180 | "chat-forward", 181 | "chat-heart", 182 | "chat-new", 183 | "chat-settings", 184 | "chat-smile-2", 185 | "chat-smile-3", 186 | "chat-smile", 187 | "chat-upload", 188 | "chat-voice", 189 | "check-double", 190 | "check", 191 | "checkbox-blank-circle", 192 | "checkbox-blank", 193 | "checkbox-circle", 194 | "checkbox-indeterminate", 195 | "checkbox", 196 | "checkbox-multiple-blank", 197 | "checkbox-multiple", 198 | "china-railway", 199 | "chrome", 200 | "clapperboard", 201 | "clipboard", 202 | "clockwise-2", 203 | "clockwise", 204 | "close-circle", 205 | "close", 206 | "cloud", 207 | "cloud-windy", 208 | "cloudy-2", 209 | "cloudy", 210 | "code-box", 211 | "code", 212 | "code-s", 213 | "code-s-slash", 214 | "codepen", 215 | "command", 216 | "community", 217 | "compass-2", 218 | "compass-3", 219 | "compass-4", 220 | "compass-discover", 221 | "compass", 222 | "compasses-2", 223 | "compasses", 224 | "computer", 225 | "contacts-book-2", 226 | "contacts-book", 227 | "contacts", 228 | "contrast-2", 229 | "contrast-drop-2", 230 | "contrast-drop", 231 | "contrast", 232 | "copper-coin", 233 | "copper-diamond", 234 | "coreos", 235 | "coupon-2", 236 | "coupon-3", 237 | "coupon-4", 238 | "coupon-5", 239 | "coupon", 240 | "cpu", 241 | "crop-2", 242 | "crop", 243 | "css3", 244 | "cup", 245 | "currency", 246 | "cursor", 247 | "customer-service-2", 248 | "customer-service", 249 | "dashboard", 250 | "database-2", 251 | "database", 252 | "delete-back-2", 253 | "delete-back", 254 | "delete-bin-2", 255 | "delete-bin-3", 256 | "delete-bin-4", 257 | "delete-bin-5", 258 | "delete-bin-6", 259 | "delete-bin-7", 260 | "delete-bin", 261 | "device", 262 | "dingding", 263 | "direction", 264 | "disc", 265 | "discord", 266 | "discuss", 267 | "divide", 268 | "door-lock-box", 269 | "door-lock", 270 | "douban", 271 | "double-quotes-l", 272 | "download-2", 273 | "download-cloud", 274 | "download", 275 | "drag-move-2", 276 | "drag-move", 277 | "dribbble", 278 | "drive", 279 | "drizzle", 280 | "drop", 281 | "dropbox", 282 | "dv", 283 | "dvd", 284 | "e-bike-2", 285 | "e-bike", 286 | "earth", 287 | "edge", 288 | "edit-2", 289 | "edit-box", 290 | "edit-circle", 291 | "edit", 292 | "eject", 293 | "emotion-2", 294 | "emotion", 295 | "emotion-happy", 296 | "emotion-normal", 297 | "emotion-unhappy", 298 | "equalizer", 299 | "eraser", 300 | "error-warning", 301 | "evernote", 302 | "exchange-box", 303 | "exchange-cny", 304 | "exchange-dollar", 305 | "exchange", 306 | "exchange-funds", 307 | "eye-close", 308 | "eye", 309 | "eye-off", 310 | "facebook-box", 311 | "facebook-circle", 312 | "facebook", 313 | "fahrenheit", 314 | "feedback", 315 | "file-2", 316 | "file-3", 317 | "file-4", 318 | "file-add", 319 | "file-chart-2", 320 | "file-chart", 321 | "file-code", 322 | "file-copy-2", 323 | "file-copy", 324 | "file-damage", 325 | "file-download", 326 | "file-edit", 327 | "file-excel-2", 328 | "file-excel", 329 | "file", 330 | "file-forbid", 331 | "file-info", 332 | "file-list-2", 333 | "file-list-3", 334 | "file-list", 335 | "file-lock", 336 | "file-mark", 337 | "file-music", 338 | "file-paper", 339 | "file-pdf", 340 | "file-ppt-2", 341 | "file-ppt", 342 | "file-reduce", 343 | "file-search", 344 | "file-settings", 345 | "file-shield-2", 346 | "file-shield", 347 | "file-shred", 348 | "file-text", 349 | "file-transfer", 350 | "file-unknow", 351 | "file-upload", 352 | "file-user", 353 | "file-warning", 354 | "file-word-2", 355 | "file-word", 356 | "file-zip", 357 | "film", 358 | "filter-2", 359 | "filter-3", 360 | "filter", 361 | "find-replace", 362 | "fire", 363 | "firefox", 364 | "flag-2", 365 | "flag", 366 | "flashlight", 367 | "flight-land", 368 | "flight-takeoff", 369 | "focus-2", 370 | "focus", 371 | "foggy", 372 | "folder-2", 373 | "folder-3", 374 | "folder-4", 375 | "folder-5", 376 | "folder-add", 377 | "folder-chart-2", 378 | "folder-chart", 379 | "folder-download", 380 | "folder", 381 | "folder-forbid", 382 | "folder-info", 383 | "folder-lock", 384 | "folder-music", 385 | "folder-received", 386 | "folder-reduce", 387 | "folder-settings", 388 | "folder-shared", 389 | "folder-shield-2", 390 | "folder-shield", 391 | "folder-transfer", 392 | "folder-unknow", 393 | "folder-upload", 394 | "folder-user", 395 | "folder-warning", 396 | "folders", 397 | "font-color", 398 | "font-size", 399 | "footprint", 400 | "forbid-2", 401 | "forbid", 402 | "fullscreen-exit", 403 | "fullscreen", 404 | "function", 405 | "functions", 406 | "funds-box", 407 | "funds", 408 | "gallery", 409 | "gas-station", 410 | "genderless", 411 | "git-branch", 412 | "git-commit", 413 | "git-merge", 414 | "git-pull-request", 415 | "git-repository-commits", 416 | "git-repository", 417 | "git-repository-private", 418 | "github", 419 | "gitlab", 420 | "global", 421 | "globe", 422 | "goblet", 423 | "google", 424 | "government", 425 | "gps", 426 | "gradienter", 427 | "grid", 428 | "group-2", 429 | "group", 430 | "guide", 431 | "hail", 432 | "hard-drive-2", 433 | "hard-drive", 434 | "haze", 435 | "hd", 436 | "heading", 437 | "headphone", 438 | "heart-2", 439 | "heart", 440 | "heavy-showers", 441 | "home-2", 442 | "home-3", 443 | "home-4", 444 | "home-5", 445 | "home-6", 446 | "home-7", 447 | "home-8", 448 | "home-gear", 449 | "home-heart", 450 | "home", 451 | "home-smile-2", 452 | "home-smile", 453 | "home-wifi", 454 | "honour", 455 | "hospital", 456 | "hotel-bed", 457 | "hotel", 458 | "hq", 459 | "html5", 460 | "ie", 461 | "image-2", 462 | "image", 463 | "inbox-archive", 464 | "inbox", 465 | "increase-decrease", 466 | "indent-increase", 467 | "indeterminate-circle", 468 | "information", 469 | "input-method", 470 | "instagram", 471 | "invision", 472 | "kakao-talk", 473 | "key-2", 474 | "key", 475 | "keyboard-box", 476 | "keyboard", 477 | "keynote", 478 | "landscape", 479 | "layout-column", 480 | "layout", 481 | "layout-row", 482 | "lightbulb", 483 | "lightbulb-flash", 484 | "line", 485 | "line", 486 | "link-unlink-m", 487 | "link", 488 | "linkedin-box", 489 | "linkedin", 490 | "links", 491 | "list-check", 492 | "list-settings", 493 | "list-unordered", 494 | "loader-2", 495 | "loader-3", 496 | "loader-4", 497 | "loader-5", 498 | "loader", 499 | "lock-2", 500 | "lock", 501 | "lock-password", 502 | "lock-unlock", 503 | "login-box", 504 | "login-circle", 505 | "logout-box", 506 | "logout-circle", 507 | "mac", 508 | "macbook", 509 | "magic", 510 | "mail-add", 511 | "mail-check", 512 | "mail-close", 513 | "mail-download", 514 | "mail-forbid", 515 | "mail", 516 | "mail-lock", 517 | "mail-open", 518 | "mail-send", 519 | "mail-settings", 520 | "mail-star", 521 | "mail-unread", 522 | "map-2", 523 | "map", 524 | "map-pin-2", 525 | "map-pin-3", 526 | "map-pin-4", 527 | "map-pin-5", 528 | "map-pin-add", 529 | "map-pin", 530 | "map-pin-range", 531 | "map-pin-time", 532 | "map-pin-user", 533 | "mark-pen", 534 | "markdown", 535 | "markup", 536 | "mastercard", 537 | "mastodon", 538 | "medium", 539 | "men", 540 | "menu-2", 541 | "menu-3", 542 | "menu", 543 | "message-2", 544 | "message-3", 545 | "message", 546 | "messenger", 547 | "mic-2", 548 | "mic", 549 | "mic-off", 550 | "mini-program", 551 | "mist", 552 | "money-cny-box", 553 | "money-cny-circle", 554 | "money-dollar-box", 555 | "money-dollar-circle", 556 | "money-euro-box", 557 | "money-euro-circle", 558 | "money-pound-box", 559 | "money-pound-circle", 560 | "moon-clear", 561 | "moon-cloudy", 562 | "moon-foggy", 563 | "moon", 564 | "more-2", 565 | "more", 566 | "motorbike", 567 | "mouse", 568 | "movie-2", 569 | "movie", 570 | "music-2", 571 | "music", 572 | "mv", 573 | "navigation", 574 | "netease-cloud-music", 575 | "netflix", 576 | "newspaper", 577 | "notification-2", 578 | "notification-3", 579 | "notification-4", 580 | "notification-badge", 581 | "notification", 582 | "notification-off", 583 | "numbers", 584 | "oil", 585 | "open-arm", 586 | "opera", 587 | "order-play", 588 | "outlet-2", 589 | "outlet", 590 | "page-separator", 591 | "pages", 592 | "paint-brush", 593 | "paint", 594 | "palette", 595 | "pantone", 596 | "parent", 597 | "parentheses", 598 | "parking-box", 599 | "parking", 600 | "patreon", 601 | "pause-circle", 602 | "pause", 603 | "pause-mini", 604 | "paypal", 605 | "pen-nib", 606 | "pencil", 607 | "pencil-ruler-2", 608 | "pencil-ruler", 609 | "percent", 610 | "phone-camera", 611 | "phone", 612 | "pie-chart-2", 613 | "pie-chart-box", 614 | "pie-chart", 615 | "pin-distance", 616 | "pinterest", 617 | "plane", 618 | "play-circle", 619 | "play", 620 | "play-list-add", 621 | "play-list", 622 | "play-mini", 623 | "playstation", 624 | "plug-2", 625 | "plug", 626 | "polaroid-2", 627 | "polaroid", 628 | "police-car", 629 | "price-tag-2", 630 | "price-tag-3", 631 | "price-tag", 632 | "printer", 633 | "product-hunt", 634 | "profile", 635 | "projector-2", 636 | "projector", 637 | "qq", 638 | "qr-code", 639 | "qr-scan-2", 640 | "qr-scan", 641 | "question-answer", 642 | "question", 643 | "questionnaire", 644 | "quill-pen", 645 | "radar", 646 | "radio-2", 647 | "radio-button", 648 | "radio", 649 | "rainy", 650 | "reactjs", 651 | "record-circle", 652 | "record-mail", 653 | "red-packet", 654 | "reddit", 655 | "refresh", 656 | "refund", 657 | "remixicon", 658 | "repeat-2", 659 | "repeat", 660 | "repeat-one", 661 | "reply", 662 | "reserved", 663 | "restart", 664 | "restaurant-2", 665 | "restaurant", 666 | "rewind", 667 | "rewind-mini", 668 | "rhythm", 669 | "riding", 670 | "road-map", 671 | "roadster", 672 | "robot", 673 | "rocket-2", 674 | "rocket", 675 | "route", 676 | "router", 677 | "rss", 678 | "ruler-2", 679 | "ruler", 680 | "run", 681 | "safari", 682 | "safe-2", 683 | "safe", 684 | "sailboat", 685 | "save-2", 686 | "save-3", 687 | "save", 688 | "scan-2", 689 | "scan", 690 | "scissors-2", 691 | "scissors-cut", 692 | "scissors", 693 | "screenshot-2", 694 | "screenshot", 695 | "sd-card", 696 | "sd-card-mini", 697 | "search-2", 698 | "search-eye", 699 | "search", 700 | "send-plane-2", 701 | "send-plane", 702 | "sensor", 703 | "separator", 704 | "server", 705 | "settings-2", 706 | "settings-3", 707 | "settings-4", 708 | "settings-5", 709 | "settings-6", 710 | "settings", 711 | "shape-2", 712 | "shape", 713 | "share-box", 714 | "share-circle", 715 | "share-forward-2", 716 | "share-forward-box", 717 | "share-forward", 718 | "share", 719 | "shield-cross", 720 | "shield-flash", 721 | "shield", 722 | "shield-star", 723 | "shield-user", 724 | "ship-2", 725 | "ship", 726 | "shirt", 727 | "shopping-bag-2", 728 | "shopping-bag-3", 729 | "shopping-bag", 730 | "shopping-cart-2", 731 | "shopping-cart", 732 | "showers", 733 | "shuffle", 734 | "shut-down", 735 | "side-bar", 736 | "signal-tower", 737 | "sim-card-2", 738 | "sim-card", 739 | "single-quotes-r", 740 | "sip", 741 | "skip-back", 742 | "skip-back-mini", 743 | "skip-forward", 744 | "skip-forward-mini", 745 | "skull", 746 | "skype", 747 | "slack", 748 | "slice", 749 | "slideshow-2", 750 | "slideshow-3", 751 | "slideshow-4", 752 | "slideshow", 753 | "smartphone", 754 | "snapchat", 755 | "snowy", 756 | "sound-module", 757 | "space-ship", 758 | "spam-2", 759 | "spam-3", 760 | "spam", 761 | "speaker-2", 762 | "speaker-3", 763 | "speaker", 764 | "speed", 765 | "speed-mini", 766 | "spotify", 767 | "stack", 768 | "stack-overflow", 769 | "star", 770 | "star-half", 771 | "star-half-s", 772 | "star-s", 773 | "stock", 774 | "stop-circle", 775 | "stop", 776 | "stop-mini", 777 | "store-2", 778 | "store-3", 779 | "store", 780 | "strikethrough-2", 781 | "subscript-2", 782 | "subtract", 783 | "subway", 784 | "sun-cloudy", 785 | "sun", 786 | "sun-foggy", 787 | "superscript-2", 788 | "surround-sound", 789 | "swap-box", 790 | "swap", 791 | "switch", 792 | "t-box", 793 | "t-shirt", 794 | "table-2", 795 | "table", 796 | "tablet", 797 | "taobao", 798 | "tape", 799 | "task", 800 | "taxi", 801 | "telegram", 802 | "temp-cold", 803 | "temp-hot", 804 | "terminal-box", 805 | "terminal", 806 | "terminal-window", 807 | "text-direction-r", 808 | "text-wrap", 809 | "thumb-down", 810 | "thumb-up", 811 | "thunderstorms", 812 | "time", 813 | "timer-2", 814 | "timer", 815 | "timer-flash", 816 | "todo", 817 | "toggle", 818 | "tornado", 819 | "traffic-light", 820 | "train", 821 | "travesti", 822 | "treasure-map", 823 | "trello", 824 | "trophy", 825 | "truck", 826 | "tumblr", 827 | "tv-2", 828 | "tv", 829 | "twitter", 830 | "u-disk", 831 | "ubuntu", 832 | "umbrella", 833 | "underline", 834 | "upload-2", 835 | "upload-cloud", 836 | "upload", 837 | "user-2", 838 | "user-3", 839 | "user-4", 840 | "user-5", 841 | "user-add", 842 | "user-follow", 843 | "user", 844 | "user-location", 845 | "user-received-2", 846 | "user-received", 847 | "user-search", 848 | "user-settings", 849 | "user-shared-2", 850 | "user-shared", 851 | "user-smile", 852 | "user-star", 853 | "user-unfollow", 854 | "user-voice", 855 | "video-chat", 856 | "video", 857 | "vidicon-2", 858 | "vidicon", 859 | "vip-crown-2", 860 | "vip-crown", 861 | "vip-diamond", 862 | "vip", 863 | "visa", 864 | "voiceprint", 865 | "volume-down", 866 | "volume-mute", 867 | "volume-up", 868 | "vuejs", 869 | "walk", 870 | "wallet-2", 871 | "wallet-3", 872 | "wallet", 873 | "water-flash", 874 | "webcam", 875 | "wechat-2", 876 | "wechat", 877 | "wechat-pay", 878 | "weibo", 879 | "whatsapp", 880 | "wifi", 881 | "window-2", 882 | "window", 883 | "windows", 884 | "windy", 885 | "women", 886 | "xbox", 887 | "youtube", 888 | "zcool", 889 | "zhihu", 890 | "zoom-in", 891 | "zoom-out" 892 | ]; 893 | 894 | function styleInject(css, ref) { 895 | if ( ref === void 0 ) ref = {}; 896 | var insertAt = ref.insertAt; 897 | 898 | if (!css || typeof document === 'undefined') { return; } 899 | 900 | var head = document.head || document.getElementsByTagName('head')[0]; 901 | var style = document.createElement('style'); 902 | style.type = 'text/css'; 903 | 904 | if (insertAt === 'top') { 905 | if (head.firstChild) { 906 | head.insertBefore(style, head.firstChild); 907 | } else { 908 | head.appendChild(style); 909 | } 910 | } else { 911 | head.appendChild(style); 912 | } 913 | 914 | if (style.styleSheet) { 915 | style.styleSheet.cssText = css; 916 | } else { 917 | style.appendChild(document.createTextNode(css)); 918 | } 919 | } 920 | 921 | var css = "/*\n* Remix Icon v1.3.1\n* https://remixicon.com\n* https://github.com/Remix-Design/RemixIcon\n*\n* Copyright RemixIcon.com\n* Released under the Apache License Version 2.0\n*\n* Date: 2019-7-6\n*/\n@font-face {\n font-family: \"remixicon\";\n src: url('remixicon.eot?t=1562401252720'); /* IE9*/\n src: url('remixicon.eot?t=1562401252720#iefix') format('embedded-opentype'), /* IE6-IE8 */\n url(\"remixicon.woff2?t=1562401252720\") format(\"woff2\"),\n url(\"remixicon.woff?t=1562401252720\") format(\"woff\"),\n url('remixicon.ttf?t=1562401252720') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n url('remixicon.svg?t=1562401252720#remixicon') format('svg'); /* iOS 4.1- */\n font-display: swap;\n}\n\n[class^=\"remixicon-\"], [class*=\" remixicon-\"] {\n font-family: 'remixicon' !important;\n font-style: normal;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.ri-lg { font-size: 1.3333em; line-height: 0.75em; vertical-align: -.0667em; }\n.ri-xl { font-size: 1.5em; line-height: 0.6666em; vertical-align: -.075em; }\n.ri-xxs { font-size: .5em; }\n.ri-xs { font-size: .75em; }\n.ri-sm { font-size: .875em }\n.ri-1x { font-size: 1em; }\n.ri-2x { font-size: 2em; }\n.ri-3x { font-size: 3em; }\n.ri-4x { font-size: 4em; }\n.ri-5x { font-size: 5em; }\n.ri-6x { font-size: 6em; }\n.ri-7x { font-size: 7em; }\n.ri-8x { font-size: 8em; }\n.ri-9x { font-size: 9em; }\n.ri-10x { font-size: 10em; }\n.ri-fw { text-align: center; width: 1.25em; }\n\n.remixicon-4k-fill:before { content: \"\\ea01\"; }\n.remixicon-4k-line:before { content: \"\\ea02\"; }\n.remixicon-account-box-fill:before { content: \"\\ea03\"; }\n.remixicon-account-box-line:before { content: \"\\ea04\"; }\n.remixicon-account-circle-fill:before { content: \"\\ea05\"; }\n.remixicon-account-circle-line:before { content: \"\\ea06\"; }\n.remixicon-account-pin-box-fill:before { content: \"\\ea07\"; }\n.remixicon-account-pin-box-line:before { content: \"\\ea08\"; }\n.remixicon-account-pin-circle-fill:before { content: \"\\ea09\"; }\n.remixicon-account-pin-circle-line:before { content: \"\\ea0a\"; }\n.remixicon-add-box-fill:before { content: \"\\ea0b\"; }\n.remixicon-add-box-line:before { content: \"\\ea0c\"; }\n.remixicon-add-circle-fill:before { content: \"\\ea0d\"; }\n.remixicon-add-circle-line:before { content: \"\\ea0e\"; }\n.remixicon-add-fill:before { content: \"\\ea0f\"; }\n.remixicon-add-line:before { content: \"\\ea10\"; }\n.remixicon-admin-fill:before { content: \"\\ea11\"; }\n.remixicon-admin-line:before { content: \"\\ea12\"; }\n.remixicon-airplay-fill:before { content: \"\\ea13\"; }\n.remixicon-airplay-line:before { content: \"\\ea14\"; }\n.remixicon-alarm-fill:before { content: \"\\ea15\"; }\n.remixicon-alarm-line:before { content: \"\\ea16\"; }\n.remixicon-alarm-warning-fill:before { content: \"\\ea17\"; }\n.remixicon-alarm-warning-line:before { content: \"\\ea18\"; }\n.remixicon-album-fill:before { content: \"\\ea19\"; }\n.remixicon-album-line:before { content: \"\\ea1a\"; }\n.remixicon-alert-fill:before { content: \"\\ea1b\"; }\n.remixicon-alert-line:before { content: \"\\ea1c\"; }\n.remixicon-align-bottom:before { content: \"\\ea1d\"; }\n.remixicon-align-center:before { content: \"\\ea1e\"; }\n.remixicon-align-justify:before { content: \"\\ea1f\"; }\n.remixicon-align-left:before { content: \"\\ea20\"; }\n.remixicon-align-right:before { content: \"\\ea21\"; }\n.remixicon-align-top:before { content: \"\\ea22\"; }\n.remixicon-align-vertically:before { content: \"\\ea23\"; }\n.remixicon-alipay-fill:before { content: \"\\ea24\"; }\n.remixicon-alipay-line:before { content: \"\\ea25\"; }\n.remixicon-amazon-fill:before { content: \"\\ea26\"; }\n.remixicon-amazon-line:before { content: \"\\ea27\"; }\n.remixicon-anchor-fill:before { content: \"\\ea28\"; }\n.remixicon-anchor-line:before { content: \"\\ea29\"; }\n.remixicon-android-fill:before { content: \"\\ea2a\"; }\n.remixicon-android-line:before { content: \"\\ea2b\"; }\n.remixicon-angularjs-fill:before { content: \"\\ea2c\"; }\n.remixicon-angularjs-line:before { content: \"\\ea2d\"; }\n.remixicon-anticlockwise-2-fill:before { content: \"\\ea2e\"; }\n.remixicon-anticlockwise-2-line:before { content: \"\\ea2f\"; }\n.remixicon-anticlockwise-fill:before { content: \"\\ea30\"; }\n.remixicon-anticlockwise-line:before { content: \"\\ea31\"; }\n.remixicon-apple-fill:before { content: \"\\ea32\"; }\n.remixicon-apple-line:before { content: \"\\ea33\"; }\n.remixicon-apps-2-fill:before { content: \"\\ea34\"; }\n.remixicon-apps-2-line:before { content: \"\\ea35\"; }\n.remixicon-apps-fill:before { content: \"\\ea36\"; }\n.remixicon-apps-line:before { content: \"\\ea37\"; }\n.remixicon-archive-drawer-fill:before { content: \"\\ea38\"; }\n.remixicon-archive-drawer-line:before { content: \"\\ea39\"; }\n.remixicon-archive-fill:before { content: \"\\ea3a\"; }\n.remixicon-archive-line:before { content: \"\\ea3b\"; }\n.remixicon-arrow-down-circle-fill:before { content: \"\\ea3c\"; }\n.remixicon-arrow-down-circle-line:before { content: \"\\ea3d\"; }\n.remixicon-arrow-down-fill:before { content: \"\\ea3e\"; }\n.remixicon-arrow-down-line:before { content: \"\\ea3f\"; }\n.remixicon-arrow-down-s-fill:before { content: \"\\ea40\"; }\n.remixicon-arrow-down-s-line:before { content: \"\\ea41\"; }\n.remixicon-arrow-drop-down-fill:before { content: \"\\ea42\"; }\n.remixicon-arrow-drop-down-line:before { content: \"\\ea43\"; }\n.remixicon-arrow-drop-left-fill:before { content: \"\\ea44\"; }\n.remixicon-arrow-drop-left-line:before { content: \"\\ea45\"; }\n.remixicon-arrow-drop-right-fill:before { content: \"\\ea46\"; }\n.remixicon-arrow-drop-right-line:before { content: \"\\ea47\"; }\n.remixicon-arrow-drop-up-fill:before { content: \"\\ea48\"; }\n.remixicon-arrow-drop-up-line:before { content: \"\\ea49\"; }\n.remixicon-arrow-go-back-fill:before { content: \"\\ea4a\"; }\n.remixicon-arrow-go-back-line:before { content: \"\\ea4b\"; }\n.remixicon-arrow-go-forward-fill:before { content: \"\\ea4c\"; }\n.remixicon-arrow-go-forward-line:before { content: \"\\ea4d\"; }\n.remixicon-arrow-left-circle-fill:before { content: \"\\ea4e\"; }\n.remixicon-arrow-left-circle-line:before { content: \"\\ea4f\"; }\n.remixicon-arrow-left-down-fill:before { content: \"\\ea50\"; }\n.remixicon-arrow-left-down-line:before { content: \"\\ea51\"; }\n.remixicon-arrow-left-fill:before { content: \"\\ea52\"; }\n.remixicon-arrow-left-line:before { content: \"\\ea53\"; }\n.remixicon-arrow-left-s-fill:before { content: \"\\ea54\"; }\n.remixicon-arrow-left-s-line:before { content: \"\\ea55\"; }\n.remixicon-arrow-left-up-fill:before { content: \"\\ea56\"; }\n.remixicon-arrow-left-up-line:before { content: \"\\ea57\"; }\n.remixicon-arrow-right-circle-fill:before { content: \"\\ea58\"; }\n.remixicon-arrow-right-circle-line:before { content: \"\\ea59\"; }\n.remixicon-arrow-right-down-fill:before { content: \"\\ea5a\"; }\n.remixicon-arrow-right-down-line:before { content: \"\\ea5b\"; }\n.remixicon-arrow-right-fill:before { content: \"\\ea5c\"; }\n.remixicon-arrow-right-line:before { content: \"\\ea5d\"; }\n.remixicon-arrow-right-s-fill:before { content: \"\\ea5e\"; }\n.remixicon-arrow-right-s-line:before { content: \"\\ea5f\"; }\n.remixicon-arrow-right-up-fill:before { content: \"\\ea60\"; }\n.remixicon-arrow-right-up-line:before { content: \"\\ea61\"; }\n.remixicon-arrow-up-circle-fill:before { content: \"\\ea62\"; }\n.remixicon-arrow-up-circle-line:before { content: \"\\ea63\"; }\n.remixicon-arrow-up-fill:before { content: \"\\ea64\"; }\n.remixicon-arrow-up-line:before { content: \"\\ea65\"; }\n.remixicon-arrow-up-s-fill:before { content: \"\\ea66\"; }\n.remixicon-arrow-up-s-line:before { content: \"\\ea67\"; }\n.remixicon-artboard-2-fill:before { content: \"\\ea68\"; }\n.remixicon-artboard-2-line:before { content: \"\\ea69\"; }\n.remixicon-artboard-fill:before { content: \"\\ea6a\"; }\n.remixicon-artboard-line:before { content: \"\\ea6b\"; }\n.remixicon-article-fill:before { content: \"\\ea6c\"; }\n.remixicon-article-line:before { content: \"\\ea6d\"; }\n.remixicon-at-fill:before { content: \"\\ea6e\"; }\n.remixicon-at-line:before { content: \"\\ea6f\"; }\n.remixicon-attachment-2:before { content: \"\\ea70\"; }\n.remixicon-attachment-fill:before { content: \"\\ea71\"; }\n.remixicon-attachment-line:before { content: \"\\ea72\"; }\n.remixicon-award-fill:before { content: \"\\ea73\"; }\n.remixicon-award-line:before { content: \"\\ea74\"; }\n.remixicon-baidu-fill:before { content: \"\\ea75\"; }\n.remixicon-baidu-line:before { content: \"\\ea76\"; }\n.remixicon-ball-pen-fill:before { content: \"\\ea77\"; }\n.remixicon-ball-pen-line:before { content: \"\\ea78\"; }\n.remixicon-bank-card-2-fill:before { content: \"\\ea79\"; }\n.remixicon-bank-card-2-line:before { content: \"\\ea7a\"; }\n.remixicon-bank-card-fill:before { content: \"\\ea7b\"; }\n.remixicon-bank-card-line:before { content: \"\\ea7c\"; }\n.remixicon-bank-fill:before { content: \"\\ea7d\"; }\n.remixicon-bank-line:before { content: \"\\ea7e\"; }\n.remixicon-bar-chart-2-fill:before { content: \"\\ea7f\"; }\n.remixicon-bar-chart-2-line:before { content: \"\\ea80\"; }\n.remixicon-bar-chart-box-fill:before { content: \"\\ea81\"; }\n.remixicon-bar-chart-box-line:before { content: \"\\ea82\"; }\n.remixicon-bar-chart-fill:before { content: \"\\ea83\"; }\n.remixicon-bar-chart-grouped-fill:before { content: \"\\ea84\"; }\n.remixicon-bar-chart-grouped-line:before { content: \"\\ea85\"; }\n.remixicon-bar-chart-horizontal-fill:before { content: \"\\ea86\"; }\n.remixicon-bar-chart-horizontal-line:before { content: \"\\ea87\"; }\n.remixicon-bar-chart-line:before { content: \"\\ea88\"; }\n.remixicon-barcode-box-fill:before { content: \"\\ea89\"; }\n.remixicon-barcode-box-line:before { content: \"\\ea8a\"; }\n.remixicon-barcode-fill:before { content: \"\\ea8b\"; }\n.remixicon-barcode-line:before { content: \"\\ea8c\"; }\n.remixicon-barricade-fill:before { content: \"\\ea8d\"; }\n.remixicon-barricade-line:before { content: \"\\ea8e\"; }\n.remixicon-base-station-fill:before { content: \"\\ea8f\"; }\n.remixicon-base-station-line:before { content: \"\\ea90\"; }\n.remixicon-battery-2-charge-fill:before { content: \"\\ea91\"; }\n.remixicon-battery-2-charge-line:before { content: \"\\ea92\"; }\n.remixicon-battery-2-fill:before { content: \"\\ea93\"; }\n.remixicon-battery-2-line:before { content: \"\\ea94\"; }\n.remixicon-battery-charge-fill:before { content: \"\\ea95\"; }\n.remixicon-battery-charge-line:before { content: \"\\ea96\"; }\n.remixicon-battery-fill:before { content: \"\\ea97\"; }\n.remixicon-battery-line:before { content: \"\\ea98\"; }\n.remixicon-battery-low-fill:before { content: \"\\ea99\"; }\n.remixicon-battery-low-line:before { content: \"\\ea9a\"; }\n.remixicon-behance-fill:before { content: \"\\ea9b\"; }\n.remixicon-behance-line:before { content: \"\\ea9c\"; }\n.remixicon-bike-fill:before { content: \"\\ea9d\"; }\n.remixicon-bike-line:before { content: \"\\ea9e\"; }\n.remixicon-bill-fill:before { content: \"\\ea9f\"; }\n.remixicon-bill-line:before { content: \"\\eaa0\"; }\n.remixicon-bit-coin-fill:before { content: \"\\eaa1\"; }\n.remixicon-bit-coin-line:before { content: \"\\eaa2\"; }\n.remixicon-bluetooth-connect-fill:before { content: \"\\eaa3\"; }\n.remixicon-bluetooth-connect-line:before { content: \"\\eaa4\"; }\n.remixicon-bluetooth-fill:before { content: \"\\eaa5\"; }\n.remixicon-bluetooth-line:before { content: \"\\eaa6\"; }\n.remixicon-blur-off-fill:before { content: \"\\eaa7\"; }\n.remixicon-blur-off-line:before { content: \"\\eaa8\"; }\n.remixicon-bold:before { content: \"\\eaa9\"; }\n.remixicon-book-2-fill:before { content: \"\\eaaa\"; }\n.remixicon-book-2-line:before { content: \"\\eaab\"; }\n.remixicon-book-3-fill:before { content: \"\\eaac\"; }\n.remixicon-book-3-line:before { content: \"\\eaad\"; }\n.remixicon-book-fill:before { content: \"\\eaae\"; }\n.remixicon-book-line:before { content: \"\\eaaf\"; }\n.remixicon-book-mark-fill:before { content: \"\\eab0\"; }\n.remixicon-book-mark-line:before { content: \"\\eab1\"; }\n.remixicon-book-open-fill:before { content: \"\\eab2\"; }\n.remixicon-book-open-line:before { content: \"\\eab3\"; }\n.remixicon-book-read-fill:before { content: \"\\eab4\"; }\n.remixicon-book-read-line:before { content: \"\\eab5\"; }\n.remixicon-bookmark-2-fill:before { content: \"\\eab6\"; }\n.remixicon-bookmark-2-line:before { content: \"\\eab7\"; }\n.remixicon-bookmark-3-fill:before { content: \"\\eab8\"; }\n.remixicon-bookmark-3-line:before { content: \"\\eab9\"; }\n.remixicon-bookmark-fill:before { content: \"\\eaba\"; }\n.remixicon-bookmark-line:before { content: \"\\eabb\"; }\n.remixicon-braces-fill:before { content: \"\\eabc\"; }\n.remixicon-braces-line:before { content: \"\\eabd\"; }\n.remixicon-brackets-fill:before { content: \"\\eabe\"; }\n.remixicon-brackets-line:before { content: \"\\eabf\"; }\n.remixicon-briefcase-2-fill:before { content: \"\\eac0\"; }\n.remixicon-briefcase-2-line:before { content: \"\\eac1\"; }\n.remixicon-briefcase-3-fill:before { content: \"\\eac2\"; }\n.remixicon-briefcase-3-line:before { content: \"\\eac3\"; }\n.remixicon-briefcase-4-fill:before { content: \"\\eac4\"; }\n.remixicon-briefcase-4-line:before { content: \"\\eac5\"; }\n.remixicon-briefcase-5-fill:before { content: \"\\eac6\"; }\n.remixicon-briefcase-5-line:before { content: \"\\eac7\"; }\n.remixicon-briefcase-fill:before { content: \"\\eac8\"; }\n.remixicon-briefcase-line:before { content: \"\\eac9\"; }\n.remixicon-broadcast-fill:before { content: \"\\eaca\"; }\n.remixicon-broadcast-line:before { content: \"\\eacb\"; }\n.remixicon-brush-2-fill:before { content: \"\\eacc\"; }\n.remixicon-brush-2-line:before { content: \"\\eacd\"; }\n.remixicon-brush-3-fill:before { content: \"\\eace\"; }\n.remixicon-brush-3-line:before { content: \"\\eacf\"; }\n.remixicon-brush-4-fill:before { content: \"\\ead0\"; }\n.remixicon-brush-4-line:before { content: \"\\ead1\"; }\n.remixicon-brush-fill:before { content: \"\\ead2\"; }\n.remixicon-brush-line:before { content: \"\\ead3\"; }\n.remixicon-bug-2-fill:before { content: \"\\ead4\"; }\n.remixicon-bug-2-line:before { content: \"\\ead5\"; }\n.remixicon-bug-fill:before { content: \"\\ead6\"; }\n.remixicon-bug-line:before { content: \"\\ead7\"; }\n.remixicon-building-2-fill:before { content: \"\\ead8\"; }\n.remixicon-building-2-line:before { content: \"\\ead9\"; }\n.remixicon-building-3-fill:before { content: \"\\eada\"; }\n.remixicon-building-3-line:before { content: \"\\eadb\"; }\n.remixicon-building-4-fill:before { content: \"\\eadc\"; }\n.remixicon-building-4-line:before { content: \"\\eadd\"; }\n.remixicon-building-fill:before { content: \"\\eade\"; }\n.remixicon-building-line:before { content: \"\\eadf\"; }\n.remixicon-bus-2-fill:before { content: \"\\eae0\"; }\n.remixicon-bus-2-line:before { content: \"\\eae1\"; }\n.remixicon-bus-fill:before { content: \"\\eae2\"; }\n.remixicon-bus-line:before { content: \"\\eae3\"; }\n.remixicon-calculator-fill:before { content: \"\\eae4\"; }\n.remixicon-calculator-line:before { content: \"\\eae5\"; }\n.remixicon-calendar-2-fill:before { content: \"\\eae6\"; }\n.remixicon-calendar-2-line:before { content: \"\\eae7\"; }\n.remixicon-calendar-event-fill:before { content: \"\\eae8\"; }\n.remixicon-calendar-event-line:before { content: \"\\eae9\"; }\n.remixicon-calendar-fill:before { content: \"\\eaea\"; }\n.remixicon-calendar-line:before { content: \"\\eaeb\"; }\n.remixicon-calendar-todo-fill:before { content: \"\\eaec\"; }\n.remixicon-calendar-todo-line:before { content: \"\\eaed\"; }\n.remixicon-camera-2-fill:before { content: \"\\eaee\"; }\n.remixicon-camera-2-line:before { content: \"\\eaef\"; }\n.remixicon-camera-3-fill:before { content: \"\\eaf0\"; }\n.remixicon-camera-3-line:before { content: \"\\eaf1\"; }\n.remixicon-camera-fill:before { content: \"\\eaf2\"; }\n.remixicon-camera-lens-fill:before { content: \"\\eaf3\"; }\n.remixicon-camera-lens-line:before { content: \"\\eaf4\"; }\n.remixicon-camera-line:before { content: \"\\eaf5\"; }\n.remixicon-camera-off-fill:before { content: \"\\eaf6\"; }\n.remixicon-camera-off-line:before { content: \"\\eaf7\"; }\n.remixicon-camera-switch-fill:before { content: \"\\eaf8\"; }\n.remixicon-camera-switch-line:before { content: \"\\eaf9\"; }\n.remixicon-car-fill:before { content: \"\\eafa\"; }\n.remixicon-car-line:before { content: \"\\eafb\"; }\n.remixicon-car-washing-fill:before { content: \"\\eafc\"; }\n.remixicon-car-washing-line:before { content: \"\\eafd\"; }\n.remixicon-cast-fill:before { content: \"\\eafe\"; }\n.remixicon-cast-line:before { content: \"\\eaff\"; }\n.remixicon-cellphone-fill:before { content: \"\\eb00\"; }\n.remixicon-cellphone-line:before { content: \"\\eb01\"; }\n.remixicon-celsius-fill:before { content: \"\\eb02\"; }\n.remixicon-celsius-line:before { content: \"\\eb03\"; }\n.remixicon-charging-pile-2-fill:before { content: \"\\eb04\"; }\n.remixicon-charging-pile-2-line:before { content: \"\\eb05\"; }\n.remixicon-charging-pile-fill:before { content: \"\\eb06\"; }\n.remixicon-charging-pile-line:before { content: \"\\eb07\"; }\n.remixicon-chat-1-fill:before { content: \"\\eb08\"; }\n.remixicon-chat-1-line:before { content: \"\\eb09\"; }\n.remixicon-chat-2-fill:before { content: \"\\eb0a\"; }\n.remixicon-chat-2-line:before { content: \"\\eb0b\"; }\n.remixicon-chat-3-fill:before { content: \"\\eb0c\"; }\n.remixicon-chat-3-line:before { content: \"\\eb0d\"; }\n.remixicon-chat-4-fill:before { content: \"\\eb0e\"; }\n.remixicon-chat-4-line:before { content: \"\\eb0f\"; }\n.remixicon-chat-check-fill:before { content: \"\\eb10\"; }\n.remixicon-chat-check-line:before { content: \"\\eb11\"; }\n.remixicon-chat-delete-fill:before { content: \"\\eb12\"; }\n.remixicon-chat-delete-line:before { content: \"\\eb13\"; }\n.remixicon-chat-download-fill:before { content: \"\\eb14\"; }\n.remixicon-chat-download-line:before { content: \"\\eb15\"; }\n.remixicon-chat-forward-fill:before { content: \"\\eb16\"; }\n.remixicon-chat-forward-line:before { content: \"\\eb17\"; }\n.remixicon-chat-heart-fill:before { content: \"\\eb18\"; }\n.remixicon-chat-heart-line:before { content: \"\\eb19\"; }\n.remixicon-chat-new-fill:before { content: \"\\eb1a\"; }\n.remixicon-chat-new-line:before { content: \"\\eb1b\"; }\n.remixicon-chat-settings-fill:before { content: \"\\eb1c\"; }\n.remixicon-chat-settings-line:before { content: \"\\eb1d\"; }\n.remixicon-chat-smile-2-fill:before { content: \"\\eb1e\"; }\n.remixicon-chat-smile-2-line:before { content: \"\\eb1f\"; }\n.remixicon-chat-smile-3-fill:before { content: \"\\eb20\"; }\n.remixicon-chat-smile-3-line:before { content: \"\\eb21\"; }\n.remixicon-chat-smile-fill:before { content: \"\\eb22\"; }\n.remixicon-chat-smile-line:before { content: \"\\eb23\"; }\n.remixicon-chat-upload-fill:before { content: \"\\eb24\"; }\n.remixicon-chat-upload-line:before { content: \"\\eb25\"; }\n.remixicon-chat-voice-fill:before { content: \"\\eb26\"; }\n.remixicon-chat-voice-line:before { content: \"\\eb27\"; }\n.remixicon-check-double-fill:before { content: \"\\eb28\"; }\n.remixicon-check-double-line:before { content: \"\\eb29\"; }\n.remixicon-check-fill:before { content: \"\\eb2a\"; }\n.remixicon-check-line:before { content: \"\\eb2b\"; }\n.remixicon-checkbox-blank-circle-fill:before { content: \"\\eb2c\"; }\n.remixicon-checkbox-blank-circle-line:before { content: \"\\eb2d\"; }\n.remixicon-checkbox-blank-fill:before { content: \"\\eb2e\"; }\n.remixicon-checkbox-blank-line:before { content: \"\\eb2f\"; }\n.remixicon-checkbox-circle-fill:before { content: \"\\eb30\"; }\n.remixicon-checkbox-circle-line:before { content: \"\\eb31\"; }\n.remixicon-checkbox-fill:before { content: \"\\eb32\"; }\n.remixicon-checkbox-indeterminate-fill:before { content: \"\\eb33\"; }\n.remixicon-checkbox-indeterminate-line:before { content: \"\\eb34\"; }\n.remixicon-checkbox-line:before { content: \"\\eb35\"; }\n.remixicon-checkbox-multiple-blank-fill:before { content: \"\\eb36\"; }\n.remixicon-checkbox-multiple-blank-line:before { content: \"\\eb37\"; }\n.remixicon-checkbox-multiple-fill:before { content: \"\\eb38\"; }\n.remixicon-checkbox-multiple-line:before { content: \"\\eb39\"; }\n.remixicon-china-railway-fill:before { content: \"\\eb3a\"; }\n.remixicon-china-railway-line:before { content: \"\\eb3b\"; }\n.remixicon-chrome-fill:before { content: \"\\eb3c\"; }\n.remixicon-chrome-line:before { content: \"\\eb3d\"; }\n.remixicon-clapperboard-fill:before { content: \"\\eb3e\"; }\n.remixicon-clapperboard-line:before { content: \"\\eb3f\"; }\n.remixicon-clipboard-fill:before { content: \"\\eb40\"; }\n.remixicon-clipboard-line:before { content: \"\\eb41\"; }\n.remixicon-clockwise-2-fill:before { content: \"\\eb42\"; }\n.remixicon-clockwise-2-line:before { content: \"\\eb43\"; }\n.remixicon-clockwise-fill:before { content: \"\\eb44\"; }\n.remixicon-clockwise-line:before { content: \"\\eb45\"; }\n.remixicon-close-circle-fill:before { content: \"\\eb46\"; }\n.remixicon-close-circle-line:before { content: \"\\eb47\"; }\n.remixicon-close-fill:before { content: \"\\eb48\"; }\n.remixicon-close-line:before { content: \"\\eb49\"; }\n.remixicon-cloud-fill:before { content: \"\\eb4a\"; }\n.remixicon-cloud-line:before { content: \"\\eb4b\"; }\n.remixicon-cloud-windy-fill:before { content: \"\\eb4c\"; }\n.remixicon-cloud-windy-line:before { content: \"\\eb4d\"; }\n.remixicon-cloudy-2-fill:before { content: \"\\eb4e\"; }\n.remixicon-cloudy-2-line:before { content: \"\\eb4f\"; }\n.remixicon-cloudy-fill:before { content: \"\\eb50\"; }\n.remixicon-cloudy-line:before { content: \"\\eb51\"; }\n.remixicon-code-box-fill:before { content: \"\\eb52\"; }\n.remixicon-code-box-line:before { content: \"\\eb53\"; }\n.remixicon-code-fill:before { content: \"\\eb54\"; }\n.remixicon-code-line:before { content: \"\\eb55\"; }\n.remixicon-code-s-fill:before { content: \"\\eb56\"; }\n.remixicon-code-s-line:before { content: \"\\eb57\"; }\n.remixicon-code-s-slash-fill:before { content: \"\\eb58\"; }\n.remixicon-code-s-slash-line:before { content: \"\\eb59\"; }\n.remixicon-code-view:before { content: \"\\eb5a\"; }\n.remixicon-codepen-fill:before { content: \"\\eb5b\"; }\n.remixicon-codepen-line:before { content: \"\\eb5c\"; }\n.remixicon-command-fill:before { content: \"\\eb5d\"; }\n.remixicon-command-line:before { content: \"\\eb5e\"; }\n.remixicon-community-fill:before { content: \"\\eb5f\"; }\n.remixicon-community-line:before { content: \"\\eb60\"; }\n.remixicon-compass-2-fill:before { content: \"\\eb61\"; }\n.remixicon-compass-2-line:before { content: \"\\eb62\"; }\n.remixicon-compass-3-fill:before { content: \"\\eb63\"; }\n.remixicon-compass-3-line:before { content: \"\\eb64\"; }\n.remixicon-compass-4-fill:before { content: \"\\eb65\"; }\n.remixicon-compass-4-line:before { content: \"\\eb66\"; }\n.remixicon-compass-discover-fill:before { content: \"\\eb67\"; }\n.remixicon-compass-discover-line:before { content: \"\\eb68\"; }\n.remixicon-compass-fill:before { content: \"\\eb69\"; }\n.remixicon-compass-line:before { content: \"\\eb6a\"; }\n.remixicon-compasses-2-fill:before { content: \"\\eb6b\"; }\n.remixicon-compasses-2-line:before { content: \"\\eb6c\"; }\n.remixicon-compasses-fill:before { content: \"\\eb6d\"; }\n.remixicon-compasses-line:before { content: \"\\eb6e\"; }\n.remixicon-computer-fill:before { content: \"\\eb6f\"; }\n.remixicon-computer-line:before { content: \"\\eb70\"; }\n.remixicon-contacts-book-2-fill:before { content: \"\\eb71\"; }\n.remixicon-contacts-book-2-line:before { content: \"\\eb72\"; }\n.remixicon-contacts-book-fill:before { content: \"\\eb73\"; }\n.remixicon-contacts-book-line:before { content: \"\\eb74\"; }\n.remixicon-contacts-fill:before { content: \"\\eb75\"; }\n.remixicon-contacts-line:before { content: \"\\eb76\"; }\n.remixicon-contrast-2-fill:before { content: \"\\eb77\"; }\n.remixicon-contrast-2-line:before { content: \"\\eb78\"; }\n.remixicon-contrast-drop-2-fill:before { content: \"\\eb79\"; }\n.remixicon-contrast-drop-2-line:before { content: \"\\eb7a\"; }\n.remixicon-contrast-drop-fill:before { content: \"\\eb7b\"; }\n.remixicon-contrast-drop-line:before { content: \"\\eb7c\"; }\n.remixicon-contrast-fill:before { content: \"\\eb7d\"; }\n.remixicon-contrast-line:before { content: \"\\eb7e\"; }\n.remixicon-copper-coin-fill:before { content: \"\\eb7f\"; }\n.remixicon-copper-coin-line:before { content: \"\\eb80\"; }\n.remixicon-copper-diamond-fill:before { content: \"\\eb81\"; }\n.remixicon-copper-diamond-line:before { content: \"\\eb82\"; }\n.remixicon-coreos-fill:before { content: \"\\eb83\"; }\n.remixicon-coreos-line:before { content: \"\\eb84\"; }\n.remixicon-coupon-2-fill:before { content: \"\\eb85\"; }\n.remixicon-coupon-2-line:before { content: \"\\eb86\"; }\n.remixicon-coupon-3-fill:before { content: \"\\eb87\"; }\n.remixicon-coupon-3-line:before { content: \"\\eb88\"; }\n.remixicon-coupon-4-fill:before { content: \"\\eb89\"; }\n.remixicon-coupon-4-line:before { content: \"\\eb8a\"; }\n.remixicon-coupon-5-fill:before { content: \"\\eb8b\"; }\n.remixicon-coupon-5-line:before { content: \"\\eb8c\"; }\n.remixicon-coupon-fill:before { content: \"\\eb8d\"; }\n.remixicon-coupon-line:before { content: \"\\eb8e\"; }\n.remixicon-cpu-fill:before { content: \"\\eb8f\"; }\n.remixicon-cpu-line:before { content: \"\\eb90\"; }\n.remixicon-crop-2-fill:before { content: \"\\eb91\"; }\n.remixicon-crop-2-line:before { content: \"\\eb92\"; }\n.remixicon-crop-fill:before { content: \"\\eb93\"; }\n.remixicon-crop-line:before { content: \"\\eb94\"; }\n.remixicon-css3-fill:before { content: \"\\eb95\"; }\n.remixicon-css3-line:before { content: \"\\eb96\"; }\n.remixicon-cup-fill:before { content: \"\\eb97\"; }\n.remixicon-cup-line:before { content: \"\\eb98\"; }\n.remixicon-currency-fill:before { content: \"\\eb99\"; }\n.remixicon-currency-line:before { content: \"\\eb9a\"; }\n.remixicon-cursor-fill:before { content: \"\\eb9b\"; }\n.remixicon-cursor-line:before { content: \"\\eb9c\"; }\n.remixicon-customer-service-2-fill:before { content: \"\\eb9d\"; }\n.remixicon-customer-service-2-line:before { content: \"\\eb9e\"; }\n.remixicon-customer-service-fill:before { content: \"\\eb9f\"; }\n.remixicon-customer-service-line:before { content: \"\\eba0\"; }\n.remixicon-dashboard-fill:before { content: \"\\eba1\"; }\n.remixicon-dashboard-line:before { content: \"\\eba2\"; }\n.remixicon-database-2-fill:before { content: \"\\eba3\"; }\n.remixicon-database-2-line:before { content: \"\\eba4\"; }\n.remixicon-database-fill:before { content: \"\\eba5\"; }\n.remixicon-database-line:before { content: \"\\eba6\"; }\n.remixicon-delete-back-2-fill:before { content: \"\\eba7\"; }\n.remixicon-delete-back-2-line:before { content: \"\\eba8\"; }\n.remixicon-delete-back-fill:before { content: \"\\eba9\"; }\n.remixicon-delete-back-line:before { content: \"\\ebaa\"; }\n.remixicon-delete-bin-2-fill:before { content: \"\\ebab\"; }\n.remixicon-delete-bin-2-line:before { content: \"\\ebac\"; }\n.remixicon-delete-bin-3-fill:before { content: \"\\ebad\"; }\n.remixicon-delete-bin-3-line:before { content: \"\\ebae\"; }\n.remixicon-delete-bin-4-fill:before { content: \"\\ebaf\"; }\n.remixicon-delete-bin-4-line:before { content: \"\\ebb0\"; }\n.remixicon-delete-bin-5-fill:before { content: \"\\ebb1\"; }\n.remixicon-delete-bin-5-line:before { content: \"\\ebb2\"; }\n.remixicon-delete-bin-6-fill:before { content: \"\\ebb3\"; }\n.remixicon-delete-bin-6-line:before { content: \"\\ebb4\"; }\n.remixicon-delete-bin-7-fill:before { content: \"\\ebb5\"; }\n.remixicon-delete-bin-7-line:before { content: \"\\ebb6\"; }\n.remixicon-delete-bin-fill:before { content: \"\\ebb7\"; }\n.remixicon-delete-bin-line:before { content: \"\\ebb8\"; }\n.remixicon-device-fill:before { content: \"\\ebb9\"; }\n.remixicon-device-line:before { content: \"\\ebba\"; }\n.remixicon-dingding-fill:before { content: \"\\ebbb\"; }\n.remixicon-dingding-line:before { content: \"\\ebbc\"; }\n.remixicon-direction-fill:before { content: \"\\ebbd\"; }\n.remixicon-direction-line:before { content: \"\\ebbe\"; }\n.remixicon-disc-fill:before { content: \"\\ebbf\"; }\n.remixicon-disc-line:before { content: \"\\ebc0\"; }\n.remixicon-discord-fill:before { content: \"\\ebc1\"; }\n.remixicon-discord-line:before { content: \"\\ebc2\"; }\n.remixicon-discuss-fill:before { content: \"\\ebc3\"; }\n.remixicon-discuss-line:before { content: \"\\ebc4\"; }\n.remixicon-divide-fill:before { content: \"\\ebc5\"; }\n.remixicon-divide-line:before { content: \"\\ebc6\"; }\n.remixicon-door-lock-box-fill:before { content: \"\\ebc7\"; }\n.remixicon-door-lock-box-line:before { content: \"\\ebc8\"; }\n.remixicon-door-lock-fill:before { content: \"\\ebc9\"; }\n.remixicon-door-lock-line:before { content: \"\\ebca\"; }\n.remixicon-douban-fill:before { content: \"\\ebcb\"; }\n.remixicon-douban-line:before { content: \"\\ebcc\"; }\n.remixicon-double-quotes-l:before { content: \"\\ebcd\"; }\n.remixicon-double-quotes-r:before { content: \"\\ebce\"; }\n.remixicon-download-2-fill:before { content: \"\\ebcf\"; }\n.remixicon-download-2-line:before { content: \"\\ebd0\"; }\n.remixicon-download-cloud-fill:before { content: \"\\ebd1\"; }\n.remixicon-download-cloud-line:before { content: \"\\ebd2\"; }\n.remixicon-download-fill:before { content: \"\\ebd3\"; }\n.remixicon-download-line:before { content: \"\\ebd4\"; }\n.remixicon-drag-move-2-fill:before { content: \"\\ebd5\"; }\n.remixicon-drag-move-2-line:before { content: \"\\ebd6\"; }\n.remixicon-drag-move-fill:before { content: \"\\ebd7\"; }\n.remixicon-drag-move-line:before { content: \"\\ebd8\"; }\n.remixicon-dribbble-fill:before { content: \"\\ebd9\"; }\n.remixicon-dribbble-line:before { content: \"\\ebda\"; }\n.remixicon-drive-fill:before { content: \"\\ebdb\"; }\n.remixicon-drive-line:before { content: \"\\ebdc\"; }\n.remixicon-drizzle-fill:before { content: \"\\ebdd\"; }\n.remixicon-drizzle-line:before { content: \"\\ebde\"; }\n.remixicon-drop-fill:before { content: \"\\ebdf\"; }\n.remixicon-drop-line:before { content: \"\\ebe0\"; }\n.remixicon-dropbox-fill:before { content: \"\\ebe1\"; }\n.remixicon-dropbox-line:before { content: \"\\ebe2\"; }\n.remixicon-dv-fill:before { content: \"\\ebe3\"; }\n.remixicon-dv-line:before { content: \"\\ebe4\"; }\n.remixicon-dvd-fill:before { content: \"\\ebe5\"; }\n.remixicon-dvd-line:before { content: \"\\ebe6\"; }\n.remixicon-e-bike-2-fill:before { content: \"\\ebe7\"; }\n.remixicon-e-bike-2-line:before { content: \"\\ebe8\"; }\n.remixicon-e-bike-fill:before { content: \"\\ebe9\"; }\n.remixicon-e-bike-line:before { content: \"\\ebea\"; }\n.remixicon-earth-fill:before { content: \"\\ebeb\"; }\n.remixicon-earth-line:before { content: \"\\ebec\"; }\n.remixicon-edge-fill:before { content: \"\\ebed\"; }\n.remixicon-edge-line:before { content: \"\\ebee\"; }\n.remixicon-edit-2-fill:before { content: \"\\ebef\"; }\n.remixicon-edit-2-line:before { content: \"\\ebf0\"; }\n.remixicon-edit-box-fill:before { content: \"\\ebf1\"; }\n.remixicon-edit-box-line:before { content: \"\\ebf2\"; }\n.remixicon-edit-circle-fill:before { content: \"\\ebf3\"; }\n.remixicon-edit-circle-line:before { content: \"\\ebf4\"; }\n.remixicon-edit-fill:before { content: \"\\ebf5\"; }\n.remixicon-edit-line:before { content: \"\\ebf6\"; }\n.remixicon-eject-fill:before { content: \"\\ebf7\"; }\n.remixicon-eject-line:before { content: \"\\ebf8\"; }\n.remixicon-emotion-2-fill:before { content: \"\\ebf9\"; }\n.remixicon-emotion-2-line:before { content: \"\\ebfa\"; }\n.remixicon-emotion-fill:before { content: \"\\ebfb\"; }\n.remixicon-emotion-happy-fill:before { content: \"\\ebfc\"; }\n.remixicon-emotion-happy-line:before { content: \"\\ebfd\"; }\n.remixicon-emotion-line:before { content: \"\\ebfe\"; }\n.remixicon-emotion-normal-fill:before { content: \"\\ebff\"; }\n.remixicon-emotion-normal-line:before { content: \"\\ec00\"; }\n.remixicon-emotion-unhappy-fill:before { content: \"\\ec01\"; }\n.remixicon-emotion-unhappy-line:before { content: \"\\ec02\"; }\n.remixicon-equalizer-fill:before { content: \"\\ec03\"; }\n.remixicon-equalizer-line:before { content: \"\\ec04\"; }\n.remixicon-eraser-fill:before { content: \"\\ec05\"; }\n.remixicon-eraser-line:before { content: \"\\ec06\"; }\n.remixicon-error-warning-fill:before { content: \"\\ec07\"; }\n.remixicon-error-warning-line:before { content: \"\\ec08\"; }\n.remixicon-evernote-fill:before { content: \"\\ec09\"; }\n.remixicon-evernote-line:before { content: \"\\ec0a\"; }\n.remixicon-exchange-box-fill:before { content: \"\\ec0b\"; }\n.remixicon-exchange-box-line:before { content: \"\\ec0c\"; }\n.remixicon-exchange-cny-fill:before { content: \"\\ec0d\"; }\n.remixicon-exchange-cny-line:before { content: \"\\ec0e\"; }\n.remixicon-exchange-dollar-fill:before { content: \"\\ec0f\"; }\n.remixicon-exchange-dollar-line:before { content: \"\\ec10\"; }\n.remixicon-exchange-fill:before { content: \"\\ec11\"; }\n.remixicon-exchange-funds-fill:before { content: \"\\ec12\"; }\n.remixicon-exchange-funds-line:before { content: \"\\ec13\"; }\n.remixicon-exchange-line:before { content: \"\\ec14\"; }\n.remixicon-eye-close-fill:before { content: \"\\ec15\"; }\n.remixicon-eye-close-line:before { content: \"\\ec16\"; }\n.remixicon-eye-fill:before { content: \"\\ec17\"; }\n.remixicon-eye-line:before { content: \"\\ec18\"; }\n.remixicon-eye-off-fill:before { content: \"\\ec19\"; }\n.remixicon-eye-off-line:before { content: \"\\ec1a\"; }\n.remixicon-facebook-box-fill:before { content: \"\\ec1b\"; }\n.remixicon-facebook-box-line:before { content: \"\\ec1c\"; }\n.remixicon-facebook-circle-fill:before { content: \"\\ec1d\"; }\n.remixicon-facebook-circle-line:before { content: \"\\ec1e\"; }\n.remixicon-facebook-fill:before { content: \"\\ec1f\"; }\n.remixicon-facebook-line:before { content: \"\\ec20\"; }\n.remixicon-fahrenheit-fill:before { content: \"\\ec21\"; }\n.remixicon-fahrenheit-line:before { content: \"\\ec22\"; }\n.remixicon-feedback-fill:before { content: \"\\ec23\"; }\n.remixicon-feedback-line:before { content: \"\\ec24\"; }\n.remixicon-file-2-fill:before { content: \"\\ec25\"; }\n.remixicon-file-2-line:before { content: \"\\ec26\"; }\n.remixicon-file-3-fill:before { content: \"\\ec27\"; }\n.remixicon-file-3-line:before { content: \"\\ec28\"; }\n.remixicon-file-4-fill:before { content: \"\\ec29\"; }\n.remixicon-file-4-line:before { content: \"\\ec2a\"; }\n.remixicon-file-add-fill:before { content: \"\\ec2b\"; }\n.remixicon-file-add-line:before { content: \"\\ec2c\"; }\n.remixicon-file-chart-2-fill:before { content: \"\\ec2d\"; }\n.remixicon-file-chart-2-line:before { content: \"\\ec2e\"; }\n.remixicon-file-chart-fill:before { content: \"\\ec2f\"; }\n.remixicon-file-chart-line:before { content: \"\\ec30\"; }\n.remixicon-file-code-fill:before { content: \"\\ec31\"; }\n.remixicon-file-code-line:before { content: \"\\ec32\"; }\n.remixicon-file-copy-2-fill:before { content: \"\\ec33\"; }\n.remixicon-file-copy-2-line:before { content: \"\\ec34\"; }\n.remixicon-file-copy-fill:before { content: \"\\ec35\"; }\n.remixicon-file-copy-line:before { content: \"\\ec36\"; }\n.remixicon-file-damage-fill:before { content: \"\\ec37\"; }\n.remixicon-file-damage-line:before { content: \"\\ec38\"; }\n.remixicon-file-download-fill:before { content: \"\\ec39\"; }\n.remixicon-file-download-line:before { content: \"\\ec3a\"; }\n.remixicon-file-edit-fill:before { content: \"\\ec3b\"; }\n.remixicon-file-edit-line:before { content: \"\\ec3c\"; }\n.remixicon-file-excel-2-fill:before { content: \"\\ec3d\"; }\n.remixicon-file-excel-2-line:before { content: \"\\ec3e\"; }\n.remixicon-file-excel-fill:before { content: \"\\ec3f\"; }\n.remixicon-file-excel-line:before { content: \"\\ec40\"; }\n.remixicon-file-fill:before { content: \"\\ec41\"; }\n.remixicon-file-forbid-fill:before { content: \"\\ec42\"; }\n.remixicon-file-forbid-line:before { content: \"\\ec43\"; }\n.remixicon-file-info-fill:before { content: \"\\ec44\"; }\n.remixicon-file-info-line:before { content: \"\\ec45\"; }\n.remixicon-file-line:before { content: \"\\ec46\"; }\n.remixicon-file-list-2-fill:before { content: \"\\ec47\"; }\n.remixicon-file-list-2-line:before { content: \"\\ec48\"; }\n.remixicon-file-list-3-fill:before { content: \"\\ec49\"; }\n.remixicon-file-list-3-line:before { content: \"\\ec4a\"; }\n.remixicon-file-list-fill:before { content: \"\\ec4b\"; }\n.remixicon-file-list-line:before { content: \"\\ec4c\"; }\n.remixicon-file-lock-fill:before { content: \"\\ec4d\"; }\n.remixicon-file-lock-line:before { content: \"\\ec4e\"; }\n.remixicon-file-mark-fill:before { content: \"\\ec4f\"; }\n.remixicon-file-mark-line:before { content: \"\\ec50\"; }\n.remixicon-file-music-fill:before { content: \"\\ec51\"; }\n.remixicon-file-music-line:before { content: \"\\ec52\"; }\n.remixicon-file-paper-fill:before { content: \"\\ec53\"; }\n.remixicon-file-paper-line:before { content: \"\\ec54\"; }\n.remixicon-file-pdf-fill:before { content: \"\\ec55\"; }\n.remixicon-file-pdf-line:before { content: \"\\ec56\"; }\n.remixicon-file-ppt-2-fill:before { content: \"\\ec57\"; }\n.remixicon-file-ppt-2-line:before { content: \"\\ec58\"; }\n.remixicon-file-ppt-fill:before { content: \"\\ec59\"; }\n.remixicon-file-ppt-line:before { content: \"\\ec5a\"; }\n.remixicon-file-reduce-fill:before { content: \"\\ec5b\"; }\n.remixicon-file-reduce-line:before { content: \"\\ec5c\"; }\n.remixicon-file-search-fill:before { content: \"\\ec5d\"; }\n.remixicon-file-search-line:before { content: \"\\ec5e\"; }\n.remixicon-file-settings-fill:before { content: \"\\ec5f\"; }\n.remixicon-file-settings-line:before { content: \"\\ec60\"; }\n.remixicon-file-shield-2-fill:before { content: \"\\ec61\"; }\n.remixicon-file-shield-2-line:before { content: \"\\ec62\"; }\n.remixicon-file-shield-fill:before { content: \"\\ec63\"; }\n.remixicon-file-shield-line:before { content: \"\\ec64\"; }\n.remixicon-file-shred-fill:before { content: \"\\ec65\"; }\n.remixicon-file-shred-line:before { content: \"\\ec66\"; }\n.remixicon-file-text-fill:before { content: \"\\ec67\"; }\n.remixicon-file-text-line:before { content: \"\\ec68\"; }\n.remixicon-file-transfer-fill:before { content: \"\\ec69\"; }\n.remixicon-file-transfer-line:before { content: \"\\ec6a\"; }\n.remixicon-file-unknow-fill:before { content: \"\\ec6b\"; }\n.remixicon-file-unknow-line:before { content: \"\\ec6c\"; }\n.remixicon-file-upload-fill:before { content: \"\\ec6d\"; }\n.remixicon-file-upload-line:before { content: \"\\ec6e\"; }\n.remixicon-file-user-fill:before { content: \"\\ec6f\"; }\n.remixicon-file-user-line:before { content: \"\\ec70\"; }\n.remixicon-file-warning-fill:before { content: \"\\ec71\"; }\n.remixicon-file-warning-line:before { content: \"\\ec72\"; }\n.remixicon-file-word-2-fill:before { content: \"\\ec73\"; }\n.remixicon-file-word-2-line:before { content: \"\\ec74\"; }\n.remixicon-file-word-fill:before { content: \"\\ec75\"; }\n.remixicon-file-word-line:before { content: \"\\ec76\"; }\n.remixicon-file-zip-fill:before { content: \"\\ec77\"; }\n.remixicon-file-zip-line:before { content: \"\\ec78\"; }\n.remixicon-film-fill:before { content: \"\\ec79\"; }\n.remixicon-film-line:before { content: \"\\ec7a\"; }\n.remixicon-filter-2-fill:before { content: \"\\ec7b\"; }\n.remixicon-filter-2-line:before { content: \"\\ec7c\"; }\n.remixicon-filter-3-fill:before { content: \"\\ec7d\"; }\n.remixicon-filter-3-line:before { content: \"\\ec7e\"; }\n.remixicon-filter-fill:before { content: \"\\ec7f\"; }\n.remixicon-filter-line:before { content: \"\\ec80\"; }\n.remixicon-find-replace-fill:before { content: \"\\ec81\"; }\n.remixicon-find-replace-line:before { content: \"\\ec82\"; }\n.remixicon-fire-fill:before { content: \"\\ec83\"; }\n.remixicon-fire-line:before { content: \"\\ec84\"; }\n.remixicon-firefox-fill:before { content: \"\\ec85\"; }\n.remixicon-firefox-line:before { content: \"\\ec86\"; }\n.remixicon-flag-2-fill:before { content: \"\\ec87\"; }\n.remixicon-flag-2-line:before { content: \"\\ec88\"; }\n.remixicon-flag-fill:before { content: \"\\ec89\"; }\n.remixicon-flag-line:before { content: \"\\ec8a\"; }\n.remixicon-flashlight-fill:before { content: \"\\ec8b\"; }\n.remixicon-flashlight-line:before { content: \"\\ec8c\"; }\n.remixicon-flight-land-fill:before { content: \"\\ec8d\"; }\n.remixicon-flight-land-line:before { content: \"\\ec8e\"; }\n.remixicon-flight-takeoff-fill:before { content: \"\\ec8f\"; }\n.remixicon-flight-takeoff-line:before { content: \"\\ec90\"; }\n.remixicon-focus-2-fill:before { content: \"\\ec91\"; }\n.remixicon-focus-2-line:before { content: \"\\ec92\"; }\n.remixicon-focus-fill:before { content: \"\\ec93\"; }\n.remixicon-focus-line:before { content: \"\\ec94\"; }\n.remixicon-foggy-fill:before { content: \"\\ec95\"; }\n.remixicon-foggy-line:before { content: \"\\ec96\"; }\n.remixicon-folder-2-fill:before { content: \"\\ec97\"; }\n.remixicon-folder-2-line:before { content: \"\\ec98\"; }\n.remixicon-folder-3-fill:before { content: \"\\ec99\"; }\n.remixicon-folder-3-line:before { content: \"\\ec9a\"; }\n.remixicon-folder-4-fill:before { content: \"\\ec9b\"; }\n.remixicon-folder-4-line:before { content: \"\\ec9c\"; }\n.remixicon-folder-5-fill:before { content: \"\\ec9d\"; }\n.remixicon-folder-5-line:before { content: \"\\ec9e\"; }\n.remixicon-folder-add-fill:before { content: \"\\ec9f\"; }\n.remixicon-folder-add-line:before { content: \"\\eca0\"; }\n.remixicon-folder-chart-2-fill:before { content: \"\\eca1\"; }\n.remixicon-folder-chart-2-line:before { content: \"\\eca2\"; }\n.remixicon-folder-chart-fill:before { content: \"\\eca3\"; }\n.remixicon-folder-chart-line:before { content: \"\\eca4\"; }\n.remixicon-folder-download-fill:before { content: \"\\eca5\"; }\n.remixicon-folder-download-line:before { content: \"\\eca6\"; }\n.remixicon-folder-fill:before { content: \"\\eca7\"; }\n.remixicon-folder-forbid-fill:before { content: \"\\eca8\"; }\n.remixicon-folder-forbid-line:before { content: \"\\eca9\"; }\n.remixicon-folder-info-fill:before { content: \"\\ecaa\"; }\n.remixicon-folder-info-line:before { content: \"\\ecab\"; }\n.remixicon-folder-line:before { content: \"\\ecac\"; }\n.remixicon-folder-lock-fill:before { content: \"\\ecad\"; }\n.remixicon-folder-lock-line:before { content: \"\\ecae\"; }\n.remixicon-folder-music-fill:before { content: \"\\ecaf\"; }\n.remixicon-folder-music-line:before { content: \"\\ecb0\"; }\n.remixicon-folder-received-fill:before { content: \"\\ecb1\"; }\n.remixicon-folder-received-line:before { content: \"\\ecb2\"; }\n.remixicon-folder-reduce-fill:before { content: \"\\ecb3\"; }\n.remixicon-folder-reduce-line:before { content: \"\\ecb4\"; }\n.remixicon-folder-settings-fill:before { content: \"\\ecb5\"; }\n.remixicon-folder-settings-line:before { content: \"\\ecb6\"; }\n.remixicon-folder-shared-fill:before { content: \"\\ecb7\"; }\n.remixicon-folder-shared-line:before { content: \"\\ecb8\"; }\n.remixicon-folder-shield-2-fill:before { content: \"\\ecb9\"; }\n.remixicon-folder-shield-2-line:before { content: \"\\ecba\"; }\n.remixicon-folder-shield-fill:before { content: \"\\ecbb\"; }\n.remixicon-folder-shield-line:before { content: \"\\ecbc\"; }\n.remixicon-folder-transfer-fill:before { content: \"\\ecbd\"; }\n.remixicon-folder-transfer-line:before { content: \"\\ecbe\"; }\n.remixicon-folder-unknow-fill:before { content: \"\\ecbf\"; }\n.remixicon-folder-unknow-line:before { content: \"\\ecc0\"; }\n.remixicon-folder-upload-fill:before { content: \"\\ecc1\"; }\n.remixicon-folder-upload-line:before { content: \"\\ecc2\"; }\n.remixicon-folder-user-fill:before { content: \"\\ecc3\"; }\n.remixicon-folder-user-line:before { content: \"\\ecc4\"; }\n.remixicon-folder-warning-fill:before { content: \"\\ecc5\"; }\n.remixicon-folder-warning-line:before { content: \"\\ecc6\"; }\n.remixicon-folders-fill:before { content: \"\\ecc7\"; }\n.remixicon-folders-line:before { content: \"\\ecc8\"; }\n.remixicon-font-color:before { content: \"\\ecc9\"; }\n.remixicon-font-size-2:before { content: \"\\ecca\"; }\n.remixicon-font-size:before { content: \"\\eccb\"; }\n.remixicon-footprint-fill:before { content: \"\\eccc\"; }\n.remixicon-footprint-line:before { content: \"\\eccd\"; }\n.remixicon-forbid-2-fill:before { content: \"\\ecce\"; }\n.remixicon-forbid-2-line:before { content: \"\\eccf\"; }\n.remixicon-forbid-fill:before { content: \"\\ecd0\"; }\n.remixicon-forbid-line:before { content: \"\\ecd1\"; }\n.remixicon-format-clear:before { content: \"\\ecd2\"; }\n.remixicon-fullscreen-exit-fill:before { content: \"\\ecd3\"; }\n.remixicon-fullscreen-exit-line:before { content: \"\\ecd4\"; }\n.remixicon-fullscreen-fill:before { content: \"\\ecd5\"; }\n.remixicon-fullscreen-line:before { content: \"\\ecd6\"; }\n.remixicon-function-fill:before { content: \"\\ecd7\"; }\n.remixicon-function-line:before { content: \"\\ecd8\"; }\n.remixicon-functions:before { content: \"\\ecd9\"; }\n.remixicon-funds-box-fill:before { content: \"\\ecda\"; }\n.remixicon-funds-box-line:before { content: \"\\ecdb\"; }\n.remixicon-funds-fill:before { content: \"\\ecdc\"; }\n.remixicon-funds-line:before { content: \"\\ecdd\"; }\n.remixicon-gallery-fill:before { content: \"\\ecde\"; }\n.remixicon-gallery-line:before { content: \"\\ecdf\"; }\n.remixicon-gas-station-fill:before { content: \"\\ece0\"; }\n.remixicon-gas-station-line:before { content: \"\\ece1\"; }\n.remixicon-genderless-fill:before { content: \"\\ece2\"; }\n.remixicon-genderless-line:before { content: \"\\ece3\"; }\n.remixicon-git-branch-fill:before { content: \"\\ece4\"; }\n.remixicon-git-branch-line:before { content: \"\\ece5\"; }\n.remixicon-git-commit-fill:before { content: \"\\ece6\"; }\n.remixicon-git-commit-line:before { content: \"\\ece7\"; }\n.remixicon-git-merge-fill:before { content: \"\\ece8\"; }\n.remixicon-git-merge-line:before { content: \"\\ece9\"; }\n.remixicon-git-pull-request-fill:before { content: \"\\ecea\"; }\n.remixicon-git-pull-request-line:before { content: \"\\eceb\"; }\n.remixicon-git-repository-commits-fill:before { content: \"\\ecec\"; }\n.remixicon-git-repository-commits-line:before { content: \"\\eced\"; }\n.remixicon-git-repository-fill:before { content: \"\\ecee\"; }\n.remixicon-git-repository-line:before { content: \"\\ecef\"; }\n.remixicon-git-repository-private-fill:before { content: \"\\ecf0\"; }\n.remixicon-git-repository-private-line:before { content: \"\\ecf1\"; }\n.remixicon-github-fill:before { content: \"\\ecf2\"; }\n.remixicon-github-line:before { content: \"\\ecf3\"; }\n.remixicon-gitlab-fill:before { content: \"\\ecf4\"; }\n.remixicon-gitlab-line:before { content: \"\\ecf5\"; }\n.remixicon-global-fill:before { content: \"\\ecf6\"; }\n.remixicon-global-line:before { content: \"\\ecf7\"; }\n.remixicon-globe-fill:before { content: \"\\ecf8\"; }\n.remixicon-globe-line:before { content: \"\\ecf9\"; }\n.remixicon-goblet-fill:before { content: \"\\ecfa\"; }\n.remixicon-goblet-line:before { content: \"\\ecfb\"; }\n.remixicon-google-fill:before { content: \"\\ecfc\"; }\n.remixicon-google-line:before { content: \"\\ecfd\"; }\n.remixicon-government-fill:before { content: \"\\ecfe\"; }\n.remixicon-government-line:before { content: \"\\ecff\"; }\n.remixicon-gps-fill:before { content: \"\\ed00\"; }\n.remixicon-gps-line:before { content: \"\\ed01\"; }\n.remixicon-gradienter-fill:before { content: \"\\ed02\"; }\n.remixicon-gradienter-line:before { content: \"\\ed03\"; }\n.remixicon-grid-fill:before { content: \"\\ed04\"; }\n.remixicon-grid-line:before { content: \"\\ed05\"; }\n.remixicon-group-2-fill:before { content: \"\\ed06\"; }\n.remixicon-group-2-line:before { content: \"\\ed07\"; }\n.remixicon-group-fill:before { content: \"\\ed08\"; }\n.remixicon-group-line:before { content: \"\\ed09\"; }\n.remixicon-guide-fill:before { content: \"\\ed0a\"; }\n.remixicon-guide-line:before { content: \"\\ed0b\"; }\n.remixicon-hail-fill:before { content: \"\\ed0c\"; }\n.remixicon-hail-line:before { content: \"\\ed0d\"; }\n.remixicon-hard-drive-2-fill:before { content: \"\\ed0e\"; }\n.remixicon-hard-drive-2-line:before { content: \"\\ed0f\"; }\n.remixicon-hard-drive-fill:before { content: \"\\ed10\"; }\n.remixicon-hard-drive-line:before { content: \"\\ed11\"; }\n.remixicon-hashtag:before { content: \"\\ed12\"; }\n.remixicon-haze-fill:before { content: \"\\ed13\"; }\n.remixicon-haze-line:before { content: \"\\ed14\"; }\n.remixicon-hd-fill:before { content: \"\\ed15\"; }\n.remixicon-hd-line:before { content: \"\\ed16\"; }\n.remixicon-heading:before { content: \"\\ed17\"; }\n.remixicon-headphone-fill:before { content: \"\\ed18\"; }\n.remixicon-headphone-line:before { content: \"\\ed19\"; }\n.remixicon-heart-2-fill:before { content: \"\\ed1a\"; }\n.remixicon-heart-2-line:before { content: \"\\ed1b\"; }\n.remixicon-heart-fill:before { content: \"\\ed1c\"; }\n.remixicon-heart-line:before { content: \"\\ed1d\"; }\n.remixicon-heavy-showers-fill:before { content: \"\\ed1e\"; }\n.remixicon-heavy-showers-line:before { content: \"\\ed1f\"; }\n.remixicon-home-2-fill:before { content: \"\\ed20\"; }\n.remixicon-home-2-line:before { content: \"\\ed21\"; }\n.remixicon-home-3-fill:before { content: \"\\ed22\"; }\n.remixicon-home-3-line:before { content: \"\\ed23\"; }\n.remixicon-home-4-fill:before { content: \"\\ed24\"; }\n.remixicon-home-4-line:before { content: \"\\ed25\"; }\n.remixicon-home-5-fill:before { content: \"\\ed26\"; }\n.remixicon-home-5-line:before { content: \"\\ed27\"; }\n.remixicon-home-6-fill:before { content: \"\\ed28\"; }\n.remixicon-home-6-line:before { content: \"\\ed29\"; }\n.remixicon-home-7-fill:before { content: \"\\ed2a\"; }\n.remixicon-home-7-line:before { content: \"\\ed2b\"; }\n.remixicon-home-8-fill:before { content: \"\\ed2c\"; }\n.remixicon-home-8-line:before { content: \"\\ed2d\"; }\n.remixicon-home-fill:before { content: \"\\ed2e\"; }\n.remixicon-home-gear-fill:before { content: \"\\ed2f\"; }\n.remixicon-home-gear-line:before { content: \"\\ed30\"; }\n.remixicon-home-heart-fill:before { content: \"\\ed31\"; }\n.remixicon-home-heart-line:before { content: \"\\ed32\"; }\n.remixicon-home-line:before { content: \"\\ed33\"; }\n.remixicon-home-smile-2-fill:before { content: \"\\ed34\"; }\n.remixicon-home-smile-2-line:before { content: \"\\ed35\"; }\n.remixicon-home-smile-fill:before { content: \"\\ed36\"; }\n.remixicon-home-smile-line:before { content: \"\\ed37\"; }\n.remixicon-home-wifi-fill:before { content: \"\\ed38\"; }\n.remixicon-home-wifi-line:before { content: \"\\ed39\"; }\n.remixicon-honour-fill:before { content: \"\\ed3a\"; }\n.remixicon-honour-line:before { content: \"\\ed3b\"; }\n.remixicon-hospital-fill:before { content: \"\\ed3c\"; }\n.remixicon-hospital-line:before { content: \"\\ed3d\"; }\n.remixicon-hotel-bed-fill:before { content: \"\\ed3e\"; }\n.remixicon-hotel-bed-line:before { content: \"\\ed3f\"; }\n.remixicon-hotel-fill:before { content: \"\\ed40\"; }\n.remixicon-hotel-line:before { content: \"\\ed41\"; }\n.remixicon-hq-fill:before { content: \"\\ed42\"; }\n.remixicon-hq-line:before { content: \"\\ed43\"; }\n.remixicon-html5-fill:before { content: \"\\ed44\"; }\n.remixicon-html5-line:before { content: \"\\ed45\"; }\n.remixicon-ie-fill:before { content: \"\\ed46\"; }\n.remixicon-ie-line:before { content: \"\\ed47\"; }\n.remixicon-image-2-fill:before { content: \"\\ed48\"; }\n.remixicon-image-2-line:before { content: \"\\ed49\"; }\n.remixicon-image-fill:before { content: \"\\ed4a\"; }\n.remixicon-image-line:before { content: \"\\ed4b\"; }\n.remixicon-inbox-archive-fill:before { content: \"\\ed4c\"; }\n.remixicon-inbox-archive-line:before { content: \"\\ed4d\"; }\n.remixicon-inbox-fill:before { content: \"\\ed4e\"; }\n.remixicon-inbox-line:before { content: \"\\ed4f\"; }\n.remixicon-increase-decrease-fill:before { content: \"\\ed50\"; }\n.remixicon-increase-decrease-line:before { content: \"\\ed51\"; }\n.remixicon-indent-decrease:before { content: \"\\ed52\"; }\n.remixicon-indent-increase:before { content: \"\\ed53\"; }\n.remixicon-indeterminate-circle-fill:before { content: \"\\ed54\"; }\n.remixicon-indeterminate-circle-line:before { content: \"\\ed55\"; }\n.remixicon-information-fill:before { content: \"\\ed56\"; }\n.remixicon-information-line:before { content: \"\\ed57\"; }\n.remixicon-input-method-fill:before { content: \"\\ed58\"; }\n.remixicon-input-method-line:before { content: \"\\ed59\"; }\n.remixicon-instagram-fill:before { content: \"\\ed5a\"; }\n.remixicon-instagram-line:before { content: \"\\ed5b\"; }\n.remixicon-invision-fill:before { content: \"\\ed5c\"; }\n.remixicon-invision-line:before { content: \"\\ed5d\"; }\n.remixicon-italic:before { content: \"\\ed5e\"; }\n.remixicon-kakao-talk-fill:before { content: \"\\ed5f\"; }\n.remixicon-kakao-talk-line:before { content: \"\\ed60\"; }\n.remixicon-key-2-fill:before { content: \"\\ed61\"; }\n.remixicon-key-2-line:before { content: \"\\ed62\"; }\n.remixicon-key-fill:before { content: \"\\ed63\"; }\n.remixicon-key-line:before { content: \"\\ed64\"; }\n.remixicon-keyboard-box-fill:before { content: \"\\ed65\"; }\n.remixicon-keyboard-box-line:before { content: \"\\ed66\"; }\n.remixicon-keyboard-fill:before { content: \"\\ed67\"; }\n.remixicon-keyboard-line:before { content: \"\\ed68\"; }\n.remixicon-keynote-fill:before { content: \"\\ed69\"; }\n.remixicon-keynote-line:before { content: \"\\ed6a\"; }\n.remixicon-landscape-fill:before { content: \"\\ed6b\"; }\n.remixicon-landscape-line:before { content: \"\\ed6c\"; }\n.remixicon-layout-column-fill:before { content: \"\\ed6d\"; }\n.remixicon-layout-column-line:before { content: \"\\ed6e\"; }\n.remixicon-layout-fill:before { content: \"\\ed6f\"; }\n.remixicon-layout-line:before { content: \"\\ed70\"; }\n.remixicon-layout-row-fill:before { content: \"\\ed71\"; }\n.remixicon-layout-row-line:before { content: \"\\ed72\"; }\n.remixicon-lightbulb-fill:before { content: \"\\ed73\"; }\n.remixicon-lightbulb-flash-fill:before { content: \"\\ed74\"; }\n.remixicon-lightbulb-flash-line:before { content: \"\\ed75\"; }\n.remixicon-lightbulb-line:before { content: \"\\ed76\"; }\n.remixicon-line-fill:before { content: \"\\ed77\"; }\n.remixicon-line-height:before { content: \"\\ed78\"; }\n.remixicon-line-line:before { content: \"\\ed79\"; }\n.remixicon-link-m:before { content: \"\\ed7a\"; }\n.remixicon-link-unlink-m:before { content: \"\\ed7b\"; }\n.remixicon-link-unlink:before { content: \"\\ed7c\"; }\n.remixicon-link:before { content: \"\\ed7d\"; }\n.remixicon-linkedin-box-fill:before { content: \"\\ed7e\"; }\n.remixicon-linkedin-box-line:before { content: \"\\ed7f\"; }\n.remixicon-linkedin-fill:before { content: \"\\ed80\"; }\n.remixicon-linkedin-line:before { content: \"\\ed81\"; }\n.remixicon-links-fill:before { content: \"\\ed82\"; }\n.remixicon-links-line:before { content: \"\\ed83\"; }\n.remixicon-list-check-2:before { content: \"\\ed84\"; }\n.remixicon-list-check:before { content: \"\\ed85\"; }\n.remixicon-list-ordered:before { content: \"\\ed86\"; }\n.remixicon-list-settings-fill:before { content: \"\\ed87\"; }\n.remixicon-list-settings-line:before { content: \"\\ed88\"; }\n.remixicon-list-unordered:before { content: \"\\ed89\"; }\n.remixicon-loader-2-fill:before { content: \"\\ed8a\"; }\n.remixicon-loader-2-line:before { content: \"\\ed8b\"; }\n.remixicon-loader-3-fill:before { content: \"\\ed8c\"; }\n.remixicon-loader-3-line:before { content: \"\\ed8d\"; }\n.remixicon-loader-4-fill:before { content: \"\\ed8e\"; }\n.remixicon-loader-4-line:before { content: \"\\ed8f\"; }\n.remixicon-loader-5-fill:before { content: \"\\ed90\"; }\n.remixicon-loader-5-line:before { content: \"\\ed91\"; }\n.remixicon-loader-fill:before { content: \"\\ed92\"; }\n.remixicon-loader-line:before { content: \"\\ed93\"; }\n.remixicon-lock-2-fill:before { content: \"\\ed94\"; }\n.remixicon-lock-2-line:before { content: \"\\ed95\"; }\n.remixicon-lock-fill:before { content: \"\\ed96\"; }\n.remixicon-lock-line:before { content: \"\\ed97\"; }\n.remixicon-lock-password-fill:before { content: \"\\ed98\"; }\n.remixicon-lock-password-line:before { content: \"\\ed99\"; }\n.remixicon-lock-unlock-fill:before { content: \"\\ed9a\"; }\n.remixicon-lock-unlock-line:before { content: \"\\ed9b\"; }\n.remixicon-login-box-fill:before { content: \"\\ed9c\"; }\n.remixicon-login-box-line:before { content: \"\\ed9d\"; }\n.remixicon-login-circle-fill:before { content: \"\\ed9e\"; }\n.remixicon-login-circle-line:before { content: \"\\ed9f\"; }\n.remixicon-logout-box-fill:before { content: \"\\eda0\"; }\n.remixicon-logout-box-line:before { content: \"\\eda1\"; }\n.remixicon-logout-circle-fill:before { content: \"\\eda2\"; }\n.remixicon-logout-circle-line:before { content: \"\\eda3\"; }\n.remixicon-mac-fill:before { content: \"\\eda4\"; }\n.remixicon-mac-line:before { content: \"\\eda5\"; }\n.remixicon-macbook-fill:before { content: \"\\eda6\"; }\n.remixicon-macbook-line:before { content: \"\\eda7\"; }\n.remixicon-magic-fill:before { content: \"\\eda8\"; }\n.remixicon-magic-line:before { content: \"\\eda9\"; }\n.remixicon-mail-add-fill:before { content: \"\\edaa\"; }\n.remixicon-mail-add-line:before { content: \"\\edab\"; }\n.remixicon-mail-check-fill:before { content: \"\\edac\"; }\n.remixicon-mail-check-line:before { content: \"\\edad\"; }\n.remixicon-mail-close-fill:before { content: \"\\edae\"; }\n.remixicon-mail-close-line:before { content: \"\\edaf\"; }\n.remixicon-mail-download-fill:before { content: \"\\edb0\"; }\n.remixicon-mail-download-line:before { content: \"\\edb1\"; }\n.remixicon-mail-fill:before { content: \"\\edb2\"; }\n.remixicon-mail-forbid-fill:before { content: \"\\edb3\"; }\n.remixicon-mail-forbid-line:before { content: \"\\edb4\"; }\n.remixicon-mail-line:before { content: \"\\edb5\"; }\n.remixicon-mail-lock-fill:before { content: \"\\edb6\"; }\n.remixicon-mail-lock-line:before { content: \"\\edb7\"; }\n.remixicon-mail-open-fill:before { content: \"\\edb8\"; }\n.remixicon-mail-open-line:before { content: \"\\edb9\"; }\n.remixicon-mail-send-fill:before { content: \"\\edba\"; }\n.remixicon-mail-send-line:before { content: \"\\edbb\"; }\n.remixicon-mail-settings-fill:before { content: \"\\edbc\"; }\n.remixicon-mail-settings-line:before { content: \"\\edbd\"; }\n.remixicon-mail-star-fill:before { content: \"\\edbe\"; }\n.remixicon-mail-star-line:before { content: \"\\edbf\"; }\n.remixicon-mail-unread-fill:before { content: \"\\edc0\"; }\n.remixicon-mail-unread-line:before { content: \"\\edc1\"; }\n.remixicon-map-2-fill:before { content: \"\\edc2\"; }\n.remixicon-map-2-line:before { content: \"\\edc3\"; }\n.remixicon-map-fill:before { content: \"\\edc4\"; }\n.remixicon-map-line:before { content: \"\\edc5\"; }\n.remixicon-map-pin-2-fill:before { content: \"\\edc6\"; }\n.remixicon-map-pin-2-line:before { content: \"\\edc7\"; }\n.remixicon-map-pin-3-fill:before { content: \"\\edc8\"; }\n.remixicon-map-pin-3-line:before { content: \"\\edc9\"; }\n.remixicon-map-pin-4-fill:before { content: \"\\edca\"; }\n.remixicon-map-pin-4-line:before { content: \"\\edcb\"; }\n.remixicon-map-pin-5-fill:before { content: \"\\edcc\"; }\n.remixicon-map-pin-5-line:before { content: \"\\edcd\"; }\n.remixicon-map-pin-add-fill:before { content: \"\\edce\"; }\n.remixicon-map-pin-add-line:before { content: \"\\edcf\"; }\n.remixicon-map-pin-fill:before { content: \"\\edd0\"; }\n.remixicon-map-pin-line:before { content: \"\\edd1\"; }\n.remixicon-map-pin-range-fill:before { content: \"\\edd2\"; }\n.remixicon-map-pin-range-line:before { content: \"\\edd3\"; }\n.remixicon-map-pin-time-fill:before { content: \"\\edd4\"; }\n.remixicon-map-pin-time-line:before { content: \"\\edd5\"; }\n.remixicon-map-pin-user-fill:before { content: \"\\edd6\"; }\n.remixicon-map-pin-user-line:before { content: \"\\edd7\"; }\n.remixicon-mark-pen-fill:before { content: \"\\edd8\"; }\n.remixicon-mark-pen-line:before { content: \"\\edd9\"; }\n.remixicon-markdown-fill:before { content: \"\\edda\"; }\n.remixicon-markdown-line:before { content: \"\\eddb\"; }\n.remixicon-markup-fill:before { content: \"\\eddc\"; }\n.remixicon-markup-line:before { content: \"\\eddd\"; }\n.remixicon-mastercard-fill:before { content: \"\\edde\"; }\n.remixicon-mastercard-line:before { content: \"\\eddf\"; }\n.remixicon-mastodon-fill:before { content: \"\\ede0\"; }\n.remixicon-mastodon-line:before { content: \"\\ede1\"; }\n.remixicon-medium-fill:before { content: \"\\ede2\"; }\n.remixicon-medium-line:before { content: \"\\ede3\"; }\n.remixicon-men-fill:before { content: \"\\ede4\"; }\n.remixicon-men-line:before { content: \"\\ede5\"; }\n.remixicon-menu-2-fill:before { content: \"\\ede6\"; }\n.remixicon-menu-2-line:before { content: \"\\ede7\"; }\n.remixicon-menu-3-fill:before { content: \"\\ede8\"; }\n.remixicon-menu-3-line:before { content: \"\\ede9\"; }\n.remixicon-menu-fill:before { content: \"\\edea\"; }\n.remixicon-menu-line:before { content: \"\\edeb\"; }\n.remixicon-message-2-fill:before { content: \"\\edec\"; }\n.remixicon-message-2-line:before { content: \"\\eded\"; }\n.remixicon-message-3-fill:before { content: \"\\edee\"; }\n.remixicon-message-3-line:before { content: \"\\edef\"; }\n.remixicon-message-fill:before { content: \"\\edf0\"; }\n.remixicon-message-line:before { content: \"\\edf1\"; }\n.remixicon-messenger-fill:before { content: \"\\edf2\"; }\n.remixicon-messenger-line:before { content: \"\\edf3\"; }\n.remixicon-mic-2-fill:before { content: \"\\edf4\"; }\n.remixicon-mic-2-line:before { content: \"\\edf5\"; }\n.remixicon-mic-fill:before { content: \"\\edf6\"; }\n.remixicon-mic-line:before { content: \"\\edf7\"; }\n.remixicon-mic-off-fill:before { content: \"\\edf8\"; }\n.remixicon-mic-off-line:before { content: \"\\edf9\"; }\n.remixicon-mini-program-fill:before { content: \"\\edfa\"; }\n.remixicon-mini-program-line:before { content: \"\\edfb\"; }\n.remixicon-mist-fill:before { content: \"\\edfc\"; }\n.remixicon-mist-line:before { content: \"\\edfd\"; }\n.remixicon-money-cny-box-fill:before { content: \"\\edfe\"; }\n.remixicon-money-cny-box-line:before { content: \"\\edff\"; }\n.remixicon-money-cny-circle-fill:before { content: \"\\ee00\"; }\n.remixicon-money-cny-circle-line:before { content: \"\\ee01\"; }\n.remixicon-money-dollar-box-fill:before { content: \"\\ee02\"; }\n.remixicon-money-dollar-box-line:before { content: \"\\ee03\"; }\n.remixicon-money-dollar-circle-fill:before { content: \"\\ee04\"; }\n.remixicon-money-dollar-circle-line:before { content: \"\\ee05\"; }\n.remixicon-money-euro-box-fill:before { content: \"\\ee06\"; }\n.remixicon-money-euro-box-line:before { content: \"\\ee07\"; }\n.remixicon-money-euro-circle-fill:before { content: \"\\ee08\"; }\n.remixicon-money-euro-circle-line:before { content: \"\\ee09\"; }\n.remixicon-money-pound-box-fill:before { content: \"\\ee0a\"; }\n.remixicon-money-pound-box-line:before { content: \"\\ee0b\"; }\n.remixicon-money-pound-circle-fill:before { content: \"\\ee0c\"; }\n.remixicon-money-pound-circle-line:before { content: \"\\ee0d\"; }\n.remixicon-moon-clear-fill:before { content: \"\\ee0e\"; }\n.remixicon-moon-clear-line:before { content: \"\\ee0f\"; }\n.remixicon-moon-cloudy-fill:before { content: \"\\ee10\"; }\n.remixicon-moon-cloudy-line:before { content: \"\\ee11\"; }\n.remixicon-moon-fill:before { content: \"\\ee12\"; }\n.remixicon-moon-foggy-fill:before { content: \"\\ee13\"; }\n.remixicon-moon-foggy-line:before { content: \"\\ee14\"; }\n.remixicon-moon-line:before { content: \"\\ee15\"; }\n.remixicon-more-2-fill:before { content: \"\\ee16\"; }\n.remixicon-more-2-line:before { content: \"\\ee17\"; }\n.remixicon-more-fill:before { content: \"\\ee18\"; }\n.remixicon-more-line:before { content: \"\\ee19\"; }\n.remixicon-motorbike-fill:before { content: \"\\ee1a\"; }\n.remixicon-motorbike-line:before { content: \"\\ee1b\"; }\n.remixicon-mouse-fill:before { content: \"\\ee1c\"; }\n.remixicon-mouse-line:before { content: \"\\ee1d\"; }\n.remixicon-movie-2-fill:before { content: \"\\ee1e\"; }\n.remixicon-movie-2-line:before { content: \"\\ee1f\"; }\n.remixicon-movie-fill:before { content: \"\\ee20\"; }\n.remixicon-movie-line:before { content: \"\\ee21\"; }\n.remixicon-music-2-fill:before { content: \"\\ee22\"; }\n.remixicon-music-2-line:before { content: \"\\ee23\"; }\n.remixicon-music-fill:before { content: \"\\ee24\"; }\n.remixicon-music-line:before { content: \"\\ee25\"; }\n.remixicon-mv-fill:before { content: \"\\ee26\"; }\n.remixicon-mv-line:before { content: \"\\ee27\"; }\n.remixicon-navigation-fill:before { content: \"\\ee28\"; }\n.remixicon-navigation-line:before { content: \"\\ee29\"; }\n.remixicon-netease-cloud-music-fill:before { content: \"\\ee2a\"; }\n.remixicon-netease-cloud-music-line:before { content: \"\\ee2b\"; }\n.remixicon-netflix-fill:before { content: \"\\ee2c\"; }\n.remixicon-netflix-line:before { content: \"\\ee2d\"; }\n.remixicon-newspaper-fill:before { content: \"\\ee2e\"; }\n.remixicon-newspaper-line:before { content: \"\\ee2f\"; }\n.remixicon-notification-2-fill:before { content: \"\\ee30\"; }\n.remixicon-notification-2-line:before { content: \"\\ee31\"; }\n.remixicon-notification-3-fill:before { content: \"\\ee32\"; }\n.remixicon-notification-3-line:before { content: \"\\ee33\"; }\n.remixicon-notification-4-fill:before { content: \"\\ee34\"; }\n.remixicon-notification-4-line:before { content: \"\\ee35\"; }\n.remixicon-notification-badge-fill:before { content: \"\\ee36\"; }\n.remixicon-notification-badge-line:before { content: \"\\ee37\"; }\n.remixicon-notification-fill:before { content: \"\\ee38\"; }\n.remixicon-notification-line:before { content: \"\\ee39\"; }\n.remixicon-notification-off-fill:before { content: \"\\ee3a\"; }\n.remixicon-notification-off-line:before { content: \"\\ee3b\"; }\n.remixicon-numbers-fill:before { content: \"\\ee3c\"; }\n.remixicon-numbers-line:before { content: \"\\ee3d\"; }\n.remixicon-oil-fill:before { content: \"\\ee3e\"; }\n.remixicon-oil-line:before { content: \"\\ee3f\"; }\n.remixicon-omega:before { content: \"\\ee40\"; }\n.remixicon-open-arm-fill:before { content: \"\\ee41\"; }\n.remixicon-open-arm-line:before { content: \"\\ee42\"; }\n.remixicon-opera-fill:before { content: \"\\ee43\"; }\n.remixicon-opera-line:before { content: \"\\ee44\"; }\n.remixicon-order-play-fill:before { content: \"\\ee45\"; }\n.remixicon-order-play-line:before { content: \"\\ee46\"; }\n.remixicon-outlet-2-fill:before { content: \"\\ee47\"; }\n.remixicon-outlet-2-line:before { content: \"\\ee48\"; }\n.remixicon-outlet-fill:before { content: \"\\ee49\"; }\n.remixicon-outlet-line:before { content: \"\\ee4a\"; }\n.remixicon-page-separator:before { content: \"\\ee4b\"; }\n.remixicon-pages-fill:before { content: \"\\ee4c\"; }\n.remixicon-pages-line:before { content: \"\\ee4d\"; }\n.remixicon-paint-brush-fill:before { content: \"\\ee4e\"; }\n.remixicon-paint-brush-line:before { content: \"\\ee4f\"; }\n.remixicon-paint-fill:before { content: \"\\ee50\"; }\n.remixicon-paint-line:before { content: \"\\ee51\"; }\n.remixicon-palette-fill:before { content: \"\\ee52\"; }\n.remixicon-palette-line:before { content: \"\\ee53\"; }\n.remixicon-pantone-fill:before { content: \"\\ee54\"; }\n.remixicon-pantone-line:before { content: \"\\ee55\"; }\n.remixicon-paragraph:before { content: \"\\ee56\"; }\n.remixicon-parent-fill:before { content: \"\\ee57\"; }\n.remixicon-parent-line:before { content: \"\\ee58\"; }\n.remixicon-parentheses-fill:before { content: \"\\ee59\"; }\n.remixicon-parentheses-line:before { content: \"\\ee5a\"; }\n.remixicon-parking-box-fill:before { content: \"\\ee5b\"; }\n.remixicon-parking-box-line:before { content: \"\\ee5c\"; }\n.remixicon-parking-fill:before { content: \"\\ee5d\"; }\n.remixicon-parking-line:before { content: \"\\ee5e\"; }\n.remixicon-patreon-fill:before { content: \"\\ee5f\"; }\n.remixicon-patreon-line:before { content: \"\\ee60\"; }\n.remixicon-pause-circle-fill:before { content: \"\\ee61\"; }\n.remixicon-pause-circle-line:before { content: \"\\ee62\"; }\n.remixicon-pause-fill:before { content: \"\\ee63\"; }\n.remixicon-pause-line:before { content: \"\\ee64\"; }\n.remixicon-pause-mini-fill:before { content: \"\\ee65\"; }\n.remixicon-pause-mini-line:before { content: \"\\ee66\"; }\n.remixicon-paypal-fill:before { content: \"\\ee67\"; }\n.remixicon-paypal-line:before { content: \"\\ee68\"; }\n.remixicon-pen-nib-fill:before { content: \"\\ee69\"; }\n.remixicon-pen-nib-line:before { content: \"\\ee6a\"; }\n.remixicon-pencil-fill:before { content: \"\\ee6b\"; }\n.remixicon-pencil-line:before { content: \"\\ee6c\"; }\n.remixicon-pencil-ruler-2-fill:before { content: \"\\ee6d\"; }\n.remixicon-pencil-ruler-2-line:before { content: \"\\ee6e\"; }\n.remixicon-pencil-ruler-fill:before { content: \"\\ee6f\"; }\n.remixicon-pencil-ruler-line:before { content: \"\\ee70\"; }\n.remixicon-percent-fill:before { content: \"\\ee71\"; }\n.remixicon-percent-line:before { content: \"\\ee72\"; }\n.remixicon-phone-camera-fill:before { content: \"\\ee73\"; }\n.remixicon-phone-camera-line:before { content: \"\\ee74\"; }\n.remixicon-phone-fill:before { content: \"\\ee75\"; }\n.remixicon-phone-line:before { content: \"\\ee76\"; }\n.remixicon-pie-chart-2-fill:before { content: \"\\ee77\"; }\n.remixicon-pie-chart-2-line:before { content: \"\\ee78\"; }\n.remixicon-pie-chart-box-fill:before { content: \"\\ee79\"; }\n.remixicon-pie-chart-box-line:before { content: \"\\ee7a\"; }\n.remixicon-pie-chart-fill:before { content: \"\\ee7b\"; }\n.remixicon-pie-chart-line:before { content: \"\\ee7c\"; }\n.remixicon-pin-distance-fill:before { content: \"\\ee7d\"; }\n.remixicon-pin-distance-line:before { content: \"\\ee7e\"; }\n.remixicon-pinterest-fill:before { content: \"\\ee7f\"; }\n.remixicon-pinterest-line:before { content: \"\\ee80\"; }\n.remixicon-plane-fill:before { content: \"\\ee81\"; }\n.remixicon-plane-line:before { content: \"\\ee82\"; }\n.remixicon-play-circle-fill:before { content: \"\\ee83\"; }\n.remixicon-play-circle-line:before { content: \"\\ee84\"; }\n.remixicon-play-fill:before { content: \"\\ee85\"; }\n.remixicon-play-line:before { content: \"\\ee86\"; }\n.remixicon-play-list-add-fill:before { content: \"\\ee87\"; }\n.remixicon-play-list-add-line:before { content: \"\\ee88\"; }\n.remixicon-play-list-fill:before { content: \"\\ee89\"; }\n.remixicon-play-list-line:before { content: \"\\ee8a\"; }\n.remixicon-play-mini-fill:before { content: \"\\ee8b\"; }\n.remixicon-play-mini-line:before { content: \"\\ee8c\"; }\n.remixicon-playstation-fill:before { content: \"\\ee8d\"; }\n.remixicon-playstation-line:before { content: \"\\ee8e\"; }\n.remixicon-plug-2-fill:before { content: \"\\ee8f\"; }\n.remixicon-plug-2-line:before { content: \"\\ee90\"; }\n.remixicon-plug-fill:before { content: \"\\ee91\"; }\n.remixicon-plug-line:before { content: \"\\ee92\"; }\n.remixicon-polaroid-2-fill:before { content: \"\\ee93\"; }\n.remixicon-polaroid-2-line:before { content: \"\\ee94\"; }\n.remixicon-polaroid-fill:before { content: \"\\ee95\"; }\n.remixicon-polaroid-line:before { content: \"\\ee96\"; }\n.remixicon-police-car-fill:before { content: \"\\ee97\"; }\n.remixicon-police-car-line:before { content: \"\\ee98\"; }\n.remixicon-price-tag-2-fill:before { content: \"\\ee99\"; }\n.remixicon-price-tag-2-line:before { content: \"\\ee9a\"; }\n.remixicon-price-tag-3-fill:before { content: \"\\ee9b\"; }\n.remixicon-price-tag-3-line:before { content: \"\\ee9c\"; }\n.remixicon-price-tag-fill:before { content: \"\\ee9d\"; }\n.remixicon-price-tag-line:before { content: \"\\ee9e\"; }\n.remixicon-printer-fill:before { content: \"\\ee9f\"; }\n.remixicon-printer-line:before { content: \"\\eea0\"; }\n.remixicon-product-hunt-fill:before { content: \"\\eea1\"; }\n.remixicon-product-hunt-line:before { content: \"\\eea2\"; }\n.remixicon-profile-fill:before { content: \"\\eea3\"; }\n.remixicon-profile-line:before { content: \"\\eea4\"; }\n.remixicon-projector-2-fill:before { content: \"\\eea5\"; }\n.remixicon-projector-2-line:before { content: \"\\eea6\"; }\n.remixicon-projector-fill:before { content: \"\\eea7\"; }\n.remixicon-projector-line:before { content: \"\\eea8\"; }\n.remixicon-qq-fill:before { content: \"\\eea9\"; }\n.remixicon-qq-line:before { content: \"\\eeaa\"; }\n.remixicon-qr-code-fill:before { content: \"\\eeab\"; }\n.remixicon-qr-code-line:before { content: \"\\eeac\"; }\n.remixicon-qr-scan-2-fill:before { content: \"\\eead\"; }\n.remixicon-qr-scan-2-line:before { content: \"\\eeae\"; }\n.remixicon-qr-scan-fill:before { content: \"\\eeaf\"; }\n.remixicon-qr-scan-line:before { content: \"\\eeb0\"; }\n.remixicon-question-answer-fill:before { content: \"\\eeb1\"; }\n.remixicon-question-answer-line:before { content: \"\\eeb2\"; }\n.remixicon-question-fill:before { content: \"\\eeb3\"; }\n.remixicon-question-line:before { content: \"\\eeb4\"; }\n.remixicon-questionnaire-fill:before { content: \"\\eeb5\"; }\n.remixicon-questionnaire-line:before { content: \"\\eeb6\"; }\n.remixicon-quill-pen-fill:before { content: \"\\eeb7\"; }\n.remixicon-quill-pen-line:before { content: \"\\eeb8\"; }\n.remixicon-radar-fill:before { content: \"\\eeb9\"; }\n.remixicon-radar-line:before { content: \"\\eeba\"; }\n.remixicon-radio-2-fill:before { content: \"\\eebb\"; }\n.remixicon-radio-2-line:before { content: \"\\eebc\"; }\n.remixicon-radio-button-fill:before { content: \"\\eebd\"; }\n.remixicon-radio-button-line:before { content: \"\\eebe\"; }\n.remixicon-radio-fill:before { content: \"\\eebf\"; }\n.remixicon-radio-line:before { content: \"\\eec0\"; }\n.remixicon-rainy-fill:before { content: \"\\eec1\"; }\n.remixicon-rainy-line:before { content: \"\\eec2\"; }\n.remixicon-reactjs-fill:before { content: \"\\eec3\"; }\n.remixicon-reactjs-line:before { content: \"\\eec4\"; }\n.remixicon-record-circle-fill:before { content: \"\\eec5\"; }\n.remixicon-record-circle-line:before { content: \"\\eec6\"; }\n.remixicon-record-mail-fill:before { content: \"\\eec7\"; }\n.remixicon-record-mail-line:before { content: \"\\eec8\"; }\n.remixicon-red-packet-fill:before { content: \"\\eec9\"; }\n.remixicon-red-packet-line:before { content: \"\\eeca\"; }\n.remixicon-reddit-fill:before { content: \"\\eecb\"; }\n.remixicon-reddit-line:before { content: \"\\eecc\"; }\n.remixicon-refresh-fill:before { content: \"\\eecd\"; }\n.remixicon-refresh-line:before { content: \"\\eece\"; }\n.remixicon-refund-fill:before { content: \"\\eecf\"; }\n.remixicon-refund-line:before { content: \"\\eed0\"; }\n.remixicon-remixicon-fill:before { content: \"\\eed1\"; }\n.remixicon-remixicon-line:before { content: \"\\eed2\"; }\n.remixicon-repeat-2-fill:before { content: \"\\eed3\"; }\n.remixicon-repeat-2-line:before { content: \"\\eed4\"; }\n.remixicon-repeat-fill:before { content: \"\\eed5\"; }\n.remixicon-repeat-line:before { content: \"\\eed6\"; }\n.remixicon-repeat-one-fill:before { content: \"\\eed7\"; }\n.remixicon-repeat-one-line:before { content: \"\\eed8\"; }\n.remixicon-reply-fill:before { content: \"\\eed9\"; }\n.remixicon-reply-line:before { content: \"\\eeda\"; }\n.remixicon-reserved-fill:before { content: \"\\eedb\"; }\n.remixicon-reserved-line:before { content: \"\\eedc\"; }\n.remixicon-restart-fill:before { content: \"\\eedd\"; }\n.remixicon-restart-line:before { content: \"\\eede\"; }\n.remixicon-restaurant-2-fill:before { content: \"\\eedf\"; }\n.remixicon-restaurant-2-line:before { content: \"\\eee0\"; }\n.remixicon-restaurant-fill:before { content: \"\\eee1\"; }\n.remixicon-restaurant-line:before { content: \"\\eee2\"; }\n.remixicon-rewind-fill:before { content: \"\\eee3\"; }\n.remixicon-rewind-line:before { content: \"\\eee4\"; }\n.remixicon-rewind-mini-fill:before { content: \"\\eee5\"; }\n.remixicon-rewind-mini-line:before { content: \"\\eee6\"; }\n.remixicon-rhythm-fill:before { content: \"\\eee7\"; }\n.remixicon-rhythm-line:before { content: \"\\eee8\"; }\n.remixicon-riding-fill:before { content: \"\\eee9\"; }\n.remixicon-riding-line:before { content: \"\\eeea\"; }\n.remixicon-road-map-fill:before { content: \"\\eeeb\"; }\n.remixicon-road-map-line:before { content: \"\\eeec\"; }\n.remixicon-roadster-fill:before { content: \"\\eeed\"; }\n.remixicon-roadster-line:before { content: \"\\eeee\"; }\n.remixicon-robot-fill:before { content: \"\\eeef\"; }\n.remixicon-robot-line:before { content: \"\\eef0\"; }\n.remixicon-rocket-2-fill:before { content: \"\\eef1\"; }\n.remixicon-rocket-2-line:before { content: \"\\eef2\"; }\n.remixicon-rocket-fill:before { content: \"\\eef3\"; }\n.remixicon-rocket-line:before { content: \"\\eef4\"; }\n.remixicon-route-fill:before { content: \"\\eef5\"; }\n.remixicon-route-line:before { content: \"\\eef6\"; }\n.remixicon-router-fill:before { content: \"\\eef7\"; }\n.remixicon-router-line:before { content: \"\\eef8\"; }\n.remixicon-rss-fill:before { content: \"\\eef9\"; }\n.remixicon-rss-line:before { content: \"\\eefa\"; }\n.remixicon-ruler-2-fill:before { content: \"\\eefb\"; }\n.remixicon-ruler-2-line:before { content: \"\\eefc\"; }\n.remixicon-ruler-fill:before { content: \"\\eefd\"; }\n.remixicon-ruler-line:before { content: \"\\eefe\"; }\n.remixicon-run-fill:before { content: \"\\eeff\"; }\n.remixicon-run-line:before { content: \"\\ef00\"; }\n.remixicon-safari-fill:before { content: \"\\ef01\"; }\n.remixicon-safari-line:before { content: \"\\ef02\"; }\n.remixicon-safe-2-fill:before { content: \"\\ef03\"; }\n.remixicon-safe-2-line:before { content: \"\\ef04\"; }\n.remixicon-safe-fill:before { content: \"\\ef05\"; }\n.remixicon-safe-line:before { content: \"\\ef06\"; }\n.remixicon-sailboat-fill:before { content: \"\\ef07\"; }\n.remixicon-sailboat-line:before { content: \"\\ef08\"; }\n.remixicon-save-2-fill:before { content: \"\\ef09\"; }\n.remixicon-save-2-line:before { content: \"\\ef0a\"; }\n.remixicon-save-3-fill:before { content: \"\\ef0b\"; }\n.remixicon-save-3-line:before { content: \"\\ef0c\"; }\n.remixicon-save-fill:before { content: \"\\ef0d\"; }\n.remixicon-save-line:before { content: \"\\ef0e\"; }\n.remixicon-scan-2-fill:before { content: \"\\ef0f\"; }\n.remixicon-scan-2-line:before { content: \"\\ef10\"; }\n.remixicon-scan-fill:before { content: \"\\ef11\"; }\n.remixicon-scan-line:before { content: \"\\ef12\"; }\n.remixicon-scissors-2-fill:before { content: \"\\ef13\"; }\n.remixicon-scissors-2-line:before { content: \"\\ef14\"; }\n.remixicon-scissors-cut-fill:before { content: \"\\ef15\"; }\n.remixicon-scissors-cut-line:before { content: \"\\ef16\"; }\n.remixicon-scissors-fill:before { content: \"\\ef17\"; }\n.remixicon-scissors-line:before { content: \"\\ef18\"; }\n.remixicon-screenshot-2-fill:before { content: \"\\ef19\"; }\n.remixicon-screenshot-2-line:before { content: \"\\ef1a\"; }\n.remixicon-screenshot-fill:before { content: \"\\ef1b\"; }\n.remixicon-screenshot-line:before { content: \"\\ef1c\"; }\n.remixicon-sd-card-fill:before { content: \"\\ef1d\"; }\n.remixicon-sd-card-line:before { content: \"\\ef1e\"; }\n.remixicon-sd-card-mini-fill:before { content: \"\\ef1f\"; }\n.remixicon-sd-card-mini-line:before { content: \"\\ef20\"; }\n.remixicon-search-2-fill:before { content: \"\\ef21\"; }\n.remixicon-search-2-line:before { content: \"\\ef22\"; }\n.remixicon-search-eye-fill:before { content: \"\\ef23\"; }\n.remixicon-search-eye-line:before { content: \"\\ef24\"; }\n.remixicon-search-fill:before { content: \"\\ef25\"; }\n.remixicon-search-line:before { content: \"\\ef26\"; }\n.remixicon-send-plane-2-fill:before { content: \"\\ef27\"; }\n.remixicon-send-plane-2-line:before { content: \"\\ef28\"; }\n.remixicon-send-plane-fill:before { content: \"\\ef29\"; }\n.remixicon-send-plane-line:before { content: \"\\ef2a\"; }\n.remixicon-sensor-fill:before { content: \"\\ef2b\"; }\n.remixicon-sensor-line:before { content: \"\\ef2c\"; }\n.remixicon-separator:before { content: \"\\ef2d\"; }\n.remixicon-server-fill:before { content: \"\\ef2e\"; }\n.remixicon-server-line:before { content: \"\\ef2f\"; }\n.remixicon-settings-2-fill:before { content: \"\\ef30\"; }\n.remixicon-settings-2-line:before { content: \"\\ef31\"; }\n.remixicon-settings-3-fill:before { content: \"\\ef32\"; }\n.remixicon-settings-3-line:before { content: \"\\ef33\"; }\n.remixicon-settings-4-fill:before { content: \"\\ef34\"; }\n.remixicon-settings-4-line:before { content: \"\\ef35\"; }\n.remixicon-settings-5-fill:before { content: \"\\ef36\"; }\n.remixicon-settings-5-line:before { content: \"\\ef37\"; }\n.remixicon-settings-6-fill:before { content: \"\\ef38\"; }\n.remixicon-settings-6-line:before { content: \"\\ef39\"; }\n.remixicon-settings-fill:before { content: \"\\ef3a\"; }\n.remixicon-settings-line:before { content: \"\\ef3b\"; }\n.remixicon-shape-2-fill:before { content: \"\\ef3c\"; }\n.remixicon-shape-2-line:before { content: \"\\ef3d\"; }\n.remixicon-shape-fill:before { content: \"\\ef3e\"; }\n.remixicon-shape-line:before { content: \"\\ef3f\"; }\n.remixicon-share-box-fill:before { content: \"\\ef40\"; }\n.remixicon-share-box-line:before { content: \"\\ef41\"; }\n.remixicon-share-circle-fill:before { content: \"\\ef42\"; }\n.remixicon-share-circle-line:before { content: \"\\ef43\"; }\n.remixicon-share-fill:before { content: \"\\ef44\"; }\n.remixicon-share-forward-2-fill:before { content: \"\\ef45\"; }\n.remixicon-share-forward-2-line:before { content: \"\\ef46\"; }\n.remixicon-share-forward-box-fill:before { content: \"\\ef47\"; }\n.remixicon-share-forward-box-line:before { content: \"\\ef48\"; }\n.remixicon-share-forward-fill:before { content: \"\\ef49\"; }\n.remixicon-share-forward-line:before { content: \"\\ef4a\"; }\n.remixicon-share-line:before { content: \"\\ef4b\"; }\n.remixicon-shield-cross-fill:before { content: \"\\ef4c\"; }\n.remixicon-shield-cross-line:before { content: \"\\ef4d\"; }\n.remixicon-shield-fill:before { content: \"\\ef4e\"; }\n.remixicon-shield-flash-fill:before { content: \"\\ef4f\"; }\n.remixicon-shield-flash-line:before { content: \"\\ef50\"; }\n.remixicon-shield-line:before { content: \"\\ef51\"; }\n.remixicon-shield-star-fill:before { content: \"\\ef52\"; }\n.remixicon-shield-star-line:before { content: \"\\ef53\"; }\n.remixicon-shield-user-fill:before { content: \"\\ef54\"; }\n.remixicon-shield-user-line:before { content: \"\\ef55\"; }\n.remixicon-ship-2-fill:before { content: \"\\ef56\"; }\n.remixicon-ship-2-line:before { content: \"\\ef57\"; }\n.remixicon-ship-fill:before { content: \"\\ef58\"; }\n.remixicon-ship-line:before { content: \"\\ef59\"; }\n.remixicon-shirt-fill:before { content: \"\\ef5a\"; }\n.remixicon-shirt-line:before { content: \"\\ef5b\"; }\n.remixicon-shopping-bag-2-fill:before { content: \"\\ef5c\"; }\n.remixicon-shopping-bag-2-line:before { content: \"\\ef5d\"; }\n.remixicon-shopping-bag-3-fill:before { content: \"\\ef5e\"; }\n.remixicon-shopping-bag-3-line:before { content: \"\\ef5f\"; }\n.remixicon-shopping-bag-fill:before { content: \"\\ef60\"; }\n.remixicon-shopping-bag-line:before { content: \"\\ef61\"; }\n.remixicon-shopping-cart-2-fill:before { content: \"\\ef62\"; }\n.remixicon-shopping-cart-2-line:before { content: \"\\ef63\"; }\n.remixicon-shopping-cart-fill:before { content: \"\\ef64\"; }\n.remixicon-shopping-cart-line:before { content: \"\\ef65\"; }\n.remixicon-showers-fill:before { content: \"\\ef66\"; }\n.remixicon-showers-line:before { content: \"\\ef67\"; }\n.remixicon-shuffle-fill:before { content: \"\\ef68\"; }\n.remixicon-shuffle-line:before { content: \"\\ef69\"; }\n.remixicon-shut-down-fill:before { content: \"\\ef6a\"; }\n.remixicon-shut-down-line:before { content: \"\\ef6b\"; }\n.remixicon-side-bar-fill:before { content: \"\\ef6c\"; }\n.remixicon-side-bar-line:before { content: \"\\ef6d\"; }\n.remixicon-signal-tower-fill:before { content: \"\\ef6e\"; }\n.remixicon-signal-tower-line:before { content: \"\\ef6f\"; }\n.remixicon-sim-card-2-fill:before { content: \"\\ef70\"; }\n.remixicon-sim-card-2-line:before { content: \"\\ef71\"; }\n.remixicon-sim-card-fill:before { content: \"\\ef72\"; }\n.remixicon-sim-card-line:before { content: \"\\ef73\"; }\n.remixicon-single-quotes-l:before { content: \"\\ef74\"; }\n.remixicon-single-quotes-r:before { content: \"\\ef75\"; }\n.remixicon-sip-fill:before { content: \"\\ef76\"; }\n.remixicon-sip-line:before { content: \"\\ef77\"; }\n.remixicon-skip-back-fill:before { content: \"\\ef78\"; }\n.remixicon-skip-back-line:before { content: \"\\ef79\"; }\n.remixicon-skip-back-mini-fill:before { content: \"\\ef7a\"; }\n.remixicon-skip-back-mini-line:before { content: \"\\ef7b\"; }\n.remixicon-skip-forward-fill:before { content: \"\\ef7c\"; }\n.remixicon-skip-forward-line:before { content: \"\\ef7d\"; }\n.remixicon-skip-forward-mini-fill:before { content: \"\\ef7e\"; }\n.remixicon-skip-forward-mini-line:before { content: \"\\ef7f\"; }\n.remixicon-skull-fill:before { content: \"\\ef80\"; }\n.remixicon-skull-line:before { content: \"\\ef81\"; }\n.remixicon-skype-fill:before { content: \"\\ef82\"; }\n.remixicon-skype-line:before { content: \"\\ef83\"; }\n.remixicon-slack-fill:before { content: \"\\ef84\"; }\n.remixicon-slack-line:before { content: \"\\ef85\"; }\n.remixicon-slice-fill:before { content: \"\\ef86\"; }\n.remixicon-slice-line:before { content: \"\\ef87\"; }\n.remixicon-slideshow-2-fill:before { content: \"\\ef88\"; }\n.remixicon-slideshow-2-line:before { content: \"\\ef89\"; }\n.remixicon-slideshow-3-fill:before { content: \"\\ef8a\"; }\n.remixicon-slideshow-3-line:before { content: \"\\ef8b\"; }\n.remixicon-slideshow-4-fill:before { content: \"\\ef8c\"; }\n.remixicon-slideshow-4-line:before { content: \"\\ef8d\"; }\n.remixicon-slideshow-fill:before { content: \"\\ef8e\"; }\n.remixicon-slideshow-line:before { content: \"\\ef8f\"; }\n.remixicon-smartphone-fill:before { content: \"\\ef90\"; }\n.remixicon-smartphone-line:before { content: \"\\ef91\"; }\n.remixicon-snapchat-fill:before { content: \"\\ef92\"; }\n.remixicon-snapchat-line:before { content: \"\\ef93\"; }\n.remixicon-snowy-fill:before { content: \"\\ef94\"; }\n.remixicon-snowy-line:before { content: \"\\ef95\"; }\n.remixicon-sound-module-fill:before { content: \"\\ef96\"; }\n.remixicon-sound-module-line:before { content: \"\\ef97\"; }\n.remixicon-space-ship-fill:before { content: \"\\ef98\"; }\n.remixicon-space-ship-line:before { content: \"\\ef99\"; }\n.remixicon-space:before { content: \"\\ef9a\"; }\n.remixicon-spam-2-fill:before { content: \"\\ef9b\"; }\n.remixicon-spam-2-line:before { content: \"\\ef9c\"; }\n.remixicon-spam-3-fill:before { content: \"\\ef9d\"; }\n.remixicon-spam-3-line:before { content: \"\\ef9e\"; }\n.remixicon-spam-fill:before { content: \"\\ef9f\"; }\n.remixicon-spam-line:before { content: \"\\efa0\"; }\n.remixicon-speaker-2-fill:before { content: \"\\efa1\"; }\n.remixicon-speaker-2-line:before { content: \"\\efa2\"; }\n.remixicon-speaker-3-fill:before { content: \"\\efa3\"; }\n.remixicon-speaker-3-line:before { content: \"\\efa4\"; }\n.remixicon-speaker-fill:before { content: \"\\efa5\"; }\n.remixicon-speaker-line:before { content: \"\\efa6\"; }\n.remixicon-speed-fill:before { content: \"\\efa7\"; }\n.remixicon-speed-line:before { content: \"\\efa8\"; }\n.remixicon-speed-mini-fill:before { content: \"\\efa9\"; }\n.remixicon-speed-mini-line:before { content: \"\\efaa\"; }\n.remixicon-spotify-fill:before { content: \"\\efab\"; }\n.remixicon-spotify-line:before { content: \"\\efac\"; }\n.remixicon-stack-fill:before { content: \"\\efad\"; }\n.remixicon-stack-line:before { content: \"\\efae\"; }\n.remixicon-stack-overflow-fill:before { content: \"\\efaf\"; }\n.remixicon-stack-overflow-line:before { content: \"\\efb0\"; }\n.remixicon-star-fill:before { content: \"\\efb1\"; }\n.remixicon-star-half-fill:before { content: \"\\efb2\"; }\n.remixicon-star-half-line:before { content: \"\\efb3\"; }\n.remixicon-star-half-s-fill:before { content: \"\\efb4\"; }\n.remixicon-star-half-s-line:before { content: \"\\efb5\"; }\n.remixicon-star-line:before { content: \"\\efb6\"; }\n.remixicon-star-s-fill:before { content: \"\\efb7\"; }\n.remixicon-star-s-line:before { content: \"\\efb8\"; }\n.remixicon-stock-fill:before { content: \"\\efb9\"; }\n.remixicon-stock-line:before { content: \"\\efba\"; }\n.remixicon-stop-circle-fill:before { content: \"\\efbb\"; }\n.remixicon-stop-circle-line:before { content: \"\\efbc\"; }\n.remixicon-stop-fill:before { content: \"\\efbd\"; }\n.remixicon-stop-line:before { content: \"\\efbe\"; }\n.remixicon-stop-mini-fill:before { content: \"\\efbf\"; }\n.remixicon-stop-mini-line:before { content: \"\\efc0\"; }\n.remixicon-store-2-fill:before { content: \"\\efc1\"; }\n.remixicon-store-2-line:before { content: \"\\efc2\"; }\n.remixicon-store-3-fill:before { content: \"\\efc3\"; }\n.remixicon-store-3-line:before { content: \"\\efc4\"; }\n.remixicon-store-fill:before { content: \"\\efc5\"; }\n.remixicon-store-line:before { content: \"\\efc6\"; }\n.remixicon-strikethrough-2:before { content: \"\\efc7\"; }\n.remixicon-strikethrough:before { content: \"\\efc8\"; }\n.remixicon-subscript-2:before { content: \"\\efc9\"; }\n.remixicon-subscript:before { content: \"\\efca\"; }\n.remixicon-subtract-fill:before { content: \"\\efcb\"; }\n.remixicon-subtract-line:before { content: \"\\efcc\"; }\n.remixicon-subway-fill:before { content: \"\\efcd\"; }\n.remixicon-subway-line:before { content: \"\\efce\"; }\n.remixicon-sun-cloudy-fill:before { content: \"\\efcf\"; }\n.remixicon-sun-cloudy-line:before { content: \"\\efd0\"; }\n.remixicon-sun-fill:before { content: \"\\efd1\"; }\n.remixicon-sun-foggy-fill:before { content: \"\\efd2\"; }\n.remixicon-sun-foggy-line:before { content: \"\\efd3\"; }\n.remixicon-sun-line:before { content: \"\\efd4\"; }\n.remixicon-superscript-2:before { content: \"\\efd5\"; }\n.remixicon-superscript:before { content: \"\\efd6\"; }\n.remixicon-surround-sound-fill:before { content: \"\\efd7\"; }\n.remixicon-surround-sound-line:before { content: \"\\efd8\"; }\n.remixicon-swap-box-fill:before { content: \"\\efd9\"; }\n.remixicon-swap-box-line:before { content: \"\\efda\"; }\n.remixicon-swap-fill:before { content: \"\\efdb\"; }\n.remixicon-swap-line:before { content: \"\\efdc\"; }\n.remixicon-switch-fill:before { content: \"\\efdd\"; }\n.remixicon-switch-line:before { content: \"\\efde\"; }\n.remixicon-t-box-fill:before { content: \"\\efdf\"; }\n.remixicon-t-box-line:before { content: \"\\efe0\"; }\n.remixicon-t-shirt-fill:before { content: \"\\efe1\"; }\n.remixicon-t-shirt-line:before { content: \"\\efe2\"; }\n.remixicon-table-2:before { content: \"\\efe3\"; }\n.remixicon-table-fill:before { content: \"\\efe4\"; }\n.remixicon-table-line:before { content: \"\\efe5\"; }\n.remixicon-tablet-fill:before { content: \"\\efe6\"; }\n.remixicon-tablet-line:before { content: \"\\efe7\"; }\n.remixicon-taobao-fill:before { content: \"\\efe8\"; }\n.remixicon-taobao-line:before { content: \"\\efe9\"; }\n.remixicon-tape-fill:before { content: \"\\efea\"; }\n.remixicon-tape-line:before { content: \"\\efeb\"; }\n.remixicon-task-fill:before { content: \"\\efec\"; }\n.remixicon-task-line:before { content: \"\\efed\"; }\n.remixicon-taxi-fill:before { content: \"\\efee\"; }\n.remixicon-taxi-line:before { content: \"\\efef\"; }\n.remixicon-telegram-fill:before { content: \"\\eff0\"; }\n.remixicon-telegram-line:before { content: \"\\eff1\"; }\n.remixicon-temp-cold-fill:before { content: \"\\eff2\"; }\n.remixicon-temp-cold-line:before { content: \"\\eff3\"; }\n.remixicon-temp-hot-fill:before { content: \"\\eff4\"; }\n.remixicon-temp-hot-line:before { content: \"\\eff5\"; }\n.remixicon-terminal-box-fill:before { content: \"\\eff6\"; }\n.remixicon-terminal-box-line:before { content: \"\\eff7\"; }\n.remixicon-terminal-fill:before { content: \"\\eff8\"; }\n.remixicon-terminal-line:before { content: \"\\eff9\"; }\n.remixicon-terminal-window-fill:before { content: \"\\effa\"; }\n.remixicon-terminal-window-line:before { content: \"\\effb\"; }\n.remixicon-text-direction-l:before { content: \"\\effc\"; }\n.remixicon-text-direction-r:before { content: \"\\effd\"; }\n.remixicon-text-spacing:before { content: \"\\effe\"; }\n.remixicon-text-wrap:before { content: \"\\efff\"; }\n.remixicon-text:before { content: \"\\f000\"; }\n.remixicon-thumb-down-fill:before { content: \"\\f001\"; }\n.remixicon-thumb-down-line:before { content: \"\\f002\"; }\n.remixicon-thumb-up-fill:before { content: \"\\f003\"; }\n.remixicon-thumb-up-line:before { content: \"\\f004\"; }\n.remixicon-thunderstorms-fill:before { content: \"\\f005\"; }\n.remixicon-thunderstorms-line:before { content: \"\\f006\"; }\n.remixicon-time-fill:before { content: \"\\f007\"; }\n.remixicon-time-line:before { content: \"\\f008\"; }\n.remixicon-timer-2-fill:before { content: \"\\f009\"; }\n.remixicon-timer-2-line:before { content: \"\\f00a\"; }\n.remixicon-timer-fill:before { content: \"\\f00b\"; }\n.remixicon-timer-flash-fill:before { content: \"\\f00c\"; }\n.remixicon-timer-flash-line:before { content: \"\\f00d\"; }\n.remixicon-timer-line:before { content: \"\\f00e\"; }\n.remixicon-todo-fill:before { content: \"\\f00f\"; }\n.remixicon-todo-line:before { content: \"\\f010\"; }\n.remixicon-toggle-fill:before { content: \"\\f011\"; }\n.remixicon-toggle-line:before { content: \"\\f012\"; }\n.remixicon-tornado-fill:before { content: \"\\f013\"; }\n.remixicon-tornado-line:before { content: \"\\f014\"; }\n.remixicon-traffic-light-fill:before { content: \"\\f015\"; }\n.remixicon-traffic-light-line:before { content: \"\\f016\"; }\n.remixicon-train-fill:before { content: \"\\f017\"; }\n.remixicon-train-line:before { content: \"\\f018\"; }\n.remixicon-travesti-fill:before { content: \"\\f019\"; }\n.remixicon-travesti-line:before { content: \"\\f01a\"; }\n.remixicon-treasure-map-fill:before { content: \"\\f01b\"; }\n.remixicon-treasure-map-line:before { content: \"\\f01c\"; }\n.remixicon-trello-fill:before { content: \"\\f01d\"; }\n.remixicon-trello-line:before { content: \"\\f01e\"; }\n.remixicon-trophy-fill:before { content: \"\\f01f\"; }\n.remixicon-trophy-line:before { content: \"\\f020\"; }\n.remixicon-truck-fill:before { content: \"\\f021\"; }\n.remixicon-truck-line:before { content: \"\\f022\"; }\n.remixicon-tumblr-fill:before { content: \"\\f023\"; }\n.remixicon-tumblr-line:before { content: \"\\f024\"; }\n.remixicon-tv-2-fill:before { content: \"\\f025\"; }\n.remixicon-tv-2-line:before { content: \"\\f026\"; }\n.remixicon-tv-fill:before { content: \"\\f027\"; }\n.remixicon-tv-line:before { content: \"\\f028\"; }\n.remixicon-twitter-fill:before { content: \"\\f029\"; }\n.remixicon-twitter-line:before { content: \"\\f02a\"; }\n.remixicon-u-disk-fill:before { content: \"\\f02b\"; }\n.remixicon-u-disk-line:before { content: \"\\f02c\"; }\n.remixicon-ubuntu-fill:before { content: \"\\f02d\"; }\n.remixicon-ubuntu-line:before { content: \"\\f02e\"; }\n.remixicon-umbrella-fill:before { content: \"\\f02f\"; }\n.remixicon-umbrella-line:before { content: \"\\f030\"; }\n.remixicon-underline:before { content: \"\\f031\"; }\n.remixicon-upload-2-fill:before { content: \"\\f032\"; }\n.remixicon-upload-2-line:before { content: \"\\f033\"; }\n.remixicon-upload-cloud-fill:before { content: \"\\f034\"; }\n.remixicon-upload-cloud-line:before { content: \"\\f035\"; }\n.remixicon-upload-fill:before { content: \"\\f036\"; }\n.remixicon-upload-line:before { content: \"\\f037\"; }\n.remixicon-user-2-fill:before { content: \"\\f038\"; }\n.remixicon-user-2-line:before { content: \"\\f039\"; }\n.remixicon-user-3-fill:before { content: \"\\f03a\"; }\n.remixicon-user-3-line:before { content: \"\\f03b\"; }\n.remixicon-user-4-fill:before { content: \"\\f03c\"; }\n.remixicon-user-4-line:before { content: \"\\f03d\"; }\n.remixicon-user-5-fill:before { content: \"\\f03e\"; }\n.remixicon-user-5-line:before { content: \"\\f03f\"; }\n.remixicon-user-add-fill:before { content: \"\\f040\"; }\n.remixicon-user-add-line:before { content: \"\\f041\"; }\n.remixicon-user-fill:before { content: \"\\f042\"; }\n.remixicon-user-follow-fill:before { content: \"\\f043\"; }\n.remixicon-user-follow-line:before { content: \"\\f044\"; }\n.remixicon-user-line:before { content: \"\\f045\"; }\n.remixicon-user-location-fill:before { content: \"\\f046\"; }\n.remixicon-user-location-line:before { content: \"\\f047\"; }\n.remixicon-user-received-2-fill:before { content: \"\\f048\"; }\n.remixicon-user-received-2-line:before { content: \"\\f049\"; }\n.remixicon-user-received-fill:before { content: \"\\f04a\"; }\n.remixicon-user-received-line:before { content: \"\\f04b\"; }\n.remixicon-user-search-fill:before { content: \"\\f04c\"; }\n.remixicon-user-search-line:before { content: \"\\f04d\"; }\n.remixicon-user-settings-fill:before { content: \"\\f04e\"; }\n.remixicon-user-settings-line:before { content: \"\\f04f\"; }\n.remixicon-user-shared-2-fill:before { content: \"\\f050\"; }\n.remixicon-user-shared-2-line:before { content: \"\\f051\"; }\n.remixicon-user-shared-fill:before { content: \"\\f052\"; }\n.remixicon-user-shared-line:before { content: \"\\f053\"; }\n.remixicon-user-smile-fill:before { content: \"\\f054\"; }\n.remixicon-user-smile-line:before { content: \"\\f055\"; }\n.remixicon-user-star-fill:before { content: \"\\f056\"; }\n.remixicon-user-star-line:before { content: \"\\f057\"; }\n.remixicon-user-unfollow-fill:before { content: \"\\f058\"; }\n.remixicon-user-unfollow-line:before { content: \"\\f059\"; }\n.remixicon-user-voice-fill:before { content: \"\\f05a\"; }\n.remixicon-user-voice-line:before { content: \"\\f05b\"; }\n.remixicon-video-chat-fill:before { content: \"\\f05c\"; }\n.remixicon-video-chat-line:before { content: \"\\f05d\"; }\n.remixicon-video-fill:before { content: \"\\f05e\"; }\n.remixicon-video-line:before { content: \"\\f05f\"; }\n.remixicon-vidicon-2-fill:before { content: \"\\f060\"; }\n.remixicon-vidicon-2-line:before { content: \"\\f061\"; }\n.remixicon-vidicon-fill:before { content: \"\\f062\"; }\n.remixicon-vidicon-line:before { content: \"\\f063\"; }\n.remixicon-vip-crown-2-fill:before { content: \"\\f064\"; }\n.remixicon-vip-crown-2-line:before { content: \"\\f065\"; }\n.remixicon-vip-crown-fill:before { content: \"\\f066\"; }\n.remixicon-vip-crown-line:before { content: \"\\f067\"; }\n.remixicon-vip-diamond-fill:before { content: \"\\f068\"; }\n.remixicon-vip-diamond-line:before { content: \"\\f069\"; }\n.remixicon-vip-fill:before { content: \"\\f06a\"; }\n.remixicon-vip-line:before { content: \"\\f06b\"; }\n.remixicon-visa-fill:before { content: \"\\f06c\"; }\n.remixicon-visa-line:before { content: \"\\f06d\"; }\n.remixicon-voiceprint-fill:before { content: \"\\f06e\"; }\n.remixicon-voiceprint-line:before { content: \"\\f06f\"; }\n.remixicon-volume-down-fill:before { content: \"\\f070\"; }\n.remixicon-volume-down-line:before { content: \"\\f071\"; }\n.remixicon-volume-mute-fill:before { content: \"\\f072\"; }\n.remixicon-volume-mute-line:before { content: \"\\f073\"; }\n.remixicon-volume-up-fill:before { content: \"\\f074\"; }\n.remixicon-volume-up-line:before { content: \"\\f075\"; }\n.remixicon-vuejs-fill:before { content: \"\\f076\"; }\n.remixicon-vuejs-line:before { content: \"\\f077\"; }\n.remixicon-walk-fill:before { content: \"\\f078\"; }\n.remixicon-walk-line:before { content: \"\\f079\"; }\n.remixicon-wallet-2-fill:before { content: \"\\f07a\"; }\n.remixicon-wallet-2-line:before { content: \"\\f07b\"; }\n.remixicon-wallet-3-fill:before { content: \"\\f07c\"; }\n.remixicon-wallet-3-line:before { content: \"\\f07d\"; }\n.remixicon-wallet-fill:before { content: \"\\f07e\"; }\n.remixicon-wallet-line:before { content: \"\\f07f\"; }\n.remixicon-water-flash-fill:before { content: \"\\f080\"; }\n.remixicon-water-flash-line:before { content: \"\\f081\"; }\n.remixicon-webcam-fill:before { content: \"\\f082\"; }\n.remixicon-webcam-line:before { content: \"\\f083\"; }\n.remixicon-wechat-2-fill:before { content: \"\\f084\"; }\n.remixicon-wechat-2-line:before { content: \"\\f085\"; }\n.remixicon-wechat-fill:before { content: \"\\f086\"; }\n.remixicon-wechat-line:before { content: \"\\f087\"; }\n.remixicon-wechat-pay-fill:before { content: \"\\f088\"; }\n.remixicon-wechat-pay-line:before { content: \"\\f089\"; }\n.remixicon-weibo-fill:before { content: \"\\f08a\"; }\n.remixicon-weibo-line:before { content: \"\\f08b\"; }\n.remixicon-whatsapp-fill:before { content: \"\\f08c\"; }\n.remixicon-whatsapp-line:before { content: \"\\f08d\"; }\n.remixicon-wifi-fill:before { content: \"\\f08e\"; }\n.remixicon-wifi-line:before { content: \"\\f08f\"; }\n.remixicon-window-2-fill:before { content: \"\\f090\"; }\n.remixicon-window-2-line:before { content: \"\\f091\"; }\n.remixicon-window-fill:before { content: \"\\f092\"; }\n.remixicon-window-line:before { content: \"\\f093\"; }\n.remixicon-windows-fill:before { content: \"\\f094\"; }\n.remixicon-windows-line:before { content: \"\\f095\"; }\n.remixicon-windy-fill:before { content: \"\\f096\"; }\n.remixicon-windy-line:before { content: \"\\f097\"; }\n.remixicon-women-fill:before { content: \"\\f098\"; }\n.remixicon-women-line:before { content: \"\\f099\"; }\n.remixicon-xbox-fill:before { content: \"\\f09a\"; }\n.remixicon-xbox-line:before { content: \"\\f09b\"; }\n.remixicon-youtube-fill:before { content: \"\\f09c\"; }\n.remixicon-youtube-line:before { content: \"\\f09d\"; }\n.remixicon-zcool-fill:before { content: \"\\f09e\"; }\n.remixicon-zcool-line:before { content: \"\\f09f\"; }\n.remixicon-zhihu-fill:before { content: \"\\f0a0\"; }\n.remixicon-zhihu-line:before { content: \"\\f0a1\"; }\n.remixicon-zoom-in-fill:before { content: \"\\f0a2\"; }\n.remixicon-zoom-in-line:before { content: \"\\f0a3\"; }\n.remixicon-zoom-out-fill:before { content: \"\\f0a4\"; }\n.remixicon-zoom-out-line:before { content: \"\\f0a5\"; }\n\n"; 922 | styleInject(css); 923 | 924 | var Icon = function (props, ref) { 925 | var name = props.name, size = props.size, component = props.component, role = props.role, ariaHidden = props.ariaHidden, userClass = props.userClass, children = props.children, type = props.type, style = props.style, remainder = __rest(props, ["name", "size", "component", "role", "ariaHidden", "userClass", "children", "type", "style"]); 926 | if (!iconList.includes(name)) { 927 | log("Could not find icon " + name); 928 | return null; 929 | } 930 | var CustomTag = component || "i"; 931 | return (createElement(CustomTag, __assign({ "aria-hidden": ariaHidden || "true", role: role || "presentation", className: [ 932 | "remixicon-" + name + (type !== undefined ? "-" + type : "") + " " + (size ? "ri-" + size : ""), 933 | userClass 934 | ] 935 | .filter(function (e) { return e; }) 936 | .join(" ") }, remainder, { ref: ref, style: style }), children)); 937 | }; 938 | var Icon$1 = memo(forwardRef(Icon)); 939 | var log = function (message) { 940 | if (!(process && process.env && process.env.NODE_ENV === "production")) { 941 | // eslint-disable-next-line no-console 942 | console.error("[react-remixicon]: " + message + "."); 943 | } 944 | }; 945 | 946 | export default Icon$1; 947 | --------------------------------------------------------------------------------