Primer commit
|
|
@ -0,0 +1,10 @@
|
|||
VITE_MAP_KEY=your_google_map_api_key
|
||||
|
||||
# Firebase Auth Development Configurations
|
||||
VITE_API_KEY=YOUR_API_KEY
|
||||
VITE_AUTH_DOMAIN=your-dev-app.firebaseapp.com
|
||||
VITE_DATABASE_URL=https://your-dev-app.firebaseio.com
|
||||
VITE_PROJECT_ID=your-dev-app
|
||||
VITE_STORAGE_BUCKET=your-dev-app.appspot.com
|
||||
VITE_MESSAGING_SENDER_ID=YOUR_MESSAGING_SENDER_ID
|
||||
VITE_APP_ID=YOUR_APP_ID
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
# dependencies
|
||||
node_modules/
|
||||
.yarn/
|
||||
|
||||
# production
|
||||
build/
|
||||
public/
|
||||
|
||||
# ide
|
||||
.vscode/
|
||||
|
||||
# external docs
|
||||
src/app/main/documentation/material-ui-components/components/*
|
||||
src/app/main/documentation/material-ui-components/pages/*
|
||||
src/app/main/documentation/third-party-components/*/examples/*
|
||||
|
||||
src/@fake-db/db/*
|
||||
**/*.{js,jsx}
|
||||
|
||||
.eslintrc.js
|
||||
tailwind.config.
|
||||
|
||||
aliases.js
|
||||
config-overrides.js
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
module.exports = {
|
||||
"root": true,
|
||||
"parser": '@typescript-eslint/parser',
|
||||
"parserOptions": {
|
||||
"tsconfigRootDir": __dirname,
|
||||
"project": ['./tsconfig.json'],
|
||||
"sourceType": "module",
|
||||
},
|
||||
"plugins": [
|
||||
"@typescript-eslint",
|
||||
"prettier",
|
||||
"unused-imports",
|
||||
],
|
||||
"extends": [
|
||||
"airbnb",
|
||||
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
||||
"plugin:prettier/recommended"
|
||||
],
|
||||
"settings": {
|
||||
"import/resolver": {
|
||||
"node": {
|
||||
"extensions": [
|
||||
".js",
|
||||
".jsx",
|
||||
".ts",
|
||||
".tsx"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"ignorePatterns": [
|
||||
"src/app/main/documentation/material-ui-components/components/**",
|
||||
"src/app/main/documentation/material-ui-components/pages/**",
|
||||
"tailwind.config.js"
|
||||
],
|
||||
"rules": {
|
||||
"prettier/prettier": [
|
||||
"warn",
|
||||
{
|
||||
"endOfLine": "auto",
|
||||
"arrowParens": "always",
|
||||
"bracketSpacing": true,
|
||||
"jsxBracketSameLine": false,
|
||||
"printWidth": 120,
|
||||
"proseWrap": "preserve",
|
||||
"requirePragma": false,
|
||||
"semi": true,
|
||||
"singleQuote": true,
|
||||
"tabWidth": 4,
|
||||
"trailingComma": "none",
|
||||
"useTabs": true,
|
||||
"singleAttributePerLine": true
|
||||
}
|
||||
],
|
||||
"quotes": [
|
||||
1,
|
||||
"single",
|
||||
{
|
||||
"allowTemplateLiterals": true,
|
||||
"avoidEscape": true
|
||||
}
|
||||
],
|
||||
// Disabling because this rule is extremely slow.
|
||||
"import/no-cycle": "off",
|
||||
// Disabling because this rule is slow and not a common violation.
|
||||
"import/no-named-as-default": "off",
|
||||
// Disabling because this rule is slow and not a common violation.
|
||||
"import/no-named-as-default-member": "off",
|
||||
// This rule is already covered by the TypeScript compiler.
|
||||
"import/default": "off",
|
||||
// This rule is already covered by the TypeScript compiler.
|
||||
"import/no-unresolved": "off",
|
||||
"operator-linebreak": "off",
|
||||
"no-param-reassign": "off",
|
||||
"implicit-arrow-linebreak": "off",
|
||||
"max-len": "off",
|
||||
"indent": "off",
|
||||
"no-shadow": "off",
|
||||
"arrow-parens": "off",
|
||||
"no-confusing-arrow": "off",
|
||||
"no-use-before-define": "off",
|
||||
"object-curly-newline": "off",
|
||||
"function-paren-newline": "off",
|
||||
"import/prefer-default-export": "off",
|
||||
"max-classes-per-file": "off",
|
||||
"react/jsx-filename-extension": "off",
|
||||
"import/extensions": "off",
|
||||
"@typescript-eslint/no-unused-vars": "off",
|
||||
"no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off",
|
||||
"unused-imports/no-unused-imports": "error",
|
||||
"unused-imports/no-unused-vars": [
|
||||
"warn",
|
||||
{ "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" }
|
||||
],
|
||||
"@typescript-eslint/ban-ts-ignore": "off",
|
||||
"@typescript-eslint/no-empty-function": "off",
|
||||
"@typescript-eslint/explicit-function-return-type": "off",
|
||||
"@typescript-eslint/no-var-requires": "off",
|
||||
"@typescript-eslint/no-use-before-define": "off",
|
||||
"@typescript-eslint/no-useless-constructor": "error",
|
||||
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||||
"@typescript-eslint/no-floating-promises": "off",
|
||||
"@typescript-eslint/no-misused-promises": "off",
|
||||
"@typescript-eslint/require-await": "off",
|
||||
"no-useless-constructor": "off",
|
||||
"no-tabs": "off",
|
||||
"react/jsx-indent": "off",
|
||||
"react/jsx-indent-props": "off",
|
||||
"react/react-in-jsx-scope": "off",
|
||||
"react/jsx-uses-react": "off",
|
||||
"react/jsx-wrap-multilines": "off",
|
||||
"react/prop-types": "warn",
|
||||
"react/require-default-props": "off",
|
||||
"react/no-unescaped-entities": "off",
|
||||
"no-underscore-dangle": "off",
|
||||
"react/jsx-no-bind": "off",
|
||||
"react/jsx-props-no-spreading": "off",
|
||||
"react/no-array-index-key": "off",
|
||||
"no-restricted-exports": ["off", { "restrictedNamedExports": ["default"] }],
|
||||
"import/no-import-module-exports": "off",
|
||||
"import/no-extraneous-dependencies": "off"
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
* text=auto eol=lf
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# See https://help.github.com/ignore-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.yarn
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.eslintcache
|
||||
|
||||
/.idea
|
||||
/.vscode
|
||||
|
||||
/src/styles/tailwind.css
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/releases
|
||||
!.yarn/plugins
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
.pnp.*
|
||||
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
// -----------------------------------------------------------------------------------------------------
|
||||
// @ Image/Vector/Icon Credits
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
Avatars - https://uifaces.co/
|
||||
Flag icons - http://www.famfamfam.com/lab/icons/flags/
|
||||
Frame vector created by Freepik - https://www.freepik.com/free-photos-vectors/frame
|
||||
A Walk Amongst Friends - Photo by Kristin Ellis on Unsplash - https://unsplash.com/photos/CbZOGbazDWQ
|
||||
Sunrise at Moraine Lake - Photo by Marlon Martinez on Unsplash - https://unsplash.com/photos/woNYcfrnp9M
|
||||
Braies Lake - Photo by Luca Nicoletti on Unsplash - https://unsplash.com/photos/dH-L5zPcv3E
|
||||
Lago di Sorapis - Photo by eberhard grossgasteiger on Unsplash - https://unsplash.com/photos/6uDg_zb20EM
|
||||
Lago di Braies - Photo by Salmen Bejaoui on Unsplash - https://unsplash.com/photos/uXTozY3CcQg
|
||||
Reaching - Photo by Justin Novello on Unsplash - https://unsplash.com/photos/Y14TNvIDllM
|
||||
Yosemite - Photo by Tim Mossholder on Unsplash - https://unsplash.com/photos/ZCrtRSSUpGI
|
||||
Never Stop Changing - Photo by John Westrock on Unsplash - https://unsplash.com/photos/_GY56uSG70U
|
||||
Fall glow - Photo by Casey Horner on Unsplash - https://unsplash.com/photos/gz19zOdgN7w
|
||||
First snow - Photo by eberhard grossgasteiger on Unsplash - https://unsplash.com/photos/LRrGf6dBjA4
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
eThis project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `npm start`
|
||||
|
||||
Runs the app in the development mode.<br>
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
|
||||
The page will reload if you make edits.<br>
|
||||
You will also see any lint errors in the console.
|
||||
|
||||
### `npm run test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.<br>
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `npm run run build`
|
||||
|
||||
Builds the app for production to the `build` folder.<br>
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.<br>
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `npm run eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
|
||||
|
||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
|
||||
|
||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* Create aliases for the paths
|
||||
*/
|
||||
const aliases = (prefix = `src`) => ({
|
||||
'@fuse': `${prefix}/@fuse`,
|
||||
'@history': `${prefix}/@history`,
|
||||
'@lodash': `${prefix}/@lodash`,
|
||||
'@mock-api': `${prefix}/@mock-api`,
|
||||
'@schema': `${prefix}/@schema`,
|
||||
'app/store': `${prefix}/app/store`,
|
||||
'app/shared-components': `${prefix}/app/shared-components`,
|
||||
'app/configs': `${prefix}/app/configs`,
|
||||
'app/theme-layouts': `${prefix}/app/theme-layouts`,
|
||||
'app/AppContext': `${prefix}/app/AppContext`,
|
||||
});
|
||||
|
||||
module.exports = aliases;
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
const path = require(`path`);
|
||||
const alias = require(`./aliases`);
|
||||
const { aliasWebpack } = require('react-app-alias');
|
||||
|
||||
const SRC = `./src`;
|
||||
|
||||
/**
|
||||
* @description Create aliases for the paths
|
||||
*/
|
||||
const aliases = alias(SRC);
|
||||
|
||||
/**
|
||||
* @description Resolve the aliases to absolute paths
|
||||
*/
|
||||
const resolvedAliases = Object.fromEntries(
|
||||
Object.entries(aliases).map(([key, value]) => [key, path.resolve(__dirname, value)])
|
||||
);
|
||||
|
||||
/**
|
||||
* @description Options for the aliasWebpack plugin
|
||||
*/
|
||||
const options = {
|
||||
alias: resolvedAliases
|
||||
};
|
||||
|
||||
/**
|
||||
* @description Override the webpack config
|
||||
* @param {*} config
|
||||
* @returns
|
||||
*/
|
||||
module.exports = function override(config) {
|
||||
config.ignoreWarnings = [{ message: /Failed to parse source map/ }];
|
||||
|
||||
return aliasWebpack(options)(config);
|
||||
};
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta name='description' content='Página de generación de facturas electronicas'>
|
||||
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'>
|
||||
<meta name='theme-color' content='#000000'>
|
||||
<base href='/'>
|
||||
|
||||
<link href='/assets/tailwind-base.css' rel='stylesheet'>
|
||||
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is added to the
|
||||
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
|
||||
-->
|
||||
<link rel='manifest' href='/manifest.json'>
|
||||
<link rel='shortcut icon' href='/logo1.svg'>
|
||||
|
||||
<!--<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">-->
|
||||
|
||||
<!-- You can choose main icon from variety of the material ui icon fonts-->
|
||||
<link href='/assets/fonts/material-design-icons/MaterialIconsOutlined.css' rel='stylesheet'>
|
||||
<!-- <link href="/assets/fonts/material-design-icons/MaterialIcons.css" rel="stylesheet">-->
|
||||
<!-- <link href="/assets/fonts/material-design-icons/MaterialIconsRound.css" rel="stylesheet">-->
|
||||
<!-- <link href="/assets/fonts/material-design-icons/MaterialIconsSharp.css" rel="stylesheet">-->
|
||||
<!-- <link href="/assets/fonts/material-design-icons/MaterialIconsTwoTone.css" rel="stylesheet">-->
|
||||
|
||||
<link href='/assets/fonts/inter/inter.css' rel='stylesheet'>
|
||||
<link href='/assets/fonts/meteocons/style.css' rel='stylesheet'>
|
||||
|
||||
<noscript id='emotion-insertion-point'></noscript>
|
||||
<!--
|
||||
Notice the use of in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>Qsoftec facturación</title>
|
||||
|
||||
<!-- FUSE Splash Screen CSS -->
|
||||
<style>
|
||||
body #fuse-splash-screen {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #fff;
|
||||
color: #F9FAFB;
|
||||
z-index: 999999;
|
||||
pointer-events: none;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
body #fuse-splash-screen img {
|
||||
width: 120px;
|
||||
max-width: 120px;
|
||||
}
|
||||
|
||||
#spinner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-top: 40px;
|
||||
width: 56px;
|
||||
}
|
||||
|
||||
#spinner > div {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background-color: #1E96F7;
|
||||
border-radius: 100%;
|
||||
display: inline-block;
|
||||
-webkit-animation: fuse-bouncedelay 1s infinite ease-in-out both;
|
||||
animation: fuse-bouncedelay 1s infinite ease-in-out both;
|
||||
}
|
||||
|
||||
#spinner .bounce1 {
|
||||
-webkit-animation-delay: -0.32s;
|
||||
animation-delay: -0.32s;
|
||||
}
|
||||
|
||||
#spinner .bounce2 {
|
||||
-webkit-animation-delay: -0.16s;
|
||||
animation-delay: -0.16s;
|
||||
}
|
||||
|
||||
@-webkit-keyframes fuse-bouncedelay {
|
||||
0%, 80%, 100% {
|
||||
-webkit-transform: scale(0)
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: scale(1.0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fuse-bouncedelay {
|
||||
0%, 80%, 100% {
|
||||
-webkit-transform: scale(0);
|
||||
transform: scale(0);
|
||||
}
|
||||
40% {
|
||||
-webkit-transform: scale(1.0);
|
||||
transform: scale(1.0);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
<!-- / FUSE Splash Screen CSS -->
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<noscript>
|
||||
You need to enable JavaScript to run this app.
|
||||
</noscript>
|
||||
|
||||
<div id='root' class='flex'>
|
||||
<!-- FUSE Splash Screen -->
|
||||
<div id='fuse-splash-screen'>
|
||||
<div class='logo'>
|
||||
<img width='128' src='assets/images/logo/logo1.svg' alt='logo'>
|
||||
</div>
|
||||
<div id='spinner'>
|
||||
<div class='bounce1'></div>
|
||||
<div class='bounce2'></div>
|
||||
<div class='bounce3'></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- / FUSE Splash Screen -->
|
||||
</div>
|
||||
<script type="module" src="/src/index.tsx"></script>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,178 @@
|
|||
{
|
||||
"name": "fuse-react-app",
|
||||
"version": "10.0.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"@emotion/cache": "11.11.0",
|
||||
"@emotion/react": "11.11.3",
|
||||
"@emotion/styled": "11.11.0",
|
||||
"@hookform/resolvers": "3.3.4",
|
||||
"@mui/base": "5.0.0-beta.32",
|
||||
"@mui/material": "5.15.5",
|
||||
"@mui/styles": "5.15.5",
|
||||
"@mui/system": "5.15.5",
|
||||
"@mui/x-date-pickers": "6.19.0",
|
||||
"@popperjs/core": "2.11.8",
|
||||
"@reduxjs/toolkit": "2.0.1",
|
||||
"autosuggest-highlight": "3.3.4",
|
||||
"axios": "1.6.5",
|
||||
"axios-mock-adapter": "1.21.5",
|
||||
"clsx": "2.1.0",
|
||||
"crypto-js": "4.2.0",
|
||||
"date-fns": "2.30.0",
|
||||
"draft-js": "0.11.7",
|
||||
"draftjs-to-html": "0.9.1",
|
||||
"firebase": "10.7.1",
|
||||
"framer-motion": "10.18.0",
|
||||
"history": "5.3.0",
|
||||
"i18next": "23.7.16",
|
||||
"jwt-decode": "3.1.2",
|
||||
"keycode": "2.2.1",
|
||||
"lodash": "4.17.21",
|
||||
"mobile-detect": "1.4.5",
|
||||
"moment": "2.29.4",
|
||||
"notistack": "1.0.6-next.3",
|
||||
"perfect-scrollbar": "1.5.5",
|
||||
"prismjs": "1.29.0",
|
||||
"qs": "6.11.2",
|
||||
"react": "18.2.0",
|
||||
"react-app-alias": "2.2.2",
|
||||
"react-autosuggest": "10.1.0",
|
||||
"react-dom": "18.2.0",
|
||||
"react-draft-wysiwyg": "1.15.0",
|
||||
"react-hook-form": "7.49.3",
|
||||
"react-i18next": "14.0.0",
|
||||
"react-popper": "2.3.0",
|
||||
"react-redux": "9.1.0",
|
||||
"react-router": "6.21.3",
|
||||
"react-router-dom": "6.21.3",
|
||||
"react-swipeable": "7.0.1",
|
||||
"redux-logger": "4.0.0",
|
||||
"reselect": "5.1.0",
|
||||
"styled-components": "6.1.8",
|
||||
"stylis": "4.3.1",
|
||||
"stylis-plugin-rtl": "2.1.1",
|
||||
"type-fest": "4.9.0",
|
||||
"web-vitals": "3.5.1",
|
||||
"zod": "3.22.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"autoprefixer": "10.4.16",
|
||||
"postcss": "8.4.20",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"overrides": {
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"redux": "^5.0.0",
|
||||
"semver": "7.5.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.23.7",
|
||||
"@babel/eslint-parser": "7.23.3",
|
||||
"@babel/node": "7.22.19",
|
||||
"@babel/parser": "7.23.6",
|
||||
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
|
||||
"@babel/preset-env": "7.23.8",
|
||||
"@babel/preset-react": "7.23.3",
|
||||
"@babel/traverse": "7.23.7",
|
||||
"@rtk-query/codegen-openapi": "1.2.0",
|
||||
"@tailwindcss/aspect-ratio": "0.4.2",
|
||||
"@tailwindcss/typography": "0.5.10",
|
||||
"@types/autosuggest-highlight": "3.2.3",
|
||||
"@types/babel__parser": "7.1.1",
|
||||
"@types/babel__traverse": "7.20.5",
|
||||
"@types/babel-traverse": "6.25.10",
|
||||
"@types/crypto-js": "4.2.1",
|
||||
"@types/draft-js": "0.11.17",
|
||||
"@types/draftjs-to-html": "0.8.4",
|
||||
"@types/glob": "8.1.0",
|
||||
"@types/google-map-react": "2.1.10",
|
||||
"@types/jest": "29.5.11",
|
||||
"@types/js-beautify": "1.14.3",
|
||||
"@types/lodash": "4.14.202",
|
||||
"@types/material-ui": "0.21.16",
|
||||
"@types/node": "20.11.0",
|
||||
"@types/prismjs": "1.26.3",
|
||||
"@types/qs": "6.9.11",
|
||||
"@types/react": "18.2.47",
|
||||
"@types/react-autosuggest": "10.1.11",
|
||||
"@types/react-beautiful-dnd": "13.1.8",
|
||||
"@types/react-dom": "18.2.18",
|
||||
"@types/react-draft-wysiwyg": "1.13.8",
|
||||
"@types/react-redux": "7.1.33",
|
||||
"@types/react-router": "5.1.20",
|
||||
"@types/react-router-dom": "5.3.3",
|
||||
"@types/react-swipeable-views": "0.13.5",
|
||||
"@types/redux-logger": "3.0.12",
|
||||
"@types/styled-components": "5.1.34",
|
||||
"@types/webpack-env": "1.18.4",
|
||||
"@typescript-eslint/eslint-plugin": "6.18.1",
|
||||
"@typescript-eslint/parser": "6.18.1",
|
||||
"@vitejs/plugin-react": "4.2.1",
|
||||
"ajv": "8.12.0",
|
||||
"autoprefixer": "10.4.16",
|
||||
"cross-env": "7.0.3",
|
||||
"eslint": "8.56.0",
|
||||
"eslint-config-airbnb": "19.0.4",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-config-react-app": "7.0.1",
|
||||
"eslint-plugin-flowtype": "8.0.3",
|
||||
"eslint-plugin-import": "2.29.1",
|
||||
"eslint-plugin-jsx-a11y": "6.8.0",
|
||||
"eslint-plugin-prettier": "5.1.3",
|
||||
"eslint-plugin-react": "7.33.2",
|
||||
"eslint-plugin-react-hooks": "4.6.0",
|
||||
"eslint-plugin-unused-imports": "3.0.0",
|
||||
"espree": "9.6.1",
|
||||
"glob": "10.3.10",
|
||||
"immutable": "4.3.4",
|
||||
"postcss": "8.4.33",
|
||||
"postcss-loader": "7.3.4",
|
||||
"prettier": "3.2.2",
|
||||
"promise": "8.3.0",
|
||||
"react-refresh": "0.14.0",
|
||||
"s": "1.0.0",
|
||||
"source-map-explorer": "2.5.3",
|
||||
"tailwindcss": "3.3.2",
|
||||
"ts-migrate": "0.1.35",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.3.3",
|
||||
"typescript-plugin-css-modules": "5.0.2",
|
||||
"util": "0.12.5",
|
||||
"vite": "^5.0.12",
|
||||
"vite-plugin-svgr": "4.2.0",
|
||||
"vite-tsconfig-paths": "4.3.1"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "npm run dev",
|
||||
"dev": "vite",
|
||||
"build": "NODE_OPTIONS=--max-old-space-size=4096 tsc && vite build",
|
||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
||||
"preview": "vite preview",
|
||||
"build-docs": "ts-node --esm ./src/app/main/documentation/material-ui-components/build.ts",
|
||||
"ext-rename-js-to-ts": "ts-node --esm ./src/node-scripts/file-ext-rename-js-to-ts.ts",
|
||||
"analyze": "react-app-rewired build && source-map-explorer 'build/static/js/*.js' --html analyze-result.html",
|
||||
"postinstall": "node --loader ts-node/esm ./src/node-scripts/fuse-react-message.ts",
|
||||
"poststart": "node --loader ts-node/esm ./src/node-scripts/fuse-react-message.ts",
|
||||
"audit": "npm audit --production"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0",
|
||||
"npm": ">=8.0.0"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 3 safari version"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
};
|
||||
|
|
@ -0,0 +1 @@
|
|||
/* /index.html 200
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
@font-face {
|
||||
font-family: 'Inter var';
|
||||
font-weight: 100 900;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
font-named-instance: 'Regular';
|
||||
src: url("Inter-roman.var.woff2?v=3.18") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter var';
|
||||
font-weight: 100 900;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
font-named-instance: 'Italic';
|
||||
src: url("Inter-italic.var.woff2?v=3.18") format("woff2");
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
@font-face {
|
||||
font-family: 'Material Icons';
|
||||
src: url('./MaterialIcons-Regular.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'Material Icons' !important;
|
||||
font-size: 24px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
direction: ltr;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
|
||||
/* Enable Ligatures ================ */
|
||||
letter-spacing: 0;
|
||||
-webkit-font-feature-settings: "liga";
|
||||
-moz-font-feature-settings: "liga=1";
|
||||
-moz-font-feature-settings: "liga";
|
||||
-ms-font-feature-settings: "liga" 1;
|
||||
font-feature-settings: "liga";
|
||||
-webkit-font-variant-ligatures: discretionary-ligatures;
|
||||
font-variant-ligatures: discretionary-ligatures;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
@font-face {
|
||||
font-family: 'Material Icons Outlined';
|
||||
src: url('./MaterialIconsOutlined-Regular.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'Material Icons Outlined' !important;
|
||||
font-size: 24px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
direction: ltr;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
|
||||
/* Enable Ligatures ================ */
|
||||
letter-spacing: 0;
|
||||
-webkit-font-feature-settings: "liga";
|
||||
-moz-font-feature-settings: "liga=1";
|
||||
-moz-font-feature-settings: "liga";
|
||||
-ms-font-feature-settings: "liga" 1;
|
||||
font-feature-settings: "liga";
|
||||
-webkit-font-variant-ligatures: discretionary-ligatures;
|
||||
font-variant-ligatures: discretionary-ligatures;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
@font-face {
|
||||
font-family: 'Material Icons Round';
|
||||
src: url('./MaterialIconsRound-Regular.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'Material Icons Round' !important;
|
||||
font-size: 24px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
direction: ltr;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
|
||||
/* Enable Ligatures ================ */
|
||||
letter-spacing: 0;
|
||||
-webkit-font-feature-settings: "liga";
|
||||
-moz-font-feature-settings: "liga=1";
|
||||
-moz-font-feature-settings: "liga";
|
||||
-ms-font-feature-settings: "liga" 1;
|
||||
font-feature-settings: "liga";
|
||||
-webkit-font-variant-ligatures: discretionary-ligatures;
|
||||
font-variant-ligatures: discretionary-ligatures;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
@font-face {
|
||||
font-family: 'Material Icons Sharp';
|
||||
src: url('./MaterialIconsSharp-Regular.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'Material Icons Sharp' !important;
|
||||
font-size: 24px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
direction: ltr;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
|
||||
/* Enable Ligatures ================ */
|
||||
letter-spacing: 0;
|
||||
-webkit-font-feature-settings: "liga";
|
||||
-moz-font-feature-settings: "liga=1";
|
||||
-moz-font-feature-settings: "liga";
|
||||
-ms-font-feature-settings: "liga" 1;
|
||||
font-feature-settings: "liga";
|
||||
-webkit-font-variant-ligatures: discretionary-ligatures;
|
||||
font-variant-ligatures: discretionary-ligatures;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
@font-face {
|
||||
font-family: 'Material Icons Two Tone';
|
||||
src: url('./MaterialIconsTwoTone-Regular.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.material-icons {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'Material Icons Two Tone' !important;
|
||||
font-size: 24px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
direction: ltr;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
filter: contrast(0.1);
|
||||
|
||||
/* Enable Ligatures ================ */
|
||||
letter-spacing: 0;
|
||||
-webkit-font-feature-settings: "liga";
|
||||
-moz-font-feature-settings: "liga=1";
|
||||
-moz-font-feature-settings: "liga";
|
||||
-ms-font-feature-settings: "liga" 1;
|
||||
font-feature-settings: "liga";
|
||||
-webkit-font-variant-ligatures: discretionary-ligatures;
|
||||
font-variant-ligatures: discretionary-ligatures;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
|
||||
|
||||
To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
|
||||
|
||||
You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
|
||||
|
||||
You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 1.5;
|
||||
color: #555;
|
||||
background: #fff;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
font-weight: normal;
|
||||
}
|
||||
small {
|
||||
font-size: .66666667em;
|
||||
}
|
||||
a {
|
||||
color: #e74c3c;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover, a:focus {
|
||||
box-shadow: 0 1px #e74c3c;
|
||||
}
|
||||
.bshadow0, input {
|
||||
box-shadow: inset 0 -2px #e7e7e7;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: inset 0 -2px #ccc;
|
||||
}
|
||||
input, fieldset {
|
||||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
input {
|
||||
color: inherit;
|
||||
line-height: 1.5;
|
||||
height: 1.5em;
|
||||
padding: .25em 0;
|
||||
}
|
||||
input:focus {
|
||||
outline: none;
|
||||
box-shadow: inset 0 -2px #449fdb;
|
||||
}
|
||||
.glyph {
|
||||
font-size: 16px;
|
||||
width: 15em;
|
||||
padding-bottom: 1em;
|
||||
margin-right: 4em;
|
||||
margin-bottom: 1em;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
.liga {
|
||||
width: 80%;
|
||||
width: calc(100% - 2.5em);
|
||||
}
|
||||
.talign-right {
|
||||
text-align: right;
|
||||
}
|
||||
.talign-center {
|
||||
text-align: center;
|
||||
}
|
||||
.bgc1 {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
.fgc1 {
|
||||
color: #999;
|
||||
}
|
||||
.fgc0 {
|
||||
color: #000;
|
||||
}
|
||||
p {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.mvm {
|
||||
margin-top: .75em;
|
||||
margin-bottom: .75em;
|
||||
}
|
||||
.mtn {
|
||||
margin-top: 0;
|
||||
}
|
||||
.mtl, .mal {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
.mbl, .mal {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
.mal, .mhl {
|
||||
margin-left: 1.5em;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
.mhmm {
|
||||
margin-left: 1em;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.mls {
|
||||
margin-left: .25em;
|
||||
}
|
||||
.ptl {
|
||||
padding-top: 1.5em;
|
||||
}
|
||||
.pbs, .pvs {
|
||||
padding-bottom: .25em;
|
||||
}
|
||||
.pvs, .pts {
|
||||
padding-top: .25em;
|
||||
}
|
||||
.unit {
|
||||
float: left;
|
||||
}
|
||||
.unitRight {
|
||||
float: right;
|
||||
}
|
||||
.size1of2 {
|
||||
width: 50%;
|
||||
}
|
||||
.size1of1 {
|
||||
width: 100%;
|
||||
}
|
||||
.clearfix:before, .clearfix:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.hidden-true {
|
||||
display: none;
|
||||
}
|
||||
.textbox0 {
|
||||
width: 3em;
|
||||
background: #f1f1f1;
|
||||
padding: .25em .5em;
|
||||
line-height: 1.5;
|
||||
height: 1.5em;
|
||||
}
|
||||
#testDrive {
|
||||
display: block;
|
||||
padding-top: 24px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.fs0 {
|
||||
font-size: 16px;
|
||||
}
|
||||
.fs1 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
if (!('boxShadow' in document.body.style)) {
|
||||
document.body.setAttribute('class', 'noBoxShadow');
|
||||
}
|
||||
|
||||
document.body.addEventListener("click", function(e) {
|
||||
var target = e.target;
|
||||
if (target.tagName === "INPUT" &&
|
||||
target.getAttribute('class').indexOf('liga') === -1) {
|
||||
target.select();
|
||||
}
|
||||
});
|
||||
|
||||
(function() {
|
||||
var fontSize = document.getElementById('fontSize'),
|
||||
testDrive = document.getElementById('testDrive'),
|
||||
testText = document.getElementById('testText');
|
||||
function updateTest() {
|
||||
testDrive.innerHTML = testText.value || String.fromCharCode(160);
|
||||
if (window.icomoonLiga) {
|
||||
window.icomoonLiga(testDrive);
|
||||
}
|
||||
}
|
||||
function updateSize() {
|
||||
testDrive.style.fontSize = fontSize.value + 'px';
|
||||
}
|
||||
fontSize.addEventListener('change', updateSize, false);
|
||||
testText.addEventListener('input', updateTest, false);
|
||||
testText.addEventListener('change', updateTest, false);
|
||||
updateSize();
|
||||
}());
|
||||
|
|
@ -0,0 +1,790 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>IcoMoon Demo</title>
|
||||
<meta name="description" content="An Icon Font Generated By IcoMoon.io">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="demo-files/demo.css">
|
||||
<link rel="stylesheet" href="style.css"></head>
|
||||
<body>
|
||||
<div class="bgc1 clearfix">
|
||||
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> meteocons <small class="fgc1">(Glyphs: 47)</small></h1>
|
||||
</div>
|
||||
<div class="clearfix mhl ptl">
|
||||
<h1 class="mvm mtn fgc1">Grid Size: 16</h1>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="sunrise">
|
||||
|
||||
</i>
|
||||
<span class="mls"> sunrise</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e900" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="sunrise" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="sun">
|
||||
|
||||
</i>
|
||||
<span class="mls"> sun</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e901" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="sun" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="moon">
|
||||
|
||||
</i>
|
||||
<span class="mls"> moon</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e902" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="moon" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="sun2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> sun2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e903" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="sun2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="windy">
|
||||
|
||||
</i>
|
||||
<span class="mls"> windy</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e904" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="windy" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="wind">
|
||||
|
||||
</i>
|
||||
<span class="mls"> wind</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e905" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="wind" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="snowflake">
|
||||
|
||||
</i>
|
||||
<span class="mls"> snowflake</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e906" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="snowflake" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloudy">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloudy</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e907" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloudy" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloud">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloud</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e908" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloud" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="weather">
|
||||
|
||||
</i>
|
||||
<span class="mls"> weather</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e909" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="weather" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="weather2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> weather2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e90a" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="weather2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="weather3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> weather3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e90b" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="weather3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="lines">
|
||||
|
||||
</i>
|
||||
<span class="mls"> lines</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e90c" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="lines" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloud2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloud2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e90d" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloud2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="lightning">
|
||||
|
||||
</i>
|
||||
<span class="mls"> lightning</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e90e" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="lightning" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="lightning2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> lightning2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e90f" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="lightning2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="rainy">
|
||||
|
||||
</i>
|
||||
<span class="mls"> rainy</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e910" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="rainy" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="rainy2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> rainy2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e911" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="rainy2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="windy2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> windy2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e912" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="windy2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="windy3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> windy3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e913" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="windy3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="snowy">
|
||||
|
||||
</i>
|
||||
<span class="mls"> snowy</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e914" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="snowy" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="snowy2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> snowy2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e915" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="snowy2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="snowy3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> snowy3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e916" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="snowy3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="weather4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> weather4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e917" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="weather4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloudy2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloudy2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e918" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloudy2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloud3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloud3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e919" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloud3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="lightning3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> lightning3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e91a" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="lightning3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="sun3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> sun3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e91b" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="sun3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="moon2">
|
||||
|
||||
</i>
|
||||
<span class="mls"> moon2</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e91c" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="moon2" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloudy3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloudy3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e91d" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloudy3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloud4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloud4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e91e" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloud4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloud5">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloud5</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e91f" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloud5" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="lightning4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> lightning4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e920" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="lightning4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="rainy3">
|
||||
|
||||
</i>
|
||||
<span class="mls"> rainy3</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e921" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="rainy3" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="rainy4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> rainy4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e922" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="rainy4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="windy4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> windy4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e923" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="windy4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="windy5">
|
||||
|
||||
</i>
|
||||
<span class="mls"> windy5</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e924" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="windy5" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="snowy4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> snowy4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e925" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="snowy4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="snowy5">
|
||||
|
||||
</i>
|
||||
<span class="mls"> snowy5</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e926" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="snowy5" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="weather5">
|
||||
|
||||
</i>
|
||||
<span class="mls"> weather5</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e927" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="weather5" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="cloudy4">
|
||||
|
||||
</i>
|
||||
<span class="mls"> cloudy4</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e928" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="cloudy4" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="lightning5">
|
||||
|
||||
</i>
|
||||
<span class="mls"> lightning5</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e929" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="lightning5" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="thermometer">
|
||||
|
||||
</i>
|
||||
<span class="mls"> thermometer</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e92a" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="thermometer" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="compass">
|
||||
|
||||
</i>
|
||||
<span class="mls"> compass</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e92b" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="compass" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="none">
|
||||
|
||||
</i>
|
||||
<span class="mls"> none</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e92c" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="none" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="Celsius">
|
||||
|
||||
</i>
|
||||
<span class="mls"> Celsius</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e92d" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="celsius" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="glyph fs1">
|
||||
<div class="clearfix bshadow0 pbs">
|
||||
<i class="Fahrenheit">
|
||||
|
||||
</i>
|
||||
<span class="mls"> Fahrenheit</span>
|
||||
</div>
|
||||
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
||||
<input type="text" readonly value="e92e" class="unit size1of2" />
|
||||
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
||||
</fieldset>
|
||||
<div class="fs0 bshadow0 clearfix hidden-false">
|
||||
<span class="unit pvs fgc1">liga: </span>
|
||||
<input type="text" readonly value="fahrenheit" class="liga unitRight" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--[if gt IE 8]><!-->
|
||||
<div class="mhl clearfix mbl">
|
||||
<h1>Font Test Drive</h1>
|
||||
<label>
|
||||
Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
|
||||
min="8" value="48" />
|
||||
px
|
||||
</label>
|
||||
<input id="testText" type="text" class="phl size1of1 mvl"
|
||||
placeholder="Type some text to test..." value="sunrise sun moon sun2 windy wind snowflake cloudy cloud weather weather2 weather3 lines cloud2 lightning lightning2 rainy rainy2 windy2 windy3 snowy snowy2 snowy3 weather4 cloudy2 cloud3 lightning3 sun3 moon2 cloudy3 cloud4 cloud5 lightning4 rainy3 rainy4 windy4 windy5 snowy4 snowy5 weather5 cloudy4 lightning5 thermometer compass none celsius fahrenheit"/>
|
||||
<div id="testDrive" class="icomoon-liga">sunrise sun moon sun2 windy wind snowflake cloudy cloud weather weather2 weather3 lines cloud2 lightning lightning2 rainy rainy2 windy2 windy3 snowy snowy2 snowy3 weather4 cloudy2 cloud3 lightning3 sun3 moon2 cloudy3 cloud4 cloud5 lightning4 rainy3 rainy4 windy4 windy5 snowy4 snowy5 weather5 cloudy4 lightning5 thermometer compass none celsius fahrenheit
|
||||
</div>
|
||||
</div>
|
||||
<!--<![endif]-->
|
||||
<div class="bgc1 clearfix">
|
||||
<p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
|
||||
</div>
|
||||
<script src="liga.js"></script>
|
||||
<script src="demo-files/demo.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="meteocons" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="1024" descent="0" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " horiz-adv-x="0" d="" />
|
||||
<glyph unicode="" glyph-name="sunrise" d="M355.23 448c14.876 73.042 79.376 128 156.792 128 77.418 0 141.916-54.958 156.752-128h64c-15.668 108.25-108.168 192-220.752 192-112.542 0-205.082-83.75-220.75-192h63.958zM512.022 704c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32-17.664 0-32-14.334-32-32v-64c0-17.666 14.336-32 32-32zM806.146 710.166c-12.498 12.5-32.748 12.5-45.25 0l-45.25-45.25c-12.498-12.5-12.498-32.75 0-45.25 12.502-12.5 32.752-12.5 45.25 0l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25zM308.354 664.916l-45.25 45.25c-12.498 12.5-32.746 12.5-45.25 0-12.498-12.5-12.498-32.75 0-45.25l45.25-45.25c12.504-12.5 32.752-12.5 45.25 0 12.504 12.5 12.504 32.75 0 45.25zM704.022 384h-384c-17.664 0-32-14.334-32-32s14.336-32 32-32h384c17.666 0 32 14.334 32 32s-14.334 32-32 32zM640.022 256h-256c-17.664 0-32-14.334-32-32s14.336-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" glyph-name="sun" d="M512 736c-123.5 0-224-100.5-224-224s100.5-224 224-224 224 100.5 224 224c0 123.5-100.5 224-224 224zM512 352c-88.376 0-160 71.624-160 160s71.624 160 160 160 160-71.624 160-160-71.624-160-160-160zM512 800c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM512 224c-17.666 0-32-14.334-32-32v-64c0-17.666 14.334-32 32-32s32 14.334 32 32v64c0 17.666-14.334 32-32 32zM760.876 715.666l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25s-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM263.124 308.332l-45.25-45.25c-12.5-12.498-12.5-32.748 0-45.248s32.75-12.5 45.25 0l45.25 45.248c12.5 12.542 12.5 32.752 0 45.25-12.498 12.502-32.75 12.544-45.25 0zM224 512c0 17.666-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32zM896 544h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32zM263.082 715.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM760.918 308.376c-12.542 12.5-32.752 12.5-45.25 0-12.502-12.5-12.542-32.75 0-45.25l45.25-45.25c12.498-12.5 32.748-12.5 45.248 0s12.5 32.748 0 45.25l-45.248 45.25z" />
|
||||
<glyph unicode="" glyph-name="moon" d="M699.704 337.7c-99.752-99.832-262.166-99.832-362 0-99.832 99.834-99.832 262.25 0 362.042 26.418 26.374 58.624 46.5 95.664 59.624 11.668 4.084 24.586 1.124 33.25-7.584 8.752-8.75 11.71-21.666 7.586-33.25-25.084-70.75-8-147.332 44.498-199.834 52.418-52.456 129.002-69.5 199.834-44.5 11.584 4.124 24.542 1.166 33.25-7.584 8.752-8.666 11.668-21.624 7.542-33.25-13.042-37.040-33.208-69.246-59.624-95.664zM382.954 654.492c-74.876-74.876-74.876-196.708 0-271.542 80-80.042 216.25-72.834 286 16.334-71.918-4.5-142.75 21.458-195.5 74.168-52.75 52.708-78.666 123.542-74.168 195.458-5.748-4.502-11.208-9.294-16.332-14.418z" />
|
||||
<glyph unicode="" glyph-name="sun2" d="M542 770c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM542 194c-17.666 0-32-14.334-32-32v-64c0-17.666 14.334-32 32-32s32 14.334 32 32v64c0 17.666-14.334 32-32 32zM293.124 278.332l-45.25-45.25c-12.5-12.498-12.5-32.748 0-45.248s32.75-12.5 45.25 0l45.25 45.248c12.5 12.542 12.5 32.752 0 45.25-12.498 12.502-32.75 12.544-45.25 0zM254 482c0 17.666-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32zM293.082 685.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM670 706c-22.376 0-43.624-4.334-64-10.416-20.376 6.084-41.624 10.416-64 10.416-123.5 0-224-100.5-224-224s100.5-224 224-224c22.376 0 43.624 4.332 64 10.418 20.376-6.086 41.624-10.418 64-10.418 123.5 0 224 100.5 224 224s-100.5 224-224 224zM510.458 325.166c-73.292 14.666-128.458 79.252-128.458 156.834 0 77.584 55.166 142.166 128.458 156.834-39.79-40.458-64.458-95.75-64.458-156.834s24.668-116.376 64.458-156.834z" />
|
||||
<glyph unicode="" glyph-name="windy" d="M990 578h-163.25c-16.126 143.584-136.874 256-284.75 256-99.624 0-187.5-50.916-239.25-128h-208.75c-17.666 0-32-14.334-32-32s14.334-32 32-32h177.666c-7.248-20.416-11.958-41.792-14.416-64h-99.25c-17.666 0-32-14.334-32-32s14.334-32 32-32h99.25c2.458-22.168 7.168-43.624 14.416-64h-171.834c-20.914 0-37.832-14.334-37.832-32s16.918-32 37.832-32h202.918c51.75-77.124 139.624-128 239.25-128 99.624 0 187.5 50.876 239.248 128h74.92c20.914 0 37.832 14.334 37.832 32s-16.918 32-37.832 32h-43.834c7.248 20.376 11.916 41.832 14.416 64h163.25c17.666 0 32 14.334 32 32s-14.334 32-32 32zM340.458 642h201.542c17.666 0 32 14.334 32 32s-14.334 32-32 32h-156.292c40.418 39.458 95.458 64 156.292 64 112.582 0 205.084-83.75 220.75-192h-441.5c3.25 22.624 9.668 44.084 19.208 64zM542 322c-60.834 0-115.876 24.582-156.292 64h312.542c-40.374-39.418-95.416-64-156.25-64zM743.5 450h-403.042c-9.54 19.916-15.958 41.376-19.208 64h441.5c-3.25-22.624-9.668-44.084-19.25-64z" />
|
||||
<glyph unicode="" glyph-name="wind" d="M862 640c-53 0-96-43-96-96 0-11.292 2.334-21.916 5.876-32h-613.876c-17.666 0-32-14.334-32-32s14.334-32 32-32h704c53 0 96 43 96 96s-43 96-96 96zM158 576h384c53 0 96 43 96 96s-43 96-96 96-96-43-96-96c0-11.292 2.334-21.916 5.876-32h-293.876c-17.666 0-32-14.334-32-32s14.334-32 32-32zM670 384c-1.876 0-3.668-0.416-5.582-0.582-1.25 0.082-2.292 0.582-3.542 0.582h-493.708c-22.75 0-41.168-14.334-41.168-32s18.418-32 41.168-32h412.708c-3.542-10.084-5.876-20.752-5.876-32 0-53 43-96 96-96s96 43 96 96-43 96-96 96z" />
|
||||
<glyph unicode="" glyph-name="snowflake" d="M765.744 439.5l-65.25 37.668c2.084 11.332 3.5 22.916 3.5 34.832 0 11.958-1.416 23.584-3.584 34.916l65.25 37.708c30.666 17.75 41.084 56.876 23.458 87.376-17.708 30.624-56.75 41.124-87.376 23.5l-65.876-38.042c-17.624 15-37.708 26.834-59.876 34.708v75.834c0 35.334-28.624 64-64 64-35.332 0-64-28.666-64-64v-75.792c-22.166-7.876-42.25-19.71-59.874-34.708l-65.752 37.958c-30.624 17.666-69.792 7.208-87.498-23.416-17.626-30.584-7.124-69.708 23.498-87.376l65.126-37.626c-2.124-11.376-3.502-23.042-3.502-35.042 0-11.916 1.376-23.542 3.502-34.876l-65.168-37.624c-30.668-17.668-41.168-56.876-23.458-87.5 17.622-30.5 56.79-41 87.458-23.376l65.666 37.958c17.626-15 37.75-26.916 60-34.834v-75.746c0-35.376 28.668-64 64-64 35.376 0 64 28.624 64 64v75.834c22.25 7.916 42.376 19.75 59.916 34.79l65.834-37.998c30.624-17.624 69.752-7.124 87.376 23.376 17.714 30.622 7.256 69.748-23.37 87.498zM447.994 512c0 35.334 28.624 64 64 64 35.334 0 64-28.666 64-64 0-35.332-28.666-64-64-64-35.374 0-64 28.668-64 64z" />
|
||||
<glyph unicode="" glyph-name="cloudy" d="M416 896c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM664.876 811.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM32 576h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM704 608c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM167.082 811.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM800 512c-10.624 0-21.124-0.75-31.584-2.25-33.542 45.75-78.248 80.666-128.916 103-2.582 121.25-101.624 219.25-223.5 219.25-123.5 0-224-100.5-224-224 0-34.876 8.668-67.5 23-96.876-119.25-4.874-215-102.748-215-223.124 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM416 768c79.624 0 145.124-58.334 157.416-134.5-20.042 4-40.498 6.5-61.416 6.5-91.876 0-177-39.624-236.75-106.5-11.874 22.334-19.25 47.416-19.25 74.5 0 88.376 71.624 160 160 160zM800 128c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c15.5 0 30.124-2.916 44.25-7.082 5.624-1.584 11.334-2.834 16.624-5.042 8.75 17.124 19.75 32.792 31.958 47.5 46.752 56.248 116.292 92.624 195.168 92.624 20.25 0 39.668-2.916 58.5-7.418 21.124-4.998 41.084-12.582 59.668-22.582 46.582-24.75 84.832-63.084 108.914-110.126 18.794 7.75 39.336 12.126 60.918 12.126 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" glyph-name="cloud" d="M870.124 499.668c9.75 7.25 19.624 14.376 28.458 23.208 26.416 26.458 46.542 58.666 59.584 95.708 4.166 11.584 1.208 24.584-7.544 33.25-8.708 8.75-21.624 11.708-33.246 7.584-70.792-25-147.376-8-199.792 44.5-52.5 52.502-69.584 129.042-44.5 199.792 4.084 11.626 1.166 24.542-7.584 33.292-8.666 8.666-21.624 11.668-33.25 7.582-37.084-13.164-69.25-33.246-95.668-59.664-67.082-67-87.958-162-64.958-247.584-86.5-11.042-164.25-57-216.042-127.586-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224.002 0-123.498 100.5-223.998 224-223.998 27.376 0 54.168 5 79.418 14.668 57.914-50.5 131.582-78.668 208.582-78.668 77.084 0 150.666 28.168 208.582 78.668 25.25-9.668 52.042-14.668 79.418-14.668 123.5 0 224 100.5 224 223.998 0.002 98.878-64.832 182.044-153.874 211.67zM581.832 839.668c5.084 5.166 10.542 9.958 16.292 14.458-4.5-71.958 21.458-142.75 74.208-195.458 52.752-52.75 123.542-78.666 195.502-74.208-27.584-35.168-65.584-57.042-106.252-66.376-54.75 69.5-135.208 113.25-223.916 120.374-24.542 67.918-10.166 146.876 44.166 201.21zM800 128c-34.25 0-65.832 11-91.876 29.334-46.958-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.624-29.334-91.876-29.334-88.376 0-160 71.624-160 159.998 0 88.376 71.624 160 160 160 21.624 0 42.124-4.376 60.876-12.124 40.376 78.71 119.5 133.792 212.624 139.086 4.876 0.29 9.624 1.042 14.5 1.042 25.832 0 50.624-4.042 74-11.166 31.582-9.668 60.376-25.416 85.376-45.708 23.876-19.376 43.876-43.124 59.624-69.792 2.666-4.5 5.668-8.75 8.082-13.458 18.792 7.75 39.336 12.124 60.918 12.124 88.376 0 160-71.624 160-160s-71.624-160.002-160-160.002z" />
|
||||
<glyph unicode="" glyph-name="weather" d="M512 834c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM760.876 749.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0zM128 514h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM800 546c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM263.082 749.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM291.25 514h64c-2.124 10.334-3.25 21.042-3.25 32 0 88.376 71.624 160 160 160s160-71.624 160-160c0-10.958-1.124-21.666-3.25-32h64c1.584 10.542 3.25 21.042 3.25 32 0 123.5-100.5 224-224 224s-224-100.5-224-224c0-10.958 1.75-21.458 3.25-32zM896 450h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 322h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 194h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" glyph-name="weather2" d="M128 385.998h768c17.666 0 32 14.334 32 32s-14.334 32-32 32h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32zM896 321.998h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 193.998h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM410.084 514c-0.666 0.666-1.502 1.084-2.166 1.75-74.876 74.876-74.876 196.668 0 271.584 5.124 5.084 10.54 9.916 16.292 14.416-4.502-71.916 21.458-142.75 74.208-195.458 52.748-52.792 123.58-78.666 195.498-74.166-5.334-6.792-11.748-12.25-17.792-18.124h83.042c10.084 16.084 18.5 33.5 25.166 52.126 4.042 11.708 1.084 24.666-7.666 33.334-8.582 8.708-21.584 11.708-33.248 7.582-70.752-24.998-147.292-7.958-199.75 44.5-52.502 52.5-69.584 129.042-44.502 199.792 4.166 11.624 1.166 24.542-7.582 33.292-8.668 8.708-21.626 11.666-33.25 7.542-37.042-13.084-69.25-33.208-95.666-59.584-86.418-86.42-97.71-219.544-34.544-318.586h81.96z" />
|
||||
<glyph unicode="" glyph-name="weather3" d="M67.208 512c-2.084 10.334-3.208 21.042-3.208 32 0 88.376 71.624 160 160 160 21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160 0-10.958-1.124-21.666-3.25-32h64c1.584 10.542 3.25 21.042 3.25 32 0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-10.958 1.708-21.458 3.25-32h63.958zM992 448h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32zM992 320h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32zM992 192h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" glyph-name="lines" d="M224 704h576c17.666 0 32 14.334 32 32s-14.334 32-32 32h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32zM800 640h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32zM800 512h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32zM800 384h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" glyph-name="cloud2" d="M800 704c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 320c-34.25 0-65.832 11-91.876 29.334-46.956-56.582-116.876-93.334-196.124-93.334-79.25 0-149.168 36.752-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" glyph-name="lightning" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 43.082-37.542 94.832-62.582 150.208-73.042l-69.626-69.624 64-64-64-192 192 192-64 64 22 65.998c68.916 4.876 134.25 31.086 186.582 76.668 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-34.25 0-65.832 11-91.876 29.334-37.876-45.666-91.124-77.25-151.75-88.208l-44.374-5.126c-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" glyph-name="lightning2" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 24.582-21.416 52.5-37.916 81.832-50.832l49.832 49.748c-46.916 15.252-88.332 42.542-119.208 79.752-25.998-18.334-57.624-29.334-91.874-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334-20.75-25.042-46.624-45.334-75.25-61.168l-26.874-80.666c41.75 13.124 81 33.876 114.582 63.166 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM384 320l64-64-64-192 192 192-64 64 64 192-192-192z" />
|
||||
<glyph unicode="" glyph-name="rainy" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 448c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160zM448 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" glyph-name="rainy2" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160zM450 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM192 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" glyph-name="windy2" d="M834.084 691.834c-47.958 49.084-114.25 77.542-183.46 77.542-69.124 0-135.376-28.458-183.33-77.542-105.626-4.918-190.042-92.376-190.042-199.168 0-109.916 89.418-199.332 199.376-199.332 11.668 0 23.208 1 34.542 2.998 41.458-27.082 89.834-41.708 139.458-41.708 49.708 0 98.126 14.626 139.544 41.708 11.414-1.998 22.916-2.998 34.582-2.998 109.874 0 199.25 89.416 199.25 199.332-0.004 106.792-84.38 194.25-189.92 199.168zM824.75 357.334c-16.624 0-32.75 2.998-48 8.834-35-30.5-79.5-47.544-126.126-47.544-46.498 0-90.998 17.044-125.998 47.544-15.25-5.836-31.5-8.834-48-8.834-74.624 0-135.376 60.75-135.376 135.332 0 74.626 60.75 135.376 135.376 135.376 6.376 0 12.75-0.458 19.042-1.376 36.208 49.166 93.082 78.708 154.956 78.708 61.876 0 118.876-29.542 155.002-78.708 6.25 0.916 12.624 1.376 19.124 1.376 74.624 0 135.25-60.75 135.25-135.376 0-74.582-60.624-135.332-135.25-135.332zM288 320h-256c-17.666 0-32-14.334-32-32s14.334-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32zM32 384h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32zM96 512h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32z" />
|
||||
<glyph unicode="" glyph-name="windy3" d="M834.084 882.416c-47.96 49.126-114.25 77.584-183.46 77.584-69.124 0-135.376-28.458-183.33-77.584-105.626-4.876-190.042-92.334-190.042-199.084 0-109.956 89.418-199.416 199.376-199.416 11.668 0 23.208 1.002 34.542 3 41.458-27.042 89.834-41.666 139.458-41.666 49.708 0 98.126 14.624 139.544 41.666 11.414-1.998 22.916-3 34.582-3 109.876 0 199.25 89.46 199.25 199.416-0.004 106.752-84.38 194.252-189.92 199.084zM824.75 547.916c-16.624 0-32.75 3-48 8.916-35-30.5-79.5-47.584-126.126-47.584-46.498 0-90.998 17.084-125.998 47.584-15.25-5.918-31.5-8.916-48-8.916-74.624 0-135.376 60.75-135.376 135.416 0 74.584 60.75 135.334 135.376 135.334 6.376 0 12.75-0.5 19.042-1.376 36.208 49.168 93.082 78.71 154.956 78.71 61.876 0 118.876-29.542 155.002-78.708 6.25 0.876 12.624 1.376 19.124 1.376 74.624 0 135.25-60.75 135.25-135.334 0-74.668-60.624-135.418-135.25-135.418zM288 510.624h-256c-17.666 0-32-14.292-32-32 0-17.706 14.334-32 32-32h256c17.666 0 32 14.294 32 32 0 17.708-14.334 32-32 32zM32 574.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM96 702.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM448 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" glyph-name="snowy" d="M652.084 136.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" glyph-name="snowy2" d="M652.084 328.624l-36 20.75c1.084 6.25 1.916 12.624 1.916 19.25 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.754 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292s0.75-13 1.918-19.246l-35.916-20.752c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 333.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c23.624 0 46.668 4.416 68.876 11.668 2.124 10.164 5.458 20.082 10.75 29.29 7.876 13.708 19.124 24.624 32 33.004-6.624 6.458-13.876 12.208-19.75 19.376-26-18.338-57.626-29.338-91.876-29.338-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334-5.876-7.166-13.208-12.918-19.792-19.376 12.918-8.414 24.25-19.376 32.084-33.124 5.416-9.292 8.708-19.168 10.832-29.166 22.128-7.252 45.128-11.668 68.752-11.668 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" glyph-name="snowy3" d="M652.084 136.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM948.332 231.5l-24.166 6.416c-0.582 7.666-2.416 14.958-5.792 21.958l17.542 17.542c8.25 8.25 8.208 21.584 0 29.708-8.166 8.208-21.416 8.25-29.666 0l-17.582-17.5c-6.918 3.25-14.292 5.124-21.918 5.75l-6.418 24.124c-2.998 11.166-14.5 17.876-25.748 14.876-11.208-3.042-17.75-14.542-14.834-25.75l6.418-23.792c-3.168-2.168-6.168-4.584-9-7.334-2.75-2.834-5.084-5.832-7.252-8.918l-23.792 6.418c-11.208 2.998-22.792-3.752-25.792-14.876-2.998-11.25 3.752-22.708 14.834-25.75l24-6.458c0.668-7.542 2.584-14.916 5.958-21.918l-17.624-17.624c-8.166-8.208-8.124-21.458 0.084-29.624 8.166-8.166 21.416-8.25 29.584-0.084l17.664 17.666c6.918-3.414 14.336-5.332 22.002-5.914l6.332-24.042c3.084-11.208 14.5-17.876 25.752-14.876 11.166 3 17.914 14.498 14.916 25.834l-6.418 23.792c3 2.124 6.084 4.5 8.918 7.25 2.75 2.792 5.084 5.876 7.248 8.958l23.834-6.418c11.208-3 22.75 3.708 25.708 14.834 3 11.17-3.624 22.668-14.792 25.752zM876.624 218.124c-8.25-8.25-21.542-8.208-29.75 0-8.124 8.124-8.208 21.458 0 29.708 8.208 8.166 21.542 8.166 29.75 0 8.126-8.208 8.126-21.582 0-29.708zM237.876 339l-23.75-6.376c-2.208 3-4.5 6.042-7.292 8.876-2.832 2.75-5.832 5.124-8.958 7.25l6.376 23.876c3 11.208-3.668 22.75-14.75 25.708-11.25 3-22.75-3.668-25.75-14.834l-6.5-24.124c-7.624-0.624-14.916-2.5-21.876-5.792l-17.624 17.542c-8.25 8.25-21.5 8.208-29.668 0-8.208-8.208-8.208-21.5 0-29.708l17.542-17.542c-3.292-7-5.208-14.376-5.792-21.958l-24.084-6.416c-11.25-3.084-17.918-14.5-14.916-25.75 3.042-11.166 14.542-17.75 25.792-14.834l23.75 6.46c2.124-3.208 4.5-6.21 7.376-9.002 2.75-2.75 5.75-5.208 8.876-7.25l-6.376-23.792c-3-11.25 3.668-22.834 14.832-25.834 11.252-3 22.668 3.666 25.668 14.876l6.5 24c7.624 0.624 15 2.542 22 5.876l17.582-17.584c8.168-8.248 21.418-8.082 29.668 0.084 8.124 8.124 8.25 21.416 0 29.624l-17.624 17.624c3.376 6.92 5.376 14.376 5.876 22.002l24.124 6.376c11.124 3.042 17.792 14.5 14.792 25.75-3.002 11.12-14.502 17.788-25.794 14.872zM177.124 282.084c-8.208-8.208-21.5-8.208-29.75 0-8.124 8.166-8.124 21.542 0 29.666 8.25 8.166 21.542 8.166 29.75 0s8.126-21.5 0-29.666zM1024 672c0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224zM708.124 541.334c-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334z" />
|
||||
<glyph unicode="" glyph-name="weather4" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-19.418 0-38.418 3.5-56.5 10.416l-36 13.834-29-25.334c-46.5-40.582-105.624-62.916-166.5-62.916s-120 22.334-166.5 62.916l-29 25.334-36-13.834c-18-6.916-37.082-10.416-56.5-10.416-88.25 0-160 71.792-160 160s71.75 160 160 160c7.584 0 15-0.542 22.5-1.584l37.916-5.5 22.708 30.916c48.626 66.21 123.294 104.168 204.876 104.168 81.624 0 156.25-37.916 204.834-104.126l22.75-30.958 37.998 5.5c7.418 1.042 14.834 1.584 22.418 1.584 88.25 0 160-71.792 160-160s-71.75-160-160-160zM192 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM512 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM832 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM704 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM320 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64z" />
|
||||
<glyph unicode="" glyph-name="cloudy2" d="M1024 543.998c0 98.334-80 178.292-178.334 178.292-4.792 0-9.542-0.208-14.292-0.582-46.25 57.708-115.958 91.956-191.376 91.956-75.376 0-145.124-34.248-191.376-91.958-4.75 0.376-9.542 0.582-14.376 0.582-98.246 0.002-178.246-79.956-178.246-178.29 0-10.292 1.376-20.208 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.498-224-223.998 0-123.502 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.376-18.084 98.166-47.332 135.998 29.164 31.792 47.332 73.666 47.332 120zM800 128c-34.25 0-65.832 10.998-91.876 29.332-46.958-56.582-116.876-93.332-196.124-93.332-79.25 0-149.168 36.75-196.124 93.332-26-18.334-57.624-29.332-91.876-29.332-88.376 0-160 71.624-160 160s71.624 159.998 160 159.998c21.624 0 42.124-4.376 60.876-12.124 1.124 2.124 2.5 4 3.624 6.042 11.25 20.542 25.124 39.376 41.332 56.084 46.168 47.832 110.334 78 182.168 78 99.418 0 184.668-57.332 227.082-140.124 11.292 4.624 23.336 7.626 35.75 9.624l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.832 42.042-26.748 57.292-46.376 21-27.042 34.084-60.708 34.084-97.624 0-88.376-71.624-160-160-160zM931.124 468.75c-36.958 26.916-82 43.248-131.124 43.248-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.042 130.25-256.416 130.25-68.25 0-132.624-22.084-185.876-60.668 14.958 45.708 57.458 78.958 108.124 78.958 15.5 0 30.124-3.124 43.5-8.664 30.376 59.124 91.25 100.040 162.25 100.040s131.916-40.914 162.168-100.040c13.458 5.54 28.166 8.664 43.498 8.664 63.168 0 114.334-51.166 114.334-114.292 0.002-28.956-11.122-55.080-28.874-75.246z" />
|
||||
<glyph unicode="" glyph-name="cloud3" d="M1024 754.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 36.708-32 80.208-53.876 126.414-66.416l-45.832-30.584 64-64-64-128 192 128-64 64 9.624 19.166c73.5 2.25 143.5 29.458 198.958 77.834 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.164 31.75 47.332 73.624 47.332 120zM800 338.334c-34.25 0-65.832 11-91.876 29.292-38-45.792-91.5-77.458-152.458-88.25l-47.542-4.624c-77.624 1.248-146.124 37.248-192.248 92.872-26-18.292-57.624-29.292-91.876-29.292-88.376 0-160 71.582-160 160 0 88.334 71.624 160 160 160 21.624 0 42.124-4.418 60.876-12.166 1.124 2.166 2.5 4 3.624 6.084 11.25 20.542 25.124 39.334 41.332 56.084 46.168 47.792 110.334 78 182.168 78 99.418 0 184.668-57.334 227.082-140.166 11.292 4.666 23.336 7.666 35.75 9.666l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.834 42.042-26.75 57.292-46.416 21-27.042 34.084-60.668 34.084-97.584 0-88.418-71.624-160-160-160zM931.124 679.084c-36.958 26.876-82 43.25-131.124 43.25-10.624 0-21.124-0.75-31.584-2.25-59.748 81.374-154.040 130.25-256.416 130.25-68.25 0-132.624-22.124-185.876-60.708 14.958 45.706 57.458 78.956 108.124 78.956 15.5 0 30.124-3.124 43.5-8.666 30.376 59.168 91.252 100.084 162.252 100.084s131.916-40.916 162.168-100.084c13.458 5.542 28.166 8.666 43.498 8.666 63.168 0 114.334-51.166 114.334-114.248 0-29-11.124-55.126-28.876-75.25z" />
|
||||
<glyph unicode="" glyph-name="lightning3" d="M384 256l64-64-64-192 192 192-64 64 64 128-192-128zM1024 754.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 2.208-1.918 4.832-3.25 7.082-5.124l56.624 37.75c-18.876 13.376-36.5 28.25-51.25 46-26-18.292-57.624-29.292-91.876-29.292-88.376 0-160 71.582-160 160 0 88.334 71.624 160 160 160 21.624 0 42.124-4.418 60.876-12.166 1.124 2.166 2.5 4 3.624 6.084 11.25 20.542 25.124 39.334 41.332 56.084 46.168 47.792 110.334 78 182.168 78 99.418 0 184.668-57.334 227.082-140.166 11.292 4.666 23.336 7.666 35.75 9.666l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.834 42.042-26.75 57.292-46.416 21-27.042 34.084-60.668 34.084-97.584 0-88.418-71.624-160-160-160-34.25 0-65.832 11-91.876 29.292-28-33.75-64.876-59.124-106.292-75.124l-11.958-23.876 36.5-36.5c34.124 13.292 66.042 32.376 94.208 56.876 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.166 31.746 47.334 73.62 47.334 119.996zM931.124 679.084c-36.958 26.876-82 43.25-131.124 43.25-10.624 0-21.124-0.75-31.584-2.25-59.748 81.374-154.040 130.25-256.416 130.25-68.25 0-132.624-22.124-185.876-60.708 14.958 45.706 57.458 78.956 108.124 78.956 15.5 0 30.124-3.124 43.5-8.666 30.376 59.168 91.252 100.084 162.252 100.084s131.916-40.916 162.168-100.084c13.458 5.542 28.166 8.666 43.498 8.666 63.168 0 114.334-51.166 114.334-114.248 0-29-11.124-55.126-28.876-75.25z" />
|
||||
<glyph unicode="" glyph-name="sun3" d="M512 736c-123.5 0-224-100.5-224-224 0-123.498 100.5-224 224-224s224 100.502 224 224c0 123.5-100.5 224-224 224zM512 800c17.666 0 32 14.292 32 32v64c0 17.666-14.334 32-32 32-17.708 0-32-14.334-32-32v-64c0-17.708 14.292-32 32-32zM512 224c-17.708 0-32-14.334-32-32v-64c0-17.708 14.292-32 32-32 17.666 0 32 14.292 32 32v64c0 17.666-14.334 32-32 32zM760.834 715.666l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25-12.502 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.502-12.5-12.502-32.75 0-45.25 12.5-12.498 32.748-12.498 45.25 0zM263.082 308.292l-45.246-45.25c-12.504-12.5-12.504-32.752 0-45.25 12.498-12.5 32.746-12.5 45.246 0l45.25 45.25c12.502 12.582 12.502 32.75 0 45.25-12.498 12.5-32.748 12.584-45.25 0zM224 512c0 17.666-14.334 32-32 32h-64c-17.708 0-32-14.334-32-32 0-17.708 14.292-32 32-32h64c17.666 0 32 14.292 32 32zM896 544h-64c-17.708 0-32-14.334-32-32 0-17.708 14.292-32 32-32h64c17.666 0 32 14.292 32 32 0 17.666-14.334 32-32 32zM263.042 715.666c12.498-12.5 32.75-12.5 45.25 0 12.498 12.5 12.498 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.752 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM760.918 308.376c-12.586 12.5-32.752 12.5-45.25 0-12.5-12.498-12.586-32.75 0-45.25l45.25-45.25c12.498-12.498 32.748-12.498 45.25 0 12.498 12.5 12.498 32.752 0 45.25l-45.25 45.25z" />
|
||||
<glyph unicode="" glyph-name="moon2" d="M496.164 496.136c-63.040 63.084-79.958 154.21-52.040 233.084-30.5-10.79-59.336-27.666-83.708-52.040-87.502-87.5-87.502-229.334 0-316.79 87.458-87.46 229.25-87.504 316.748 0 24.458 24.372 41.292 53.208 52.042 83.708-78.83-27.918-169.998-11-233.042 52.038z" />
|
||||
<glyph unicode="" glyph-name="cloudy3" d="M416 896c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM664.876 811.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM32 576h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM704 608c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM167.082 811.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM800 512c-10.624 0-21.124-0.75-31.584-2.25-33.542 45.75-78.248 80.666-128.916 103-2.582 121.25-101.624 219.25-223.5 219.25-123.5 0-224-100.5-224-224 0-34.876 8.668-67.5 23-96.876-119.25-4.874-215-102.748-215-223.124 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM512 640c-91.876 0-177-39.624-236.75-106.5-11.874 22.334-19.25 47.416-19.25 74.5 0 88.376 71.624 160 160 160 79.624 0 145.124-58.334 157.416-134.5-20.040 4-40.498 6.5-61.416 6.5z" />
|
||||
<glyph unicode="" glyph-name="cloud4" d="M870.124 499.668c9.75 7.25 19.624 14.374 28.458 23.208 26.416 26.458 46.542 58.666 59.584 95.708 4.166 11.584 1.208 24.584-7.544 33.25-8.708 8.75-21.624 11.708-33.246 7.584-70.792-25-147.376-8-199.792 44.5-52.498 52.5-69.582 129.042-44.498 199.792 4.084 11.624 1.166 24.542-7.584 33.292-8.666 8.666-21.624 11.666-33.25 7.582-37.084-13.166-69.25-33.25-95.668-59.666-67.082-67-87.958-162-64.958-247.584-86.5-11.042-164.25-57-216.042-127.584-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.498-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5.002 79.418 14.668 57.912-50.5 131.58-78.668 208.58-78.668 77.084 0 150.666 28.168 208.582 78.668 25.25-9.666 52.042-14.668 79.418-14.668 123.5 0 224 100.5 224 224 0.002 98.876-64.832 182.042-153.874 211.668zM581.832 839.666c5.084 5.166 10.542 9.958 16.292 14.458-4.5-71.958 21.458-142.75 74.208-195.458 52.752-52.75 123.542-78.666 195.502-74.208-27.584-35.168-65.584-57.042-106.252-66.376-54.75 69.5-135.208 113.248-223.916 120.374-24.542 67.918-10.166 146.878 44.166 201.21z" />
|
||||
<glyph unicode="" glyph-name="cloud5" d="M800 704c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" glyph-name="lightning4" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 43.082-37.542 94.832-62.582 150.208-73.042l-69.626-69.624 64-64-64-192 192 192-64 64 22 65.998c68.916 4.876 134.25 31.086 186.582 76.668 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" glyph-name="rainy3" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM448 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" glyph-name="rainy4" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM450 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM192 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" glyph-name="windy4" d="M834.084 691.834c-47.958 49.084-114.25 77.542-183.46 77.542-69.124 0-135.376-28.458-183.374-77.542-105.624-4.918-190-92.376-190-199.168 0-109.916 89.418-199.332 199.376-199.332 11.624 0 23.208 1 34.5 2.998 41.5-27.082 89.876-41.708 139.498-41.708 49.708 0 98.126 14.626 139.544 41.708 11.414-1.998 22.916-2.998 34.582-2.998 109.874 0 199.25 89.416 199.25 199.332 0 106.792-84.376 194.25-189.916 199.168zM288 320h-256c-17.666 0-32-14.334-32-32s14.334-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32zM32 384h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32zM96 512h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32z" />
|
||||
<glyph unicode="" glyph-name="windy5" d="M834.084 882.416c-47.96 49.126-114.25 77.584-183.46 77.584-69.124 0-135.376-28.458-183.33-77.584-105.626-4.876-190.042-92.334-190.042-199.084 0-109.956 89.418-199.416 199.376-199.416 11.668 0 23.208 1.002 34.542 3 41.458-27.042 89.834-41.666 139.458-41.666 49.708 0 98.126 14.624 139.544 41.666 11.414-1.998 22.916-3 34.582-3 109.874 0 199.25 89.46 199.25 199.416-0.004 106.752-84.38 194.252-189.92 199.084zM288 510.624h-256c-17.666 0-32-14.292-32-32 0-17.706 14.334-32 32-32h256c17.666 0 32 14.294 32 32 0 17.708-14.334 32-32 32zM32 574.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM96 702.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM448 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" glyph-name="snowy4" d="M652.084 136.624l-36 20.752c1.084 6.248 1.914 12.622 1.914 19.248 0 6.624-0.83 13-1.998 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.334-15.834-35.334-35.376v-41.75c-12.25-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.582 4-48.332-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.082-19.124v-41.876c0-19.498 15.834-35.248 35.334-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.332-15.792 35.332-35.292-15.832-35.376-35.332-35.376zM800 896c-10.624 0-21.124-0.75-31.584-2.25-59.75 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" glyph-name="snowy5" d="M652.084 136.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM948.332 231.5l-24.166 6.416c-0.582 7.666-2.416 14.958-5.792 21.958l17.542 17.542c8.25 8.25 8.208 21.584 0 29.708-8.166 8.208-21.416 8.25-29.666 0l-17.582-17.5c-6.918 3.25-14.292 5.124-21.918 5.75l-6.418 24.124c-2.998 11.166-14.5 17.876-25.748 14.876-11.208-3.042-17.75-14.542-14.834-25.75l6.418-23.792c-3.168-2.168-6.168-4.584-9-7.334-2.75-2.834-5.084-5.832-7.252-8.918l-23.792 6.418c-11.208 2.998-22.792-3.752-25.792-14.876-2.998-11.25 3.752-22.708 14.834-25.75l24-6.458c0.668-7.542 2.584-14.916 5.958-21.918l-17.624-17.624c-8.166-8.208-8.124-21.458 0.084-29.624 8.166-8.166 21.416-8.25 29.584-0.084l17.664 17.666c6.918-3.414 14.336-5.332 22.002-5.914l6.332-24.042c3.084-11.208 14.5-17.876 25.752-14.876 11.166 3 17.914 14.498 14.916 25.834l-6.418 23.792c3 2.124 6.084 4.5 8.918 7.25 2.75 2.792 5.084 5.876 7.248 8.958l23.834-6.418c11.208-3 22.75 3.708 25.708 14.834 3 11.17-3.624 22.668-14.792 25.752zM876.624 218.124c-8.25-8.25-21.542-8.208-29.75 0-8.124 8.124-8.208 21.458 0 29.708 8.208 8.166 21.542 8.166 29.75 0 8.126-8.208 8.126-21.582 0-29.708zM237.876 339l-23.75-6.376c-2.208 3-4.5 6.042-7.292 8.876-2.832 2.75-5.832 5.124-8.958 7.25l6.376 23.876c3 11.208-3.668 22.75-14.75 25.708-11.25 3-22.75-3.668-25.75-14.834l-6.5-24.124c-7.624-0.624-14.916-2.5-21.876-5.792l-17.624 17.542c-8.25 8.25-21.5 8.208-29.668 0-8.208-8.208-8.208-21.5 0-29.708l17.542-17.542c-3.292-7-5.208-14.376-5.792-21.958l-24.084-6.416c-11.25-3.084-17.918-14.5-14.916-25.75 3.042-11.166 14.542-17.75 25.792-14.834l23.75 6.46c2.124-3.208 4.5-6.21 7.376-9.002 2.75-2.75 5.75-5.208 8.876-7.25l-6.376-23.792c-3-11.25 3.668-22.834 14.832-25.834 11.252-3 22.668 3.666 25.668 14.876l6.5 24c7.624 0.624 15 2.542 22 5.876l17.582-17.584c8.168-8.248 21.418-8.082 29.668 0.084 8.124 8.124 8.25 21.416 0 29.624l-17.624 17.624c3.376 6.92 5.376 14.376 5.876 22.002l24.124 6.376c11.124 3.042 17.792 14.5 14.792 25.75-3.002 11.12-14.502 17.788-25.794 14.872zM177.124 282.084c-8.208-8.208-21.5-8.208-29.75 0-8.124 8.166-8.124 21.542 0 29.666 8.25 8.166 21.542 8.166 29.75 0s8.126-21.5 0-29.666zM1024 672c0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224z" />
|
||||
<glyph unicode="" glyph-name="weather5" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM192 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM512 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM832 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM704 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM320 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64z" />
|
||||
<glyph unicode="" glyph-name="cloudy4" d="M976.668 529.166c29.248-37.832 47.332-84.624 47.332-136 0-123.498-100.5-224-224-224-27.376 0-54.168 5-79.418 14.666-57.916-50.498-131.498-78.666-208.582-78.666-77 0-150.668 28.168-208.582 78.666-25.25-9.666-52.042-14.666-79.418-14.666-123.5 0-224 100.502-224 224 0 123.5 100.5 224 224 224 10.624 0 21.124-0.75 31.584-2.25 1.042 1.458 2.332 2.75 3.416 4.166-1.624 9.876-3 19.792-3 30.082 0 98.334 80 178.292 178.25 178.292 4.832 0 9.624-0.208 14.376-0.584 46.25 57.708 116 91.958 191.376 91.958 75.418 0 145.124-34.25 191.376-91.958 4.75 0.376 9.5 0.584 14.292 0.584 98.33 0.002 178.33-79.956 178.33-178.29 0-46.332-18.168-88.208-47.332-120z" />
|
||||
<glyph unicode="" glyph-name="lightning5" d="M1024 754.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 36.708-32 80.208-53.876 126.414-66.416l-45.832-30.584 64-64-64-128 192 128-64 64 9.624 19.166c73.5 2.25 143.5 29.458 198.958 77.834 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.164 31.75 47.332 73.624 47.332 120z" />
|
||||
<glyph unicode="" glyph-name="thermometer" d="M576 302.25v587.916c0 38.584-28.668 69.834-64 69.834-35.334 0-64-31.25-64-69.834v-587.916c-38.084-22.166-64-63.002-64-110.25 0-70.666 57.332-128 128-128 70.666 0 128 57.334 128 128 0 47.248-25.876 88.084-64 110.25z" />
|
||||
<glyph unicode="" glyph-name="compass" d="M512 1024c-282.792 0-512-229.208-512-512 0-282.75 229.208-512 512-512 282.75 0 512 229.25 512 512 0 282.792-229.25 512-512 512zM512 128c-211.75 0-384 172.25-384 384s172.25 384 384 384 384-172.25 384-384-172.25-384-384-384zM320 320l256 128 128 256-256-128-128-256z" />
|
||||
<glyph unicode="" glyph-name="none" d="M318.188 466.708h-2.084l-67.042 102.376-81.876 120.874h-63.5v-352.79h70.124v222.208h3.042l58.208-89.084 89.376-133.124h63.876v352.79h-70.124v-223.25zM412.938 315.668h51.668l129.582 392.664h-52.25l-129-392.664zM797.438 689.958h-71.666l-123.958-352.79h74.75l23.042 72.75h122.918l21.498-72.75h76.292l-122.876 352.79zM718.562 468.75l14.292 46.584 27.208 91.664h2l27.708-93.208 13.792-45.042h-85z" />
|
||||
<glyph unicode="" glyph-name="Celsius" d="M418.334 671.25c-7.208 6.792-15.584 12.166-25.084 16.124-9.624 3.876-19.876 5.876-30.75 5.876-10.916 0-21.168-2-30.75-5.876-9.5-3.958-17.876-9.334-25.082-16.124-7.168-6.834-12.792-14.834-16.918-24.084-4.084-9.21-6.124-18.958-6.124-29.166 0-10.25 2.042-20 6.124-29.21 4.124-9.208 9.75-17.25 16.918-24.040 7.208-6.834 15.582-12.25 25.082-16.126 9.582-3.958 19.834-5.916 30.75-5.916 10.876 0 21.124 1.958 30.75 5.916 9.5 3.876 17.876 9.292 25.084 16.126 7.166 6.79 12.792 14.834 16.832 24.040 4.084 9.21 6.208 18.958 6.208 29.21 0 10.208-2.124 19.958-6.208 29.166-4.042 9.252-9.666 17.252-16.832 24.084zM387.624 593.918c-6.876-6.834-15.25-10.25-25.124-10.25s-18.25 3.418-25.124 10.25c-6.792 6.834-10.25 14.834-10.25 24.084 0 9.5 3.458 17.666 10.25 24.29 6.876 6.666 15.25 9.958 25.124 9.958s18.25-3.292 25.124-9.958c6.75-6.624 10.208-14.79 10.208-24.29 0-9.252-3.456-17.252-10.208-24.084zM670.5 400.418c-12.124-3.46-24.166-5.166-36.124-5.166-7.876 0-15.624 1.208-23.292 3.58-7.708 2.418-14.708 6.168-20.998 11.292-6.334 5.126-11.46 11.668-15.334 19.708-3.918 8-5.916 17.834-5.916 29.418v102.916c0 11.584 1.998 21.5 5.916 29.708 3.874 8.166 8.918 14.834 15.082 19.958 6.168 5.124 13.084 8.792 21 11 7.834 2.21 15.668 3.334 23.542 3.334 11.958 0 24.248-1.75 36.874-5.376 12.626-3.582 24.376-9.998 35.336-19.208l33.792 54.292c-13.708 11.916-29.958 20.624-48.958 26.124-18.918 5.416-38.584 8.166-59.086 8.166-16.708 0-33.166-2.416-49.166-7.168-16.042-4.792-30.292-11.958-42.75-21.5-12.416-9.584-22.542-21.416-30.166-35.582-7.75-14.168-11.582-30.666-11.582-49.416v-132.084c0-19.124 3.958-35.75 11.832-49.918 7.834-14.168 18.082-25.958 30.668-35.332 12.664-9.416 26.958-16.458 42.998-21.25 16.084-4.75 32.458-7.168 49.208-7.168 20.792 0 40.542 3.084 59.376 9.208 18.75 6.166 34.624 14.708 47.624 25.584l-33.292 54.292c-12.252-9.58-24.5-16.038-36.584-19.412z" />
|
||||
<glyph unicode="" glyph-name="Fahrenheit" d="M417.062 669.458c-7.208 6.792-15.582 12.168-25.082 16.124-9.624 3.876-19.876 5.876-30.75 5.876-10.918 0-21.168-2-30.75-5.876-9.5-3.958-17.876-9.334-25.084-16.124-7.166-6.832-12.792-14.832-16.918-24.082-4.084-9.21-6.124-18.958-6.124-29.168 0-10.25 2.040-20 6.124-29.208 4.126-9.208 9.752-17.25 16.918-24.042 7.208-6.832 15.584-12.25 25.084-16.124 9.582-3.958 19.832-5.916 30.75-5.916 10.876 0 21.124 1.958 30.75 5.916 9.5 3.876 17.876 9.292 25.082 16.124 7.168 6.792 12.792 14.834 16.832 24.042 4.084 9.208 6.21 18.958 6.21 29.208 0 10.208-2.126 19.958-6.21 29.168-4.040 9.25-9.664 17.25-16.832 24.082zM386.354 592.126c-6.876-6.834-15.25-10.252-25.124-10.252s-18.25 3.418-25.124 10.252c-6.792 6.832-10.25 14.832-10.25 24.082 0 9.5 3.458 17.666 10.25 24.292 6.876 6.666 15.25 9.958 25.124 9.958s18.25-3.292 25.124-9.958c6.748-6.624 10.208-14.792 10.208-24.292 0-9.25-3.46-17.25-10.208-24.082zM741.644 622.334v63h-243.164v-352.792h70.126v143.876h147.958v62.958h-147.958v82.958h173.038z" />
|
||||
<glyph unicode="windy5" glyph-name="windy5" d="M834.084 882.416c-47.96 49.126-114.25 77.584-183.46 77.584-69.124 0-135.376-28.458-183.33-77.584-105.626-4.876-190.042-92.334-190.042-199.084 0-109.956 89.418-199.416 199.376-199.416 11.668 0 23.208 1.002 34.542 3 41.458-27.042 89.834-41.666 139.458-41.666 49.708 0 98.126 14.624 139.544 41.666 11.414-1.998 22.916-3 34.582-3 109.874 0 199.25 89.46 199.25 199.416-0.004 106.752-84.38 194.252-189.92 199.084zM288 510.624h-256c-17.666 0-32-14.292-32-32 0-17.706 14.334-32 32-32h256c17.666 0 32 14.294 32 32 0 17.708-14.334 32-32 32zM32 574.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM96 702.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM448 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="windy4" glyph-name="windy4" d="M834.084 691.834c-47.958 49.084-114.25 77.542-183.46 77.542-69.124 0-135.376-28.458-183.374-77.542-105.624-4.918-190-92.376-190-199.168 0-109.916 89.418-199.332 199.376-199.332 11.624 0 23.208 1 34.5 2.998 41.5-27.082 89.876-41.708 139.498-41.708 49.708 0 98.126 14.626 139.544 41.708 11.414-1.998 22.916-2.998 34.582-2.998 109.874 0 199.25 89.416 199.25 199.332 0 106.792-84.376 194.25-189.916 199.168zM288 320h-256c-17.666 0-32-14.334-32-32s14.334-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32zM32 384h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32zM96 512h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32z" />
|
||||
<glyph unicode="windy3" glyph-name="windy3" d="M834.084 882.416c-47.96 49.126-114.25 77.584-183.46 77.584-69.124 0-135.376-28.458-183.33-77.584-105.626-4.876-190.042-92.334-190.042-199.084 0-109.956 89.418-199.416 199.376-199.416 11.668 0 23.208 1.002 34.542 3 41.458-27.042 89.834-41.666 139.458-41.666 49.708 0 98.126 14.624 139.544 41.666 11.414-1.998 22.916-3 34.582-3 109.876 0 199.25 89.46 199.25 199.416-0.004 106.752-84.38 194.252-189.92 199.084zM824.75 547.916c-16.624 0-32.75 3-48 8.916-35-30.5-79.5-47.584-126.126-47.584-46.498 0-90.998 17.084-125.998 47.584-15.25-5.918-31.5-8.916-48-8.916-74.624 0-135.376 60.75-135.376 135.416 0 74.584 60.75 135.334 135.376 135.334 6.376 0 12.75-0.5 19.042-1.376 36.208 49.168 93.082 78.71 154.956 78.71 61.876 0 118.876-29.542 155.002-78.708 6.25 0.876 12.624 1.376 19.124 1.376 74.624 0 135.25-60.75 135.25-135.334 0-74.668-60.624-135.418-135.25-135.418zM288 510.624h-256c-17.666 0-32-14.292-32-32 0-17.706 14.334-32 32-32h256c17.666 0 32 14.294 32 32 0 17.708-14.334 32-32 32zM32 574.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM96 702.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM448 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="windy2" glyph-name="windy2" d="M834.084 691.834c-47.958 49.084-114.25 77.542-183.46 77.542-69.124 0-135.376-28.458-183.33-77.542-105.626-4.918-190.042-92.376-190.042-199.168 0-109.916 89.418-199.332 199.376-199.332 11.668 0 23.208 1 34.542 2.998 41.458-27.082 89.834-41.708 139.458-41.708 49.708 0 98.126 14.626 139.544 41.708 11.414-1.998 22.916-2.998 34.582-2.998 109.874 0 199.25 89.416 199.25 199.332-0.004 106.792-84.38 194.25-189.92 199.168zM824.75 357.334c-16.624 0-32.75 2.998-48 8.834-35-30.5-79.5-47.544-126.126-47.544-46.498 0-90.998 17.044-125.998 47.544-15.25-5.836-31.5-8.834-48-8.834-74.624 0-135.376 60.75-135.376 135.332 0 74.626 60.75 135.376 135.376 135.376 6.376 0 12.75-0.458 19.042-1.376 36.208 49.166 93.082 78.708 154.956 78.708 61.876 0 118.876-29.542 155.002-78.708 6.25 0.916 12.624 1.376 19.124 1.376 74.624 0 135.25-60.75 135.25-135.376 0-74.582-60.624-135.332-135.25-135.332zM288 320h-256c-17.666 0-32-14.334-32-32s14.334-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32zM32 384h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32zM96 512h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32z" />
|
||||
<glyph unicode="windy" glyph-name="windy" d="M990 578h-163.25c-16.126 143.584-136.874 256-284.75 256-99.624 0-187.5-50.916-239.25-128h-208.75c-17.666 0-32-14.334-32-32s14.334-32 32-32h177.666c-7.248-20.416-11.958-41.792-14.416-64h-99.25c-17.666 0-32-14.334-32-32s14.334-32 32-32h99.25c2.458-22.168 7.168-43.624 14.416-64h-171.834c-20.914 0-37.832-14.334-37.832-32s16.918-32 37.832-32h202.918c51.75-77.124 139.624-128 239.25-128 99.624 0 187.5 50.876 239.248 128h74.92c20.914 0 37.832 14.334 37.832 32s-16.918 32-37.832 32h-43.834c7.248 20.376 11.916 41.832 14.416 64h163.25c17.666 0 32 14.334 32 32s-14.334 32-32 32zM340.458 642h201.542c17.666 0 32 14.334 32 32s-14.334 32-32 32h-156.292c40.418 39.458 95.458 64 156.292 64 112.582 0 205.084-83.75 220.75-192h-441.5c3.25 22.624 9.668 44.084 19.208 64zM542 322c-60.834 0-115.876 24.582-156.292 64h312.542c-40.374-39.418-95.416-64-156.25-64zM743.5 450h-403.042c-9.54 19.916-15.958 41.376-19.208 64h441.5c-3.25-22.624-9.668-44.084-19.25-64z" />
|
||||
<glyph unicode="wind" glyph-name="wind" d="M862 640c-53 0-96-43-96-96 0-11.292 2.334-21.916 5.876-32h-613.876c-17.666 0-32-14.334-32-32s14.334-32 32-32h704c53 0 96 43 96 96s-43 96-96 96zM158 576h384c53 0 96 43 96 96s-43 96-96 96-96-43-96-96c0-11.292 2.334-21.916 5.876-32h-293.876c-17.666 0-32-14.334-32-32s14.334-32 32-32zM670 384c-1.876 0-3.668-0.416-5.582-0.582-1.25 0.082-2.292 0.582-3.542 0.582h-493.708c-22.75 0-41.168-14.334-41.168-32s18.418-32 41.168-32h412.708c-3.542-10.084-5.876-20.752-5.876-32 0-53 43-96 96-96s96 43 96 96-43 96-96 96z" />
|
||||
<glyph unicode="weather5" glyph-name="weather5" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM192 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM512 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM832 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM704 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM320 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64z" />
|
||||
<glyph unicode="weather4" glyph-name="weather4" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-19.418 0-38.418 3.5-56.5 10.416l-36 13.834-29-25.334c-46.5-40.582-105.624-62.916-166.5-62.916s-120 22.334-166.5 62.916l-29 25.334-36-13.834c-18-6.916-37.082-10.416-56.5-10.416-88.25 0-160 71.792-160 160s71.75 160 160 160c7.584 0 15-0.542 22.5-1.584l37.916-5.5 22.708 30.916c48.626 66.21 123.294 104.168 204.876 104.168 81.624 0 156.25-37.916 204.834-104.126l22.75-30.958 37.998 5.5c7.418 1.042 14.834 1.584 22.418 1.584 88.25 0 160-71.792 160-160s-71.75-160-160-160zM192 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM512 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM832 384c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM704 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM320 128c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64z" />
|
||||
<glyph unicode="weather3" glyph-name="weather3" d="M67.208 512c-2.084 10.334-3.208 21.042-3.208 32 0 88.376 71.624 160 160 160 21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160 0-10.958-1.124-21.666-3.25-32h64c1.584 10.542 3.25 21.042 3.25 32 0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-10.958 1.708-21.458 3.25-32h63.958zM992 448h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32zM992 320h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32zM992 192h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="weather2" glyph-name="weather2" d="M128 385.998h768c17.666 0 32 14.334 32 32s-14.334 32-32 32h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32zM896 321.998h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 193.998h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM410.084 514c-0.666 0.666-1.502 1.084-2.166 1.75-74.876 74.876-74.876 196.668 0 271.584 5.124 5.084 10.54 9.916 16.292 14.416-4.502-71.916 21.458-142.75 74.208-195.458 52.748-52.792 123.58-78.666 195.498-74.166-5.334-6.792-11.748-12.25-17.792-18.124h83.042c10.084 16.084 18.5 33.5 25.166 52.126 4.042 11.708 1.084 24.666-7.666 33.334-8.582 8.708-21.584 11.708-33.248 7.582-70.752-24.998-147.292-7.958-199.75 44.5-52.502 52.5-69.584 129.042-44.502 199.792 4.166 11.624 1.166 24.542-7.582 33.292-8.668 8.708-21.626 11.666-33.25 7.542-37.042-13.084-69.25-33.208-95.666-59.584-86.418-86.42-97.71-219.544-34.544-318.586h81.96z" />
|
||||
<glyph unicode="weather" glyph-name="weather" d="M512 834c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM760.876 749.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0zM128 514h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM800 546c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM263.082 749.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM291.25 514h64c-2.124 10.334-3.25 21.042-3.25 32 0 88.376 71.624 160 160 160s160-71.624 160-160c0-10.958-1.124-21.666-3.25-32h64c1.584 10.542 3.25 21.042 3.25 32 0 123.5-100.5 224-224 224s-224-100.5-224-224c0-10.958 1.75-21.458 3.25-32zM896 450h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 322h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 194h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="thermometer" glyph-name="thermometer" d="M576 302.25v587.916c0 38.584-28.668 69.834-64 69.834-35.334 0-64-31.25-64-69.834v-587.916c-38.084-22.166-64-63.002-64-110.25 0-70.666 57.332-128 128-128 70.666 0 128 57.334 128 128 0 47.248-25.876 88.084-64 110.25z" />
|
||||
<glyph unicode="sunrise" glyph-name="sunrise" d="M355.23 448c14.876 73.042 79.376 128 156.792 128 77.418 0 141.916-54.958 156.752-128h64c-15.668 108.25-108.168 192-220.752 192-112.542 0-205.082-83.75-220.75-192h63.958zM512.022 704c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32-17.664 0-32-14.334-32-32v-64c0-17.666 14.336-32 32-32zM806.146 710.166c-12.498 12.5-32.748 12.5-45.25 0l-45.25-45.25c-12.498-12.5-12.498-32.75 0-45.25 12.502-12.5 32.752-12.5 45.25 0l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25zM308.354 664.916l-45.25 45.25c-12.498 12.5-32.746 12.5-45.25 0-12.498-12.5-12.498-32.75 0-45.25l45.25-45.25c12.504-12.5 32.752-12.5 45.25 0 12.504 12.5 12.504 32.75 0 45.25zM704.022 384h-384c-17.664 0-32-14.334-32-32s14.336-32 32-32h384c17.666 0 32 14.334 32 32s-14.334 32-32 32zM640.022 256h-256c-17.664 0-32-14.334-32-32s14.336-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="sun3" glyph-name="sun3" d="M512 736c-123.5 0-224-100.5-224-224 0-123.498 100.5-224 224-224s224 100.502 224 224c0 123.5-100.5 224-224 224zM512 800c17.666 0 32 14.292 32 32v64c0 17.666-14.334 32-32 32-17.708 0-32-14.334-32-32v-64c0-17.708 14.292-32 32-32zM512 224c-17.708 0-32-14.334-32-32v-64c0-17.708 14.292-32 32-32 17.666 0 32 14.292 32 32v64c0 17.666-14.334 32-32 32zM760.834 715.666l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25-12.502 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.502-12.5-12.502-32.75 0-45.25 12.5-12.498 32.748-12.498 45.25 0zM263.082 308.292l-45.246-45.25c-12.504-12.5-12.504-32.752 0-45.25 12.498-12.5 32.746-12.5 45.246 0l45.25 45.25c12.502 12.582 12.502 32.75 0 45.25-12.498 12.5-32.748 12.584-45.25 0zM224 512c0 17.666-14.334 32-32 32h-64c-17.708 0-32-14.334-32-32 0-17.708 14.292-32 32-32h64c17.666 0 32 14.292 32 32zM896 544h-64c-17.708 0-32-14.334-32-32 0-17.708 14.292-32 32-32h64c17.666 0 32 14.292 32 32 0 17.666-14.334 32-32 32zM263.042 715.666c12.498-12.5 32.75-12.5 45.25 0 12.498 12.5 12.498 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.752 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM760.918 308.376c-12.586 12.5-32.752 12.5-45.25 0-12.5-12.498-12.586-32.75 0-45.25l45.25-45.25c12.498-12.498 32.748-12.498 45.25 0 12.498 12.5 12.498 32.752 0 45.25l-45.25 45.25z" />
|
||||
<glyph unicode="sun2" glyph-name="sun2" d="M542 770c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM542 194c-17.666 0-32-14.334-32-32v-64c0-17.666 14.334-32 32-32s32 14.334 32 32v64c0 17.666-14.334 32-32 32zM293.124 278.332l-45.25-45.25c-12.5-12.498-12.5-32.748 0-45.248s32.75-12.5 45.25 0l45.25 45.248c12.5 12.542 12.5 32.752 0 45.25-12.498 12.502-32.75 12.544-45.25 0zM254 482c0 17.666-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32zM293.082 685.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM670 706c-22.376 0-43.624-4.334-64-10.416-20.376 6.084-41.624 10.416-64 10.416-123.5 0-224-100.5-224-224s100.5-224 224-224c22.376 0 43.624 4.332 64 10.418 20.376-6.086 41.624-10.418 64-10.418 123.5 0 224 100.5 224 224s-100.5 224-224 224zM510.458 325.166c-73.292 14.666-128.458 79.252-128.458 156.834 0 77.584 55.166 142.166 128.458 156.834-39.79-40.458-64.458-95.75-64.458-156.834s24.668-116.376 64.458-156.834z" />
|
||||
<glyph unicode="sun" glyph-name="sun" d="M512 736c-123.5 0-224-100.5-224-224s100.5-224 224-224 224 100.5 224 224c0 123.5-100.5 224-224 224zM512 352c-88.376 0-160 71.624-160 160s71.624 160 160 160 160-71.624 160-160-71.624-160-160-160zM512 800c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM512 224c-17.666 0-32-14.334-32-32v-64c0-17.666 14.334-32 32-32s32 14.334 32 32v64c0 17.666-14.334 32-32 32zM760.876 715.666l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25s-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM263.124 308.332l-45.25-45.25c-12.5-12.498-12.5-32.748 0-45.248s32.75-12.5 45.25 0l45.25 45.248c12.5 12.542 12.5 32.752 0 45.25-12.498 12.502-32.75 12.544-45.25 0zM224 512c0 17.666-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32zM896 544h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32zM263.082 715.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM760.918 308.376c-12.542 12.5-32.752 12.5-45.25 0-12.502-12.5-12.542-32.75 0-45.25l45.25-45.25c12.498-12.5 32.748-12.5 45.248 0s12.5 32.748 0 45.25l-45.248 45.25z" />
|
||||
<glyph unicode="snowy5" glyph-name="snowy5" d="M652.084 136.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM948.332 231.5l-24.166 6.416c-0.582 7.666-2.416 14.958-5.792 21.958l17.542 17.542c8.25 8.25 8.208 21.584 0 29.708-8.166 8.208-21.416 8.25-29.666 0l-17.582-17.5c-6.918 3.25-14.292 5.124-21.918 5.75l-6.418 24.124c-2.998 11.166-14.5 17.876-25.748 14.876-11.208-3.042-17.75-14.542-14.834-25.75l6.418-23.792c-3.168-2.168-6.168-4.584-9-7.334-2.75-2.834-5.084-5.832-7.252-8.918l-23.792 6.418c-11.208 2.998-22.792-3.752-25.792-14.876-2.998-11.25 3.752-22.708 14.834-25.75l24-6.458c0.668-7.542 2.584-14.916 5.958-21.918l-17.624-17.624c-8.166-8.208-8.124-21.458 0.084-29.624 8.166-8.166 21.416-8.25 29.584-0.084l17.664 17.666c6.918-3.414 14.336-5.332 22.002-5.914l6.332-24.042c3.084-11.208 14.5-17.876 25.752-14.876 11.166 3 17.914 14.498 14.916 25.834l-6.418 23.792c3 2.124 6.084 4.5 8.918 7.25 2.75 2.792 5.084 5.876 7.248 8.958l23.834-6.418c11.208-3 22.75 3.708 25.708 14.834 3 11.17-3.624 22.668-14.792 25.752zM876.624 218.124c-8.25-8.25-21.542-8.208-29.75 0-8.124 8.124-8.208 21.458 0 29.708 8.208 8.166 21.542 8.166 29.75 0 8.126-8.208 8.126-21.582 0-29.708zM237.876 339l-23.75-6.376c-2.208 3-4.5 6.042-7.292 8.876-2.832 2.75-5.832 5.124-8.958 7.25l6.376 23.876c3 11.208-3.668 22.75-14.75 25.708-11.25 3-22.75-3.668-25.75-14.834l-6.5-24.124c-7.624-0.624-14.916-2.5-21.876-5.792l-17.624 17.542c-8.25 8.25-21.5 8.208-29.668 0-8.208-8.208-8.208-21.5 0-29.708l17.542-17.542c-3.292-7-5.208-14.376-5.792-21.958l-24.084-6.416c-11.25-3.084-17.918-14.5-14.916-25.75 3.042-11.166 14.542-17.75 25.792-14.834l23.75 6.46c2.124-3.208 4.5-6.21 7.376-9.002 2.75-2.75 5.75-5.208 8.876-7.25l-6.376-23.792c-3-11.25 3.668-22.834 14.832-25.834 11.252-3 22.668 3.666 25.668 14.876l6.5 24c7.624 0.624 15 2.542 22 5.876l17.582-17.584c8.168-8.248 21.418-8.082 29.668 0.084 8.124 8.124 8.25 21.416 0 29.624l-17.624 17.624c3.376 6.92 5.376 14.376 5.876 22.002l24.124 6.376c11.124 3.042 17.792 14.5 14.792 25.75-3.002 11.12-14.502 17.788-25.794 14.872zM177.124 282.084c-8.208-8.208-21.5-8.208-29.75 0-8.124 8.166-8.124 21.542 0 29.666 8.25 8.166 21.542 8.166 29.75 0s8.126-21.5 0-29.666zM1024 672c0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224z" />
|
||||
<glyph unicode="snowy4" glyph-name="snowy4" d="M652.084 136.624l-36 20.752c1.084 6.248 1.914 12.622 1.914 19.248 0 6.624-0.83 13-1.998 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.334-15.834-35.334-35.376v-41.75c-12.25-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.582 4-48.332-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.082-19.124v-41.876c0-19.498 15.834-35.248 35.334-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.332-15.792 35.332-35.292-15.832-35.376-35.332-35.376zM800 896c-10.624 0-21.124-0.75-31.584-2.25-59.75 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="snowy3" glyph-name="snowy3" d="M652.084 136.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM948.332 231.5l-24.166 6.416c-0.582 7.666-2.416 14.958-5.792 21.958l17.542 17.542c8.25 8.25 8.208 21.584 0 29.708-8.166 8.208-21.416 8.25-29.666 0l-17.582-17.5c-6.918 3.25-14.292 5.124-21.918 5.75l-6.418 24.124c-2.998 11.166-14.5 17.876-25.748 14.876-11.208-3.042-17.75-14.542-14.834-25.75l6.418-23.792c-3.168-2.168-6.168-4.584-9-7.334-2.75-2.834-5.084-5.832-7.252-8.918l-23.792 6.418c-11.208 2.998-22.792-3.752-25.792-14.876-2.998-11.25 3.752-22.708 14.834-25.75l24-6.458c0.668-7.542 2.584-14.916 5.958-21.918l-17.624-17.624c-8.166-8.208-8.124-21.458 0.084-29.624 8.166-8.166 21.416-8.25 29.584-0.084l17.664 17.666c6.918-3.414 14.336-5.332 22.002-5.914l6.332-24.042c3.084-11.208 14.5-17.876 25.752-14.876 11.166 3 17.914 14.498 14.916 25.834l-6.418 23.792c3 2.124 6.084 4.5 8.918 7.25 2.75 2.792 5.084 5.876 7.248 8.958l23.834-6.418c11.208-3 22.75 3.708 25.708 14.834 3 11.17-3.624 22.668-14.792 25.752zM876.624 218.124c-8.25-8.25-21.542-8.208-29.75 0-8.124 8.124-8.208 21.458 0 29.708 8.208 8.166 21.542 8.166 29.75 0 8.126-8.208 8.126-21.582 0-29.708zM237.876 339l-23.75-6.376c-2.208 3-4.5 6.042-7.292 8.876-2.832 2.75-5.832 5.124-8.958 7.25l6.376 23.876c3 11.208-3.668 22.75-14.75 25.708-11.25 3-22.75-3.668-25.75-14.834l-6.5-24.124c-7.624-0.624-14.916-2.5-21.876-5.792l-17.624 17.542c-8.25 8.25-21.5 8.208-29.668 0-8.208-8.208-8.208-21.5 0-29.708l17.542-17.542c-3.292-7-5.208-14.376-5.792-21.958l-24.084-6.416c-11.25-3.084-17.918-14.5-14.916-25.75 3.042-11.166 14.542-17.75 25.792-14.834l23.75 6.46c2.124-3.208 4.5-6.21 7.376-9.002 2.75-2.75 5.75-5.208 8.876-7.25l-6.376-23.792c-3-11.25 3.668-22.834 14.832-25.834 11.252-3 22.668 3.666 25.668 14.876l6.5 24c7.624 0.624 15 2.542 22 5.876l17.582-17.584c8.168-8.248 21.418-8.082 29.668 0.084 8.124 8.124 8.25 21.416 0 29.624l-17.624 17.624c3.376 6.92 5.376 14.376 5.876 22.002l24.124 6.376c11.124 3.042 17.792 14.5 14.792 25.75-3.002 11.12-14.502 17.788-25.794 14.872zM177.124 282.084c-8.208-8.208-21.5-8.208-29.75 0-8.124 8.166-8.124 21.542 0 29.666 8.25 8.166 21.542 8.166 29.75 0s8.126-21.5 0-29.666zM1024 672c0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224zM708.124 541.334c-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334z" />
|
||||
<glyph unicode="snowy2" glyph-name="snowy2" d="M652.084 328.624l-36 20.75c1.084 6.25 1.916 12.624 1.916 19.25 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.754 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292s0.75-13 1.918-19.246l-35.916-20.752c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 333.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c23.624 0 46.668 4.416 68.876 11.668 2.124 10.164 5.458 20.082 10.75 29.29 7.876 13.708 19.124 24.624 32 33.004-6.624 6.458-13.876 12.208-19.75 19.376-26-18.338-57.626-29.338-91.876-29.338-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334-5.876-7.166-13.208-12.918-19.792-19.376 12.918-8.414 24.25-19.376 32.084-33.124 5.416-9.292 8.708-19.168 10.832-29.166 22.128-7.252 45.128-11.668 68.752-11.668 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="snowy" glyph-name="snowy" d="M652.084 136.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 141.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="snowflake" glyph-name="snowflake" d="M765.744 439.5l-65.25 37.668c2.084 11.332 3.5 22.916 3.5 34.832 0 11.958-1.416 23.584-3.584 34.916l65.25 37.708c30.666 17.75 41.084 56.876 23.458 87.376-17.708 30.624-56.75 41.124-87.376 23.5l-65.876-38.042c-17.624 15-37.708 26.834-59.876 34.708v75.834c0 35.334-28.624 64-64 64-35.332 0-64-28.666-64-64v-75.792c-22.166-7.876-42.25-19.71-59.874-34.708l-65.752 37.958c-30.624 17.666-69.792 7.208-87.498-23.416-17.626-30.584-7.124-69.708 23.498-87.376l65.126-37.626c-2.124-11.376-3.502-23.042-3.502-35.042 0-11.916 1.376-23.542 3.502-34.876l-65.168-37.624c-30.668-17.668-41.168-56.876-23.458-87.5 17.622-30.5 56.79-41 87.458-23.376l65.666 37.958c17.626-15 37.75-26.916 60-34.834v-75.746c0-35.376 28.668-64 64-64 35.376 0 64 28.624 64 64v75.834c22.25 7.916 42.376 19.75 59.916 34.79l65.834-37.998c30.624-17.624 69.752-7.124 87.376 23.376 17.714 30.622 7.256 69.748-23.37 87.498zM447.994 512c0 35.334 28.624 64 64 64 35.334 0 64-28.666 64-64 0-35.332-28.666-64-64-64-35.374 0-64 28.668-64 64z" />
|
||||
<glyph unicode="rainy4" glyph-name="rainy4" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM450 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM192 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="rainy3" glyph-name="rainy3" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM448 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="rainy2" glyph-name="rainy2" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160zM450 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM192 256c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="rainy" glyph-name="rainy" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 448c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160zM448 128c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="none" glyph-name="none" d="M318.188 466.708h-2.084l-67.042 102.376-81.876 120.874h-63.5v-352.79h70.124v222.208h3.042l58.208-89.084 89.376-133.124h63.876v352.79h-70.124v-223.25zM412.938 315.668h51.668l129.582 392.664h-52.25l-129-392.664zM797.438 689.958h-71.666l-123.958-352.79h74.75l23.042 72.75h122.918l21.498-72.75h76.292l-122.876 352.79zM718.562 468.75l14.292 46.584 27.208 91.664h2l27.708-93.208 13.792-45.042h-85z" />
|
||||
<glyph unicode="moon2" glyph-name="moon2" d="M496.164 496.136c-63.040 63.084-79.958 154.21-52.040 233.084-30.5-10.79-59.336-27.666-83.708-52.040-87.502-87.5-87.502-229.334 0-316.79 87.458-87.46 229.25-87.504 316.748 0 24.458 24.372 41.292 53.208 52.042 83.708-78.83-27.918-169.998-11-233.042 52.038z" />
|
||||
<glyph unicode="moon" glyph-name="moon" d="M699.704 337.7c-99.752-99.832-262.166-99.832-362 0-99.832 99.834-99.832 262.25 0 362.042 26.418 26.374 58.624 46.5 95.664 59.624 11.668 4.084 24.586 1.124 33.25-7.584 8.752-8.75 11.71-21.666 7.586-33.25-25.084-70.75-8-147.332 44.498-199.834 52.418-52.456 129.002-69.5 199.834-44.5 11.584 4.124 24.542 1.166 33.25-7.584 8.752-8.666 11.668-21.624 7.542-33.25-13.042-37.040-33.208-69.246-59.624-95.664zM382.954 654.492c-74.876-74.876-74.876-196.708 0-271.542 80-80.042 216.25-72.834 286 16.334-71.918-4.5-142.75 21.458-195.5 74.168-52.75 52.708-78.666 123.542-74.168 195.458-5.748-4.502-11.208-9.294-16.332-14.418z" />
|
||||
<glyph unicode="lines" glyph-name="lines" d="M224 704h576c17.666 0 32 14.334 32 32s-14.334 32-32 32h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32zM800 640h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32zM800 512h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32zM800 384h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="lightning5" glyph-name="lightning5" d="M1024 754.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 36.708-32 80.208-53.876 126.414-66.416l-45.832-30.584 64-64-64-128 192 128-64 64 9.624 19.166c73.5 2.25 143.5 29.458 198.958 77.834 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.164 31.75 47.332 73.624 47.332 120z" />
|
||||
<glyph unicode="lightning4" glyph-name="lightning4" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 43.082-37.542 94.832-62.582 150.208-73.042l-69.626-69.624 64-64-64-192 192 192-64 64 22 65.998c68.916 4.876 134.25 31.086 186.582 76.668 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="lightning3" glyph-name="lightning3" d="M384 256l64-64-64-192 192 192-64 64 64 128-192-128zM1024 754.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 2.208-1.918 4.832-3.25 7.082-5.124l56.624 37.75c-18.876 13.376-36.5 28.25-51.25 46-26-18.292-57.624-29.292-91.876-29.292-88.376 0-160 71.582-160 160 0 88.334 71.624 160 160 160 21.624 0 42.124-4.418 60.876-12.166 1.124 2.166 2.5 4 3.624 6.084 11.25 20.542 25.124 39.334 41.332 56.084 46.168 47.792 110.334 78 182.168 78 99.418 0 184.668-57.334 227.082-140.166 11.292 4.666 23.336 7.666 35.75 9.666l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.834 42.042-26.75 57.292-46.416 21-27.042 34.084-60.668 34.084-97.584 0-88.418-71.624-160-160-160-34.25 0-65.832 11-91.876 29.292-28-33.75-64.876-59.124-106.292-75.124l-11.958-23.876 36.5-36.5c34.124 13.292 66.042 32.376 94.208 56.876 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.166 31.746 47.334 73.62 47.334 119.996zM931.124 679.084c-36.958 26.876-82 43.25-131.124 43.25-10.624 0-21.124-0.75-31.584-2.25-59.748 81.374-154.040 130.25-256.416 130.25-68.25 0-132.624-22.124-185.876-60.708 14.958 45.706 57.458 78.956 108.124 78.956 15.5 0 30.124-3.124 43.5-8.666 30.376 59.168 91.252 100.084 162.252 100.084s131.916-40.916 162.168-100.084c13.458 5.542 28.166 8.666 43.498 8.666 63.168 0 114.334-51.166 114.334-114.248 0-29-11.124-55.126-28.876-75.25z" />
|
||||
<glyph unicode="lightning2" glyph-name="lightning2" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 24.582-21.416 52.5-37.916 81.832-50.832l49.832 49.748c-46.916 15.252-88.332 42.542-119.208 79.752-25.998-18.334-57.624-29.334-91.874-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334-20.75-25.042-46.624-45.334-75.25-61.168l-26.874-80.666c41.75 13.124 81 33.876 114.582 63.166 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM384 320l64-64-64-192 192 192-64 64 64 192-192-192z" />
|
||||
<glyph unicode="lightning" glyph-name="lightning" d="M800 896c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 43.082-37.542 94.832-62.582 150.208-73.042l-69.626-69.624 64-64-64-192 192 192-64 64 22 65.998c68.916 4.876 134.25 31.086 186.582 76.668 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 512c-34.25 0-65.832 11-91.876 29.334-37.876-45.666-91.124-77.25-151.75-88.208l-44.374-5.126c-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="fahrenheit" glyph-name="Fahrenheit" d="M417.062 669.458c-7.208 6.792-15.582 12.168-25.082 16.124-9.624 3.876-19.876 5.876-30.75 5.876-10.918 0-21.168-2-30.75-5.876-9.5-3.958-17.876-9.334-25.084-16.124-7.166-6.832-12.792-14.832-16.918-24.082-4.084-9.21-6.124-18.958-6.124-29.168 0-10.25 2.040-20 6.124-29.208 4.126-9.208 9.752-17.25 16.918-24.042 7.208-6.832 15.584-12.25 25.084-16.124 9.582-3.958 19.832-5.916 30.75-5.916 10.876 0 21.124 1.958 30.75 5.916 9.5 3.876 17.876 9.292 25.082 16.124 7.168 6.792 12.792 14.834 16.832 24.042 4.084 9.208 6.21 18.958 6.21 29.208 0 10.208-2.126 19.958-6.21 29.168-4.040 9.25-9.664 17.25-16.832 24.082zM386.354 592.126c-6.876-6.834-15.25-10.252-25.124-10.252s-18.25 3.418-25.124 10.252c-6.792 6.832-10.25 14.832-10.25 24.082 0 9.5 3.458 17.666 10.25 24.292 6.876 6.666 15.25 9.958 25.124 9.958s18.25-3.292 25.124-9.958c6.748-6.624 10.208-14.792 10.208-24.292 0-9.25-3.46-17.25-10.208-24.082zM741.644 622.334v63h-243.164v-352.792h70.126v143.876h147.958v62.958h-147.958v82.958h173.038z" />
|
||||
<glyph unicode="compass" glyph-name="compass" d="M512 1024c-282.792 0-512-229.208-512-512 0-282.75 229.208-512 512-512 282.75 0 512 229.25 512 512 0 282.792-229.25 512-512 512zM512 128c-211.75 0-384 172.25-384 384s172.25 384 384 384 384-172.25 384-384-172.25-384-384-384zM320 320l256 128 128 256-256-128-128-256z" />
|
||||
<glyph unicode="cloudy4" glyph-name="cloudy4" d="M976.668 529.166c29.248-37.832 47.332-84.624 47.332-136 0-123.498-100.5-224-224-224-27.376 0-54.168 5-79.418 14.666-57.916-50.498-131.498-78.666-208.582-78.666-77 0-150.668 28.168-208.582 78.666-25.25-9.666-52.042-14.666-79.418-14.666-123.5 0-224 100.502-224 224 0 123.5 100.5 224 224 224 10.624 0 21.124-0.75 31.584-2.25 1.042 1.458 2.332 2.75 3.416 4.166-1.624 9.876-3 19.792-3 30.082 0 98.334 80 178.292 178.25 178.292 4.832 0 9.624-0.208 14.376-0.584 46.25 57.708 116 91.958 191.376 91.958 75.418 0 145.124-34.25 191.376-91.958 4.75 0.376 9.5 0.584 14.292 0.584 98.33 0.002 178.33-79.956 178.33-178.29 0-46.332-18.168-88.208-47.332-120z" />
|
||||
<glyph unicode="cloudy3" glyph-name="cloudy3" d="M416 896c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM664.876 811.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM32 576h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM704 608c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM167.082 811.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM800 512c-10.624 0-21.124-0.75-31.584-2.25-33.542 45.75-78.248 80.666-128.916 103-2.582 121.25-101.624 219.25-223.5 219.25-123.5 0-224-100.5-224-224 0-34.876 8.668-67.5 23-96.876-119.25-4.874-215-102.748-215-223.124 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM512 640c-91.876 0-177-39.624-236.75-106.5-11.874 22.334-19.25 47.416-19.25 74.5 0 88.376 71.624 160 160 160 79.624 0 145.124-58.334 157.416-134.5-20.040 4-40.498 6.5-61.416 6.5z" />
|
||||
<glyph unicode="cloudy2" glyph-name="cloudy2" d="M1024 543.998c0 98.334-80 178.292-178.334 178.292-4.792 0-9.542-0.208-14.292-0.582-46.25 57.708-115.958 91.956-191.376 91.956-75.376 0-145.124-34.248-191.376-91.958-4.75 0.376-9.542 0.582-14.376 0.582-98.246 0.002-178.246-79.956-178.246-178.29 0-10.292 1.376-20.208 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.498-224-223.998 0-123.502 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.376-18.084 98.166-47.332 135.998 29.164 31.792 47.332 73.666 47.332 120zM800 128c-34.25 0-65.832 10.998-91.876 29.332-46.958-56.582-116.876-93.332-196.124-93.332-79.25 0-149.168 36.75-196.124 93.332-26-18.334-57.624-29.332-91.876-29.332-88.376 0-160 71.624-160 160s71.624 159.998 160 159.998c21.624 0 42.124-4.376 60.876-12.124 1.124 2.124 2.5 4 3.624 6.042 11.25 20.542 25.124 39.376 41.332 56.084 46.168 47.832 110.334 78 182.168 78 99.418 0 184.668-57.332 227.082-140.124 11.292 4.624 23.336 7.626 35.75 9.624l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.832 42.042-26.748 57.292-46.376 21-27.042 34.084-60.708 34.084-97.624 0-88.376-71.624-160-160-160zM931.124 468.75c-36.958 26.916-82 43.248-131.124 43.248-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.042 130.25-256.416 130.25-68.25 0-132.624-22.084-185.876-60.668 14.958 45.708 57.458 78.958 108.124 78.958 15.5 0 30.124-3.124 43.5-8.664 30.376 59.124 91.25 100.040 162.25 100.040s131.916-40.914 162.168-100.040c13.458 5.54 28.166 8.664 43.498 8.664 63.168 0 114.334-51.166 114.334-114.292 0.002-28.956-11.122-55.080-28.874-75.246z" />
|
||||
<glyph unicode="cloudy" glyph-name="cloudy" d="M416 896c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM664.876 811.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM32 576h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM704 608c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM167.082 811.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM800 512c-10.624 0-21.124-0.75-31.584-2.25-33.542 45.75-78.248 80.666-128.916 103-2.582 121.25-101.624 219.25-223.5 219.25-123.5 0-224-100.5-224-224 0-34.876 8.668-67.5 23-96.876-119.25-4.874-215-102.748-215-223.124 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM416 768c79.624 0 145.124-58.334 157.416-134.5-20.042 4-40.498 6.5-61.416 6.5-91.876 0-177-39.624-236.75-106.5-11.874 22.334-19.25 47.416-19.25 74.5 0 88.376 71.624 160 160 160zM800 128c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c15.5 0 30.124-2.916 44.25-7.082 5.624-1.584 11.334-2.834 16.624-5.042 8.75 17.124 19.75 32.792 31.958 47.5 46.752 56.248 116.292 92.624 195.168 92.624 20.25 0 39.668-2.916 58.5-7.418 21.124-4.998 41.084-12.582 59.668-22.582 46.582-24.75 84.832-63.084 108.914-110.126 18.794 7.75 39.336 12.126 60.918 12.126 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="cloud5" glyph-name="cloud5" d="M800 704c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="cloud4" glyph-name="cloud4" d="M870.124 499.668c9.75 7.25 19.624 14.374 28.458 23.208 26.416 26.458 46.542 58.666 59.584 95.708 4.166 11.584 1.208 24.584-7.544 33.25-8.708 8.75-21.624 11.708-33.246 7.584-70.792-25-147.376-8-199.792 44.5-52.498 52.5-69.582 129.042-44.498 199.792 4.084 11.624 1.166 24.542-7.584 33.292-8.666 8.666-21.624 11.666-33.25 7.582-37.084-13.166-69.25-33.25-95.668-59.666-67.082-67-87.958-162-64.958-247.584-86.5-11.042-164.25-57-216.042-127.584-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.498-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5.002 79.418 14.668 57.912-50.5 131.58-78.668 208.58-78.668 77.084 0 150.666 28.168 208.582 78.668 25.25-9.666 52.042-14.668 79.418-14.668 123.5 0 224 100.5 224 224 0.002 98.876-64.832 182.042-153.874 211.668zM581.832 839.666c5.084 5.166 10.542 9.958 16.292 14.458-4.5-71.958 21.458-142.75 74.208-195.458 52.752-52.75 123.542-78.666 195.502-74.208-27.584-35.168-65.584-57.042-106.252-66.376-54.75 69.5-135.208 113.248-223.916 120.374-24.542 67.918-10.166 146.878 44.166 201.21z" />
|
||||
<glyph unicode="cloud3" glyph-name="cloud3" d="M1024 754.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 36.708-32 80.208-53.876 126.414-66.416l-45.832-30.584 64-64-64-128 192 128-64 64 9.624 19.166c73.5 2.25 143.5 29.458 198.958 77.834 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.164 31.75 47.332 73.624 47.332 120zM800 338.334c-34.25 0-65.832 11-91.876 29.292-38-45.792-91.5-77.458-152.458-88.25l-47.542-4.624c-77.624 1.248-146.124 37.248-192.248 92.872-26-18.292-57.624-29.292-91.876-29.292-88.376 0-160 71.582-160 160 0 88.334 71.624 160 160 160 21.624 0 42.124-4.418 60.876-12.166 1.124 2.166 2.5 4 3.624 6.084 11.25 20.542 25.124 39.334 41.332 56.084 46.168 47.792 110.334 78 182.168 78 99.418 0 184.668-57.334 227.082-140.166 11.292 4.666 23.336 7.666 35.75 9.666l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.834 42.042-26.75 57.292-46.416 21-27.042 34.084-60.668 34.084-97.584 0-88.418-71.624-160-160-160zM931.124 679.084c-36.958 26.876-82 43.25-131.124 43.25-10.624 0-21.124-0.75-31.584-2.25-59.748 81.374-154.040 130.25-256.416 130.25-68.25 0-132.624-22.124-185.876-60.708 14.958 45.706 57.458 78.956 108.124 78.956 15.5 0 30.124-3.124 43.5-8.666 30.376 59.168 91.252 100.084 162.252 100.084s131.916-40.916 162.168-100.084c13.458 5.542 28.166 8.666 43.498 8.666 63.168 0 114.334-51.166 114.334-114.248 0-29-11.124-55.126-28.876-75.25z" />
|
||||
<glyph unicode="cloud2" glyph-name="cloud2" d="M800 704c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 320c-34.25 0-65.832 11-91.876 29.334-46.956-56.582-116.876-93.334-196.124-93.334-79.25 0-149.168 36.752-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="cloud" glyph-name="cloud" d="M870.124 499.668c9.75 7.25 19.624 14.376 28.458 23.208 26.416 26.458 46.542 58.666 59.584 95.708 4.166 11.584 1.208 24.584-7.544 33.25-8.708 8.75-21.624 11.708-33.246 7.584-70.792-25-147.376-8-199.792 44.5-52.5 52.502-69.584 129.042-44.5 199.792 4.084 11.626 1.166 24.542-7.584 33.292-8.666 8.666-21.624 11.668-33.25 7.582-37.084-13.164-69.25-33.246-95.668-59.664-67.082-67-87.958-162-64.958-247.584-86.5-11.042-164.25-57-216.042-127.586-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224.002 0-123.498 100.5-223.998 224-223.998 27.376 0 54.168 5 79.418 14.668 57.914-50.5 131.582-78.668 208.582-78.668 77.084 0 150.666 28.168 208.582 78.668 25.25-9.668 52.042-14.668 79.418-14.668 123.5 0 224 100.5 224 223.998 0.002 98.878-64.832 182.044-153.874 211.67zM581.832 839.668c5.084 5.166 10.542 9.958 16.292 14.458-4.5-71.958 21.458-142.75 74.208-195.458 52.752-52.75 123.542-78.666 195.502-74.208-27.584-35.168-65.584-57.042-106.252-66.376-54.75 69.5-135.208 113.25-223.916 120.374-24.542 67.918-10.166 146.876 44.166 201.21zM800 128c-34.25 0-65.832 11-91.876 29.334-46.958-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.624-29.334-91.876-29.334-88.376 0-160 71.624-160 159.998 0 88.376 71.624 160 160 160 21.624 0 42.124-4.376 60.876-12.124 40.376 78.71 119.5 133.792 212.624 139.086 4.876 0.29 9.624 1.042 14.5 1.042 25.832 0 50.624-4.042 74-11.166 31.582-9.668 60.376-25.416 85.376-45.708 23.876-19.376 43.876-43.124 59.624-69.792 2.666-4.5 5.668-8.75 8.082-13.458 18.792 7.75 39.336 12.124 60.918 12.124 88.376 0 160-71.624 160-160s-71.624-160.002-160-160.002z" />
|
||||
<glyph unicode="celsius" glyph-name="Celsius" d="M418.334 671.25c-7.208 6.792-15.584 12.166-25.084 16.124-9.624 3.876-19.876 5.876-30.75 5.876-10.916 0-21.168-2-30.75-5.876-9.5-3.958-17.876-9.334-25.082-16.124-7.168-6.834-12.792-14.834-16.918-24.084-4.084-9.21-6.124-18.958-6.124-29.166 0-10.25 2.042-20 6.124-29.21 4.124-9.208 9.75-17.25 16.918-24.040 7.208-6.834 15.582-12.25 25.082-16.126 9.582-3.958 19.834-5.916 30.75-5.916 10.876 0 21.124 1.958 30.75 5.916 9.5 3.876 17.876 9.292 25.084 16.126 7.166 6.79 12.792 14.834 16.832 24.040 4.084 9.21 6.208 18.958 6.208 29.21 0 10.208-2.124 19.958-6.208 29.166-4.042 9.252-9.666 17.252-16.832 24.084zM387.624 593.918c-6.876-6.834-15.25-10.25-25.124-10.25s-18.25 3.418-25.124 10.25c-6.792 6.834-10.25 14.834-10.25 24.084 0 9.5 3.458 17.666 10.25 24.29 6.876 6.666 15.25 9.958 25.124 9.958s18.25-3.292 25.124-9.958c6.75-6.624 10.208-14.79 10.208-24.29 0-9.252-3.456-17.252-10.208-24.084zM670.5 400.418c-12.124-3.46-24.166-5.166-36.124-5.166-7.876 0-15.624 1.208-23.292 3.58-7.708 2.418-14.708 6.168-20.998 11.292-6.334 5.126-11.46 11.668-15.334 19.708-3.918 8-5.916 17.834-5.916 29.418v102.916c0 11.584 1.998 21.5 5.916 29.708 3.874 8.166 8.918 14.834 15.082 19.958 6.168 5.124 13.084 8.792 21 11 7.834 2.21 15.668 3.334 23.542 3.334 11.958 0 24.248-1.75 36.874-5.376 12.626-3.582 24.376-9.998 35.336-19.208l33.792 54.292c-13.708 11.916-29.958 20.624-48.958 26.124-18.918 5.416-38.584 8.166-59.086 8.166-16.708 0-33.166-2.416-49.166-7.168-16.042-4.792-30.292-11.958-42.75-21.5-12.416-9.584-22.542-21.416-30.166-35.582-7.75-14.168-11.582-30.666-11.582-49.416v-132.084c0-19.124 3.958-35.75 11.832-49.918 7.834-14.168 18.082-25.958 30.668-35.332 12.664-9.416 26.958-16.458 42.998-21.25 16.084-4.75 32.458-7.168 49.208-7.168 20.792 0 40.542 3.084 59.376 9.208 18.75 6.166 34.624 14.708 47.624 25.584l-33.292 54.292c-12.252-9.58-24.5-16.038-36.584-19.412z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 107 KiB |
|
|
@ -0,0 +1,109 @@
|
|||
/* A polyfill for browsers that don't support ligatures. */
|
||||
/* The script tag referring to this file must be placed before the ending body tag. */
|
||||
|
||||
/* To provide support for elements dynamically added, this script adds
|
||||
method 'icomoonLiga' to the window object. You can pass element references to this method.
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
function supportsProperty(p) {
|
||||
var prefixes = ['Webkit', 'Moz', 'O', 'ms'],
|
||||
i,
|
||||
div = document.createElement('div'),
|
||||
ret = p in div.style;
|
||||
if (!ret) {
|
||||
p = p.charAt(0).toUpperCase() + p.substr(1);
|
||||
for (i = 0; i < prefixes.length; i += 1) {
|
||||
ret = prefixes[i] + p in div.style;
|
||||
if (ret) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
var icons;
|
||||
if (!supportsProperty('fontFeatureSettings')) {
|
||||
icons = {
|
||||
'sunrise': '',
|
||||
'sun': '',
|
||||
'moon': '',
|
||||
'sun2': '',
|
||||
'windy': '',
|
||||
'wind': '',
|
||||
'snowflake': '',
|
||||
'cloudy': '',
|
||||
'cloud': '',
|
||||
'weather': '',
|
||||
'weather2': '',
|
||||
'weather3': '',
|
||||
'lines': '',
|
||||
'cloud2': '',
|
||||
'lightning': '',
|
||||
'lightning2': '',
|
||||
'rainy': '',
|
||||
'rainy2': '',
|
||||
'windy2': '',
|
||||
'windy3': '',
|
||||
'snowy': '',
|
||||
'snowy2': '',
|
||||
'snowy3': '',
|
||||
'weather4': '',
|
||||
'cloudy2': '',
|
||||
'cloud3': '',
|
||||
'lightning3': '',
|
||||
'sun3': '',
|
||||
'moon2': '',
|
||||
'cloudy3': '',
|
||||
'cloud4': '',
|
||||
'cloud5': '',
|
||||
'lightning4': '',
|
||||
'rainy3': '',
|
||||
'rainy4': '',
|
||||
'windy4': '',
|
||||
'windy5': '',
|
||||
'snowy4': '',
|
||||
'snowy5': '',
|
||||
'weather5': '',
|
||||
'cloudy4': '',
|
||||
'lightning5': '',
|
||||
'thermometer': '',
|
||||
'compass': '',
|
||||
'none': '',
|
||||
'celsius': '',
|
||||
'fahrenheit': '',
|
||||
'0': 0
|
||||
};
|
||||
delete icons['0'];
|
||||
window.icomoonLiga = function (els) {
|
||||
var classes,
|
||||
el,
|
||||
i,
|
||||
innerHTML,
|
||||
key;
|
||||
els = els || document.getElementsByTagName('*');
|
||||
if (!els.length) {
|
||||
els = [els];
|
||||
}
|
||||
for (i = 0; ; i += 1) {
|
||||
el = els[i];
|
||||
if (!el) {
|
||||
break;
|
||||
}
|
||||
classes = el.className;
|
||||
if (/icomoon-liga/.test(classes)) {
|
||||
innerHTML = el.innerHTML;
|
||||
if (innerHTML && innerHTML.length > 1) {
|
||||
for (key in icons) {
|
||||
if (icons.hasOwnProperty(key)) {
|
||||
innerHTML = innerHTML.replace(new RegExp(key, 'g'), icons[key]);
|
||||
}
|
||||
}
|
||||
el.innerHTML = innerHTML;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
window.icomoonLiga();
|
||||
}
|
||||
}());
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
@font-face {
|
||||
font-family: 'meteocons';
|
||||
src:
|
||||
url('./fonts/meteocons.ttf?kx31oc') format('truetype'),
|
||||
url('./fonts/meteocons.woff?kx31oc') format('woff'),
|
||||
url('./fonts/meteocons.svg?kx31oc#meteocons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.meteocons {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'meteocons' !important;
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
|
||||
/* Enable Ligatures ================ */
|
||||
letter-spacing: 0;
|
||||
-webkit-font-feature-settings: "liga";
|
||||
-moz-font-feature-settings: "liga=1";
|
||||
-moz-font-feature-settings: "liga";
|
||||
-ms-font-feature-settings: "liga" 1;
|
||||
font-feature-settings: "liga";
|
||||
-webkit-font-variant-ligatures: discretionary-ligatures;
|
||||
font-variant-ligatures: discretionary-ligatures;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
After Width: | Height: | Size: 99 KiB |
|
|
@ -0,0 +1,707 @@
|
|||
<!-- @formatter:off -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<svg id="academic-cap" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path d="M12 14l9-5-9-5-9 5 9 5z"/>
|
||||
<path d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 14l9-5-9-5-9 5 9 5zm0 0l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14zm-4 6v-7.5l4-2.222"/>
|
||||
</svg>
|
||||
<svg id="adjustments" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 13l-3 3m0 0l-3-3m3 3V8m0 13a9 9 0 110-18 9 9 0 010 18z"/>
|
||||
</svg>
|
||||
<svg id="annotation" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-left" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 15l-3-3m0 0l3-3m-3 3h8M3 12a9 9 0 1118 0 9 9 0 01-18 0z"/>
|
||||
</svg>
|
||||
<svg id="archive" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 8h14M5 8a2 2 0 110-4h14a2 2 0 110 4M5 8v10a2 2 0 002 2h10a2 2 0 002-2V8m-9 4h4"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-right" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 11l3-3m0 0l3 3m-3-3v8m0-13a9 9 0 110 18 9 9 0 010-18z"/>
|
||||
</svg>
|
||||
<svg id="arrow-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"/>
|
||||
</svg>
|
||||
<svg id="arrow-left" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 17l-4 4m0 0l-4-4m4 4V3"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-left" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-right" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7l4-4m0 0l4 4m-4-4v18"/>
|
||||
</svg>
|
||||
<svg id="arrow-right" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 13l-5 5m0 0l-5-5m5 5V6"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-right" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-left" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 17l-5-5m0 0l5-5m-5 5h12"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 11l5-5m0 0l5 5m-5-5v12"/>
|
||||
</svg>
|
||||
<svg id="arrow-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 10l7-7m0 0l7 7m-7-7v18"/>
|
||||
</svg>
|
||||
<svg id="arrows-expand" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5l-5-5m5 5v-4m0 4h-4"/>
|
||||
</svg>
|
||||
<svg id="at-symbol" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 12a4 4 0 10-8 0 4 4 0 008 0zm0 0v1.5a2.5 2.5 0 005 0V12a9 9 0 10-9 9m4.5-1.206a8.959 8.959 0 01-4.5 1.207"/>
|
||||
</svg>
|
||||
<svg id="backspace" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2M3 12l6.414 6.414a2 2 0 001.414.586H19a2 2 0 002-2V7a2 2 0 00-2-2h-8.172a2 2 0 00-1.414.586L3 12z"/>
|
||||
</svg>
|
||||
<svg id="badge-check" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z"/>
|
||||
</svg>
|
||||
<svg id="ban" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636"/>
|
||||
</svg>
|
||||
<svg id="beaker" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z"/>
|
||||
</svg>
|
||||
<svg id="bell" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9"/>
|
||||
</svg>
|
||||
<svg id="book-open" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"/>
|
||||
</svg>
|
||||
<svg id="bookmark-alt" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 4v12l-4-2-4 2V4M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="bookmark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"/>
|
||||
</svg>
|
||||
<svg id="briefcase" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="cake" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 15.546c-.523 0-1.046.151-1.5.454a2.704 2.704 0 01-3 0 2.704 2.704 0 00-3 0 2.704 2.704 0 01-3 0 2.704 2.704 0 00-3 0 2.704 2.704 0 01-3 0 2.701 2.701 0 00-1.5-.454M9 6v2m3-2v2m3-2v2M9 3h.01M12 3h.01M15 3h.01M21 21v-7a2 2 0 00-2-2H5a2 2 0 00-2 2v7h18zm-3-9v-2a2 2 0 00-2-2H8a2 2 0 00-2 2v2h12z"/>
|
||||
</svg>
|
||||
<svg id="calculator" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="calendar" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="camera" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 13a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
</svg>
|
||||
<svg id="cash" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 9V7a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2m2 4h10a2 2 0 002-2v-6a2 2 0 00-2-2H9a2 2 0 00-2 2v6a2 2 0 002 2zm7-5a2 2 0 11-4 0 2 2 0 014 0z"/>
|
||||
</svg>
|
||||
<svg id="chart-bar" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"/>
|
||||
</svg>
|
||||
<svg id="chart-pie" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"/>
|
||||
</svg>
|
||||
<svg id="chart-square-bar" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 8v8m-4-5v5m-4-2v2m-2 4h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="chat-alt-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4l-4-4H9a1.994 1.994 0 01-1.414-.586m0 0L11 14h4a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2v4l.586-.586z"/>
|
||||
</svg>
|
||||
<svg id="chat-alt" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z"/>
|
||||
</svg>
|
||||
<svg id="chat" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
|
||||
</svg>
|
||||
<svg id="check-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="check" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 13l-7 7-7-7m14-8l-7 7-7-7"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-right" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 5l7 7-7 7M5 5l7 7-7 7"/>
|
||||
</svg>
|
||||
<svg id="chevron-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 11l7-7 7 7M5 19l7-7 7 7"/>
|
||||
</svg>
|
||||
<svg id="chevron-left" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"/>
|
||||
</svg>
|
||||
<svg id="chevron-right" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
|
||||
</svg>
|
||||
<svg id="chip" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z"/>
|
||||
</svg>
|
||||
<svg id="chevron-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 15l7-7 7 7"/>
|
||||
</svg>
|
||||
<svg id="clipboard-check" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"/>
|
||||
</svg>
|
||||
<svg id="clipboard-copy" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3"/>
|
||||
</svg>
|
||||
<svg id="clipboard-list" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"/>
|
||||
</svg>
|
||||
<svg id="clipboard" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-left" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 19l-7-7 7-7m8 14l-7-7 7-7"/>
|
||||
</svg>
|
||||
<svg id="clock" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="cloud-upload" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12"/>
|
||||
</svg>
|
||||
<svg id="cloud-download" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10"/>
|
||||
</svg>
|
||||
<svg id="cloud" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z"/>
|
||||
</svg>
|
||||
<svg id="code" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"/>
|
||||
</svg>
|
||||
<svg id="cog" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
</svg>
|
||||
<svg id="collection" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"/>
|
||||
</svg>
|
||||
<svg id="color-swatch" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01"/>
|
||||
</svg>
|
||||
<svg id="credit-card" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"/>
|
||||
</svg>
|
||||
<svg id="cube-transparent" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 10l-2 1m0 0l-2-1m2 1v2.5M20 7l-2 1m2-1l-2-1m2 1v2.5M14 4l-2-1-2 1M4 7l2-1M4 7l2 1M4 7v2.5M12 21l-2-1m2 1l2-1m-2 1v-2.5M6 18l-2-1v-2.5M18 18l2-1v-2.5"/>
|
||||
</svg>
|
||||
<svg id="cube" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4"/>
|
||||
</svg>
|
||||
<svg id="currency-bangladeshi" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 11V9a2 2 0 00-2-2m2 4v4a2 2 0 104 0v-1m-4-3H9m2 0h4m6 1a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="currency-dollar" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="currency-euro" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.121 15.536c-1.171 1.952-3.07 1.952-4.242 0-1.172-1.953-1.172-5.119 0-7.072 1.171-1.952 3.07-1.952 4.242 0M8 10.5h4m-4 3h4m9-1.5a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="currency-pound" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 9a2 2 0 10-4 0v5a2 2 0 01-2 2h6m-6-4h4m8 0a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="currency-rupee" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 8h6m-5 0a3 3 0 110 6H9l3 3m-3-6h6m6 1a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="currency-yen" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 8l3 5m0 0l3-5m-3 5v4m-3-5h6m-6 3h6m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="cursor-click" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"/>
|
||||
</svg>
|
||||
<svg id="database" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4m0 5c0 2.21-3.582 4-8 4s-8-1.79-8-4"/>
|
||||
</svg>
|
||||
<svg id="desktop-computer" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="device-mobile" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="device-tablet" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="document-add" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 13h6m-3-3v6m5 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
|
||||
</svg>
|
||||
<svg id="document-download" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
|
||||
</svg>
|
||||
<svg id="document-duplicate" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7v8a2 2 0 002 2h6M8 7V5a2 2 0 012-2h4.586a1 1 0 01.707.293l4.414 4.414a1 1 0 01.293.707V15a2 2 0 01-2 2h-2M8 7H6a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2v-2"/>
|
||||
</svg>
|
||||
<svg id="document-remove" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 13h6m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
|
||||
</svg>
|
||||
<svg id="document-report" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
|
||||
</svg>
|
||||
<svg id="document-search" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 21h7a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v11m0 5l4.879-4.879m0 0a3 3 0 104.243-4.242 3 3 0 00-4.243 4.242z"/>
|
||||
</svg>
|
||||
<svg id="document-text" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
|
||||
</svg>
|
||||
<svg id="document" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="dots-circle-horizontal" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="dots-horizontal" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0z"/>
|
||||
</svg>
|
||||
<svg id="dots-vertical" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z"/>
|
||||
</svg>
|
||||
<svg id="download" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"/>
|
||||
</svg>
|
||||
<svg id="duplicate" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="emoji-happy" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="exclamation-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="emoji-sad" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="exclamation" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
|
||||
</svg>
|
||||
<svg id="external-link" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
|
||||
</svg>
|
||||
<svg id="eye-off" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.543 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21"/>
|
||||
</svg>
|
||||
<svg id="fast-forward" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11.933 12.8a1 1 0 000-1.6L6.6 7.2A1 1 0 005 8v8a1 1 0 001.6.8l5.333-4zM19.933 12.8a1 1 0 000-1.6l-5.333-4A1 1 0 0013 8v8a1 1 0 001.6.8l5.333-4z"/>
|
||||
</svg>
|
||||
<svg id="eye" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/>
|
||||
</svg>
|
||||
<svg id="film" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 4v16M17 4v16M3 8h4m10 0h4M3 12h18M3 16h4m10 0h4M4 20h16a1 1 0 001-1V5a1 1 0 00-1-1H4a1 1 0 00-1 1v14a1 1 0 001 1z"/>
|
||||
</svg>
|
||||
<svg id="filter" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.293A1 1 0 013 6.586V4z"/>
|
||||
</svg>
|
||||
<svg id="finger-print" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 11c0 3.517-1.009 6.799-2.753 9.571m-3.44-2.04l.054-.09A13.916 13.916 0 008 11a4 4 0 118 0c0 1.017-.07 2.019-.203 3m-2.118 6.844A21.88 21.88 0 0015.171 17m3.839 1.132c.645-2.266.99-4.659.99-7.132A8 8 0 008 4.07M3 15.364c.64-1.319 1-2.8 1-4.364 0-1.457.39-2.823 1.07-4"/>
|
||||
</svg>
|
||||
<svg id="flag" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 21v-4m0 0V5a2 2 0 012-2h6.5l1 1H21l-3 6 3 6h-8.5l-1-1H5a2 2 0 00-2 2zm9-13.5V9"/>
|
||||
</svg>
|
||||
<svg id="folder-add" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 13h6m-3-3v6m-9 1V7a2 2 0 012-2h6l2 2h6a2 2 0 012 2v8a2 2 0 01-2 2H5a2 2 0 01-2-2z"/>
|
||||
</svg>
|
||||
<svg id="fire" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 18.657A8 8 0 016.343 7.343S7 9 9 10c0-2 .5-5 2.986-7C14 5 16.09 5.777 17.656 7.343A7.975 7.975 0 0120 13a7.975 7.975 0 01-2.343 5.657z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.879 16.121A3 3 0 1012.015 11L11 14H9c0 .768.293 1.536.879 2.121z"/>
|
||||
</svg>
|
||||
<svg id="folder-download" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 10v6m0 0l-3-3m3 3l3-3M3 17V7a2 2 0 012-2h6l2 2h6a2 2 0 012 2v8a2 2 0 01-2 2H5a2 2 0 01-2-2z"/>
|
||||
</svg>
|
||||
<svg id="folder-open" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 19a2 2 0 01-2-2V7a2 2 0 012-2h4l2 2h4a2 2 0 012 2v1M5 19h14a2 2 0 002-2v-5a2 2 0 00-2-2H9a2 2 0 00-2 2v5a2 2 0 01-2 2z"/>
|
||||
</svg>
|
||||
<svg id="folder-remove" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 13h6M3 17V7a2 2 0 012-2h6l2 2h6a2 2 0 012 2v8a2 2 0 01-2 2H5a2 2 0 01-2-2z"/>
|
||||
</svg>
|
||||
<svg id="folder" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z"/>
|
||||
</svg>
|
||||
<svg id="gift" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v13m0-13V6a2 2 0 112 2h-2zm0 0V5.5A2.5 2.5 0 109.5 8H12zm-7 4h14M5 12a2 2 0 110-4h14a2 2 0 110 4M5 12v7a2 2 0 002 2h10a2 2 0 002-2v-7"/>
|
||||
</svg>
|
||||
<svg id="globe-alt" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/>
|
||||
</svg>
|
||||
<svg id="globe" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="hand" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 11.5V14m0-2.5v-6a1.5 1.5 0 113 0m-3 6a1.5 1.5 0 00-3 0v2a7.5 7.5 0 0015 0v-5a1.5 1.5 0 00-3 0m-6-3V11m0-5.5v-1a1.5 1.5 0 013 0v1m0 0V11m0-5.5a1.5 1.5 0 013 0v3m0 0V11"/>
|
||||
</svg>
|
||||
<svg id="hashtag" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 20l4-16m2 16l4-16M6 9h14M4 15h14"/>
|
||||
</svg>
|
||||
<svg id="heart" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"/>
|
||||
</svg>
|
||||
<svg id="home" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"/>
|
||||
</svg>
|
||||
<svg id="identification" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H5a2 2 0 00-2 2v9a2 2 0 002 2h14a2 2 0 002-2V8a2 2 0 00-2-2h-5m-4 0V5a2 2 0 114 0v1m-4 0a2 2 0 104 0m-5 8a2 2 0 100-4 2 2 0 000 4zm0 0c1.306 0 2.417.835 2.83 2M9 14a3.001 3.001 0 00-2.83 2M15 11h3m-3 4h2"/>
|
||||
</svg>
|
||||
<svg id="inbox-in" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-2m-4-1v8m0 0l3-3m-3 3L9 8m-5 5h2.586a1 1 0 01.707.293l2.414 2.414a1 1 0 00.707.293h3.172a1 1 0 00.707-.293l2.414-2.414a1 1 0 01.707-.293H20"/>
|
||||
</svg>
|
||||
<svg id="inbox" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4"/>
|
||||
</svg>
|
||||
<svg id="key" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 7a2 2 0 012 2m4 0a6 6 0 01-7.743 5.743L11 17H9v2H7v2H4a1 1 0 01-1-1v-2.586a1 1 0 01.293-.707l5.964-5.964A6 6 0 1121 9z"/>
|
||||
</svg>
|
||||
<svg id="information-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="library" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 14v3m4-3v3m4-3v3M3 21h18M3 10h18M3 7l9-4 9 4M4 10h16v11H4V10z"/>
|
||||
</svg>
|
||||
<svg id="light-bulb" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"/>
|
||||
</svg>
|
||||
<svg id="link" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"/>
|
||||
</svg>
|
||||
<svg id="location-marker" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
</svg>
|
||||
<svg id="lightning-bolt" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
||||
</svg>
|
||||
<svg id="lock-closed" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"/>
|
||||
</svg>
|
||||
<svg id="login" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1"/>
|
||||
</svg>
|
||||
<svg id="lock-open" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 11V7a4 4 0 118 0m-4 8v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="logout" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"/>
|
||||
</svg>
|
||||
<svg id="mail" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="map" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h8m-8 6h16"/>
|
||||
</svg>
|
||||
<svg id="mail-open" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 19v-8.93a2 2 0 01.89-1.664l7-4.666a2 2 0 012.22 0l7 4.666A2 2 0 0121 10.07V19M3 19a2 2 0 002 2h14a2 2 0 002-2M3 19l6.75-4.5M21 19l-6.75-4.5M3 10l6.75 4.5M21 10l-6.75 4.5m0 0l-1.14.76a2 2 0 01-2.22 0l-1.14-.76"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h7"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-3" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8h16M4 16h16"/>
|
||||
</svg>
|
||||
<svg id="menu" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
|
||||
</svg>
|
||||
<svg id="microphone" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11a7 7 0 01-7 7m0 0a7 7 0 01-7-7m7 7v4m0 0H8m4 0h4m-4-8a3 3 0 01-3-3V5a3 3 0 116 0v6a3 3 0 01-3 3z"/>
|
||||
</svg>
|
||||
<svg id="minus-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="minus-sm" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 12H6"/>
|
||||
</svg>
|
||||
<svg id="minus" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 12H4"/>
|
||||
</svg>
|
||||
<svg id="moon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"/>
|
||||
</svg>
|
||||
<svg id="music-note" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19V6l12-3v13M9 19c0 1.105-1.343 2-3 2s-3-.895-3-2 1.343-2 3-2 3 .895 3 2zm12-3c0 1.105-1.343 2-3 2s-3-.895-3-2 1.343-2 3-2 3 .895 3 2zM9 10l12-3"/>
|
||||
</svg>
|
||||
<svg id="newspaper" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z"/>
|
||||
</svg>
|
||||
<svg id="office-building" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"/>
|
||||
</svg>
|
||||
<svg id="paper-airplane" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8"/>
|
||||
</svg>
|
||||
<svg id="paper-clip" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13"/>
|
||||
</svg>
|
||||
<svg id="pause" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 9v6m4-6v6m7-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="pencil-alt" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"/>
|
||||
</svg>
|
||||
<svg id="phone-incoming" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 3l-6 6m0 0V4m0 5h5M5 3a2 2 0 00-2 2v1c0 8.284 6.716 15 15 15h1a2 2 0 002-2v-3.28a1 1 0 00-.684-.948l-4.493-1.498a1 1 0 00-1.21.502l-1.13 2.257a11.042 11.042 0 01-5.516-5.517l2.257-1.128a1 1 0 00.502-1.21L9.228 3.683A1 1 0 008.279 3H5z"/>
|
||||
</svg>
|
||||
<svg id="phone-missed-call" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 8l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2M5 3a2 2 0 00-2 2v1c0 8.284 6.716 15 15 15h1a2 2 0 002-2v-3.28a1 1 0 00-.684-.948l-4.493-1.498a1 1 0 00-1.21.502l-1.13 2.257a11.042 11.042 0 01-5.516-5.517l2.257-1.128a1 1 0 00.502-1.21L9.228 3.683A1 1 0 008.279 3H5z"/>
|
||||
</svg>
|
||||
<svg id="phone-outgoing" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 3h5m0 0v5m0-5l-6 6M5 3a2 2 0 00-2 2v1c0 8.284 6.716 15 15 15h1a2 2 0 002-2v-3.28a1 1 0 00-.684-.948l-4.493-1.498a1 1 0 00-1.21.502l-1.13 2.257a11.042 11.042 0 01-5.516-5.517l2.257-1.128a1 1 0 00.502-1.21L9.228 3.683A1 1 0 008.279 3H5z"/>
|
||||
</svg>
|
||||
<svg id="pencil" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z"/>
|
||||
</svg>
|
||||
<svg id="photograph" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="phone" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/>
|
||||
</svg>
|
||||
<svg id="plus-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="play" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="plus-sm" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
<svg id="plus" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6"/>
|
||||
</svg>
|
||||
<svg id="presentation-chart-bar" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 13v-1m4 1v-3m4 3V8M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"/>
|
||||
</svg>
|
||||
<svg id="presentation-chart-line" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"/>
|
||||
</svg>
|
||||
<svg id="printer" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z"/>
|
||||
</svg>
|
||||
<svg id="puzzle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z"/>
|
||||
</svg>
|
||||
<svg id="qrcode" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v1m6 11h2m-6 0h-2v4m0-11v3m0 0h.01M12 12h4.01M16 20h4M4 12h4m12 0h.01M5 8h2a1 1 0 001-1V5a1 1 0 00-1-1H5a1 1 0 00-1 1v2a1 1 0 001 1zm12 0h2a1 1 0 001-1V5a1 1 0 00-1-1h-2a1 1 0 00-1 1v2a1 1 0 001 1zM5 20h2a1 1 0 001-1v-2a1 1 0 00-1-1H5a1 1 0 00-1 1v2a1 1 0 001 1z"/>
|
||||
</svg>
|
||||
<svg id="question-mark-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="receipt-refund" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 15v-1a4 4 0 00-4-4H8m0 0l3 3m-3-3l3-3m9 14V5a2 2 0 00-2-2H6a2 2 0 00-2 2v16l4-2 4 2 4-2 4 2z"/>
|
||||
</svg>
|
||||
<svg id="receipt-tax" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 14l6-6m-5.5.5h.01m4.99 5h.01M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16l3.5-2 3.5 2 3.5-2 3.5 2zM10 8.5a.5.5 0 11-1 0 .5.5 0 011 0zm5 5a.5.5 0 11-1 0 .5.5 0 011 0z"/>
|
||||
</svg>
|
||||
<svg id="refresh" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/>
|
||||
</svg>
|
||||
<svg id="reply" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h10a8 8 0 018 8v2M3 10l6 6m-6-6l6-6"/>
|
||||
</svg>
|
||||
<svg id="rewind" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12.066 11.2a1 1 0 000 1.6l5.334 4A1 1 0 0019 16V8a1 1 0 00-1.6-.8l-5.333 4zM4.066 11.2a1 1 0 000 1.6l5.334 4A1 1 0 0011 16V8a1 1 0 00-1.6-.8l-5.334 4z"/>
|
||||
</svg>
|
||||
<svg id="rss" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 5c7.18 0 13 5.82 13 13M6 11a7 7 0 017 7m-6 0a1 1 0 11-2 0 1 1 0 012 0z"/>
|
||||
</svg>
|
||||
<svg id="save" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7H5a2 2 0 00-2 2v9a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-3m-1 4l-3 3m0 0l-3-3m3 3V4"/>
|
||||
</svg>
|
||||
<svg id="save-as" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 16v2a2 2 0 01-2 2H5a2 2 0 01-2-2v-7a2 2 0 012-2h2m3-4H9a2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-1m-1 4l-3 3m0 0l-3-3m3 3V3"/>
|
||||
</svg>
|
||||
<svg id="scale" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 6l3 1m0 0l-3 9a5.002 5.002 0 006.001 0M6 7l3 9M6 7l6-2m6 2l3-1m-3 1l-3 9a5.002 5.002 0 006.001 0M18 7l3 9m-3-9l-6-2m0-2v2m0 16V5m0 16H9m3 0h3"/>
|
||||
</svg>
|
||||
<svg id="scissors" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.121 14.121L19 19m-7-7l7-7m-7 7l-2.879 2.879M12 12L9.121 9.121m0 5.758a3 3 0 10-4.243 4.243 3 3 0 004.243-4.243zm0-5.758a3 3 0 10-4.243-4.243 3 3 0 004.243 4.243z"/>
|
||||
</svg>
|
||||
<svg id="search-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16l2.879-2.879m0 0a3 3 0 104.243-4.242 3 3 0 00-4.243 4.242zM21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="search" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
|
||||
</svg>
|
||||
<svg id="selector" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9l4-4 4 4m0 6l-4 4-4-4"/>
|
||||
</svg>
|
||||
<svg id="server" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01"/>
|
||||
</svg>
|
||||
<svg id="share" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.684 13.342C8.886 12.938 9 12.482 9 12c0-.482-.114-.938-.316-1.342m0 2.684a3 3 0 110-2.684m0 2.684l6.632 3.316m-6.632-6l6.632-3.316m0 0a3 3 0 105.367-2.684 3 3 0 00-5.367 2.684zm0 9.316a3 3 0 105.368 2.684 3 3 0 00-5.368-2.684z"/>
|
||||
</svg>
|
||||
<svg id="shield-check" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/>
|
||||
</svg>
|
||||
<svg id="shield-exclamation" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.618 5.984A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016zM12 9v2m0 4h.01"/>
|
||||
</svg>
|
||||
<svg id="shopping-bag" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z"/>
|
||||
</svg>
|
||||
<svg id="shopping-cart" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
|
||||
</svg>
|
||||
<svg id="sort-ascending" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12"/>
|
||||
</svg>
|
||||
<svg id="sort-descending" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4"/>
|
||||
</svg>
|
||||
<svg id="sparkles" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3v4M3 5h4M6 17v4m-2-2h4m5-16l2.286 6.857L21 12l-5.714 2.143L13 21l-2.286-6.857L5 12l5.714-2.143L13 3z"/>
|
||||
</svg>
|
||||
<svg id="speakerphone" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"/>
|
||||
</svg>
|
||||
<svg id="star" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z"/>
|
||||
</svg>
|
||||
<svg id="status-offline" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 5.636a9 9 0 010 12.728m0 0l-2.829-2.829m2.829 2.829L21 21M15.536 8.464a5 5 0 010 7.072m0 0l-2.829-2.829m-4.243 2.829a4.978 4.978 0 01-1.414-2.83m-1.414 5.658a9 9 0 01-2.167-9.238m7.824 2.167a1 1 0 111.414 1.414m-1.414-1.414L3 3m8.293 8.293l1.414 1.414"/>
|
||||
</svg>
|
||||
<svg id="status-online" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5.636 18.364a9 9 0 010-12.728m12.728 0a9 9 0 010 12.728m-9.9-2.829a5 5 0 010-7.07m7.072 0a5 5 0 010 7.07M13 12a1 1 0 11-2 0 1 1 0 012 0z"/>
|
||||
</svg>
|
||||
<svg id="stop" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 10a1 1 0 011-1h4a1 1 0 011 1v4a1 1 0 01-1 1h-4a1 1 0 01-1-1v-4z"/>
|
||||
</svg>
|
||||
<svg id="sun" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"/>
|
||||
</svg>
|
||||
<svg id="support" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z"/>
|
||||
</svg>
|
||||
<svg id="switch-horizontal" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4"/>
|
||||
</svg>
|
||||
<svg id="switch-vertical" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16V4m0 0L3 8m4-4l4 4m6 0v12m0 0l4-4m-4 4l-4-4"/>
|
||||
</svg>
|
||||
<svg id="table" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h18M3 14h18m-9-4v8m-7 0h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="tag" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z"/>
|
||||
</svg>
|
||||
<svg id="template" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"/>
|
||||
</svg>
|
||||
<svg id="terminal" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="thumb-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14H5.236a2 2 0 01-1.789-2.894l3.5-7A2 2 0 018.736 3h4.018a2 2 0 01.485.06l3.76.94m-7 10v5a2 2 0 002 2h.096c.5 0 .905-.405.905-.904 0-.715.211-1.413.608-2.008L17 13V4m-7 10h2m5-10h2a2 2 0 012 2v6a2 2 0 01-2 2h-2.5"/>
|
||||
</svg>
|
||||
<svg id="thumb-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 10h4.764a2 2 0 011.789 2.894l-3.5 7A2 2 0 0115.263 21h-4.017c-.163 0-.326-.02-.485-.06L7 20m7-10V5a2 2 0 00-2-2h-.095c-.5 0-.905.405-.905.905 0 .714-.211 1.412-.608 2.006L7 11v9m7-10h-2M7 20H5a2 2 0 01-2-2v-6a2 2 0 012-2h2.5"/>
|
||||
</svg>
|
||||
<svg id="ticket" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 5v2m0 4v2m0 4v2M5 5a2 2 0 00-2 2v3a2 2 0 110 4v3a2 2 0 002 2h14a2 2 0 002-2v-3a2 2 0 110-4V7a2 2 0 00-2-2H5z"/>
|
||||
</svg>
|
||||
<svg id="translate" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5h12M9 3v2m1.048 9.5A18.022 18.022 0 016.412 9m6.088 9h7M11 21l5-10 5 10M12.751 5C11.783 10.77 8.07 15.61 3 18.129"/>
|
||||
</svg>
|
||||
<svg id="trash" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"/>
|
||||
</svg>
|
||||
<svg id="trending-down" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 17h8m0 0V9m0 8l-8-8-4 4-6-6"/>
|
||||
</svg>
|
||||
<svg id="trending-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"/>
|
||||
</svg>
|
||||
<svg id="truck" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path d="M9 17a2 2 0 11-4 0 2 2 0 014 0zM19 17a2 2 0 11-4 0 2 2 0 014 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16V6a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h1m8-1a1 1 0 01-1 1H9m4-1V8a1 1 0 011-1h2.586a1 1 0 01.707.293l3.414 3.414a1 1 0 01.293.707V16a1 1 0 01-1 1h-1m-6-1a1 1 0 001 1h1M5 17a2 2 0 104 0m-4 0a2 2 0 114 0m6 0a2 2 0 104 0m-4 0a2 2 0 114 0"/>
|
||||
</svg>
|
||||
<svg id="upload" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12"/>
|
||||
</svg>
|
||||
<svg id="user-add" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 9v3m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z"/>
|
||||
</svg>
|
||||
<svg id="user-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5.121 17.804A13.937 13.937 0 0112 16c2.5 0 4.847.655 6.879 1.804M15 10a3 3 0 11-6 0 3 3 0 016 0zm6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="user-group" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/>
|
||||
</svg>
|
||||
<svg id="user-remove" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7a4 4 0 11-8 0 4 4 0 018 0zM9 14a6 6 0 00-6 6v1h12v-1a6 6 0 00-6-6zM21 12h-6"/>
|
||||
</svg>
|
||||
<svg id="user" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
|
||||
</svg>
|
||||
<svg id="users" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z"/>
|
||||
</svg>
|
||||
<svg id="variable" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.871 4A17.926 17.926 0 003 12c0 2.874.673 5.59 1.871 8m14.13 0a17.926 17.926 0 001.87-8c0-2.874-.673-5.59-1.87-8M9 9h1.246a1 1 0 01.961.725l1.586 5.55a1 1 0 00.961.725H15m1-7h-.08a2 2 0 00-1.519.698L9.6 15.302A2 2 0 018.08 16H8"/>
|
||||
</svg>
|
||||
<svg id="video-camera" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="view-boards" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 17V7m0 10a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h2a2 2 0 012 2m0 10a2 2 0 002 2h2a2 2 0 002-2M9 7a2 2 0 012-2h2a2 2 0 012 2m0 10V7m0 10a2 2 0 002 2h2a2 2 0 002-2V7a2 2 0 00-2-2h-2a2 2 0 00-2 2"/>
|
||||
</svg>
|
||||
<svg id="view-grid-add" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 14v6m-3-3h6M6 10h2a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v2a2 2 0 002 2zm10 0h2a2 2 0 002-2V6a2 2 0 00-2-2h-2a2 2 0 00-2 2v2a2 2 0 002 2zM6 20h2a2 2 0 002-2v-2a2 2 0 00-2-2H6a2 2 0 00-2 2v2a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<svg id="view-grid" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z"/>
|
||||
</svg>
|
||||
<svg id="view-list" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 10h16M4 14h16M4 18h16"/>
|
||||
</svg>
|
||||
<svg id="volume-off" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5.586 15H4a1 1 0 01-1-1v-4a1 1 0 011-1h1.586l4.707-4.707C10.923 3.663 12 4.109 12 5v14c0 .891-1.077 1.337-1.707.707L5.586 15z" clip-rule="evenodd"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2"/>
|
||||
</svg>
|
||||
<svg id="volume-up" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.536 8.464a5 5 0 010 7.072m2.828-9.9a9 9 0 010 12.728M5.586 15H4a1 1 0 01-1-1v-4a1 1 0 011-1h1.586l4.707-4.707C10.923 3.663 12 4.109 12 5v14c0 .891-1.077 1.337-1.707.707L5.586 15z"/>
|
||||
</svg>
|
||||
<svg id="wifi" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.111 16.404a5.5 5.5 0 017.778 0M12 20h.01m-7.08-7.071c3.904-3.905 10.236-3.905 14.141 0M1.394 9.393c5.857-5.857 15.355-5.857 21.213 0"/>
|
||||
</svg>
|
||||
<svg id="x-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||||
</svg>
|
||||
<svg id="x" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
|
||||
</svg>
|
||||
<svg id="zoom-in" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0zM10 7v3m0 0v3m0-3h3m-3 0H7"/>
|
||||
</svg>
|
||||
<svg id="zoom-out" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0zM13 10H7"/>
|
||||
</svg>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 77 KiB |
|
|
@ -0,0 +1,738 @@
|
|||
<!-- @formatter:off -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<svg id="academic-cap" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10.394 2.08a1 1 0 00-.788 0l-7 3a1 1 0 000 1.84L5.25 8.051a.999.999 0 01.356-.257l4-1.714a1 1 0 11.788 1.838L7.667 9.088l1.94.831a1 1 0 00.787 0l7-3a1 1 0 000-1.838l-7-3zM3.31 9.397L5 10.12v4.102a8.969 8.969 0 00-1.05-.174 1 1 0 01-.89-.89 11.115 11.115 0 01.25-3.762zM9.3 16.573A9.026 9.026 0 007 14.935v-3.957l1.818.78a3 3 0 002.364 0l5.508-2.361a11.026 11.026 0 01.25 3.762 1 1 0 01-.89.89 8.968 8.968 0 00-5.35 2.524 1 1 0 01-1.4 0zM6 18a1 1 0 001-1v-2.065a8.935 8.935 0 00-2-.712V17a1 1 0 001 1z"/>
|
||||
</svg>
|
||||
<svg id="annotation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 13V5a2 2 0 00-2-2H4a2 2 0 00-2 2v8a2 2 0 002 2h3l3 3 3-3h3a2 2 0 002-2zM5 7a1 1 0 011-1h8a1 1 0 110 2H6a1 1 0 01-1-1zm1 3a1 1 0 100 2h3a1 1 0 100-2H6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="adjustments" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 4a1 1 0 00-2 0v7.268a2 2 0 000 3.464V16a1 1 0 102 0v-1.268a2 2 0 000-3.464V4zM11 4a1 1 0 10-2 0v1.268a2 2 0 000 3.464V16a1 1 0 102 0V8.732a2 2 0 000-3.464V4zM16 3a1 1 0 011 1v7.268a2 2 0 010 3.464V16a1 1 0 11-2 0v-1.268a2 2 0 010-3.464V4a1 1 0 011-1z"/>
|
||||
</svg>
|
||||
<svg id="archive" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M4 3a2 2 0 100 4h12a2 2 0 100-4H4z"/>
|
||||
<path fill-rule="evenodd" d="M3 8h14v7a2 2 0 01-2 2H5a2 2 0 01-2-2V8zm5 3a1 1 0 011-1h2a1 1 0 110 2H9a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-11a1 1 0 10-2 0v3.586L7.707 9.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 10.586V7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm.707-10.293a1 1 0 00-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L9.414 11H13a1 1 0 100-2H9.414l1.293-1.293z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-circle-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 0l-3 3a1 1 0 001.414 1.414L9 9.414V13a1 1 0 102 0V9.414l1.293 1.293a1 1 0 001.414-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M16.707 10.293a1 1 0 010 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 111.414-1.414L9 14.586V3a1 1 0 012 0v11.586l4.293-4.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.707 16.707a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414l6-6a1 1 0 011.414 1.414L5.414 9H17a1 1 0 110 2H5.414l4.293 4.293a1 1 0 010 1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M14.707 12.293a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 14.586V3a1 1 0 012 0v11.586l2.293-2.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L5.414 9H17a1 1 0 110 2H5.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-narrow-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5.293 7.707a1 1 0 010-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 01-1.414 1.414L11 5.414V17a1 1 0 11-2 0V5.414L6.707 7.707a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.707 14.707a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 1.414L7.414 9H15a1 1 0 110 2H7.414l2.293 2.293a1 1 0 010 1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M14.707 10.293a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 12.586V5a1 1 0 012 0v7.586l2.293-2.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-sm-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5.293 9.707a1 1 0 010-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 01-1.414 1.414L11 7.414V15a1 1 0 11-2 0V7.414L6.707 9.707a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrow-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3.293 9.707a1 1 0 010-1.414l6-6a1 1 0 011.414 0l6 6a1 1 0 01-1.414 1.414L11 5.414V17a1 1 0 11-2 0V5.414L4.707 9.707a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="arrows-expand" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 20" fill="currentColor">
|
||||
<path stroke="#374151" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8V4m0 0h4M3 4l4 4m8 0V4m0 0h-4m4 0l-4 4m-8 4v4m0 0h4m-4 0l4-4m8 4l-4-4m4 4v-4m0 4h-4"/>
|
||||
</svg>
|
||||
<svg id="at-symbol" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M14.243 5.757a6 6 0 10-.986 9.284 1 1 0 111.087 1.678A8 8 0 1118 10a3 3 0 01-4.8 2.401A4 4 0 1114 10a1 1 0 102 0c0-1.537-.586-3.07-1.757-4.243zM12 10a2 2 0 10-4 0 2 2 0 004 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="badge-check" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6.267 3.455a3.066 3.066 0 001.745-.723 3.066 3.066 0 013.976 0 3.066 3.066 0 001.745.723 3.066 3.066 0 012.812 2.812c.051.643.304 1.254.723 1.745a3.066 3.066 0 010 3.976 3.066 3.066 0 00-.723 1.745 3.066 3.066 0 01-2.812 2.812 3.066 3.066 0 00-1.745.723 3.066 3.066 0 01-3.976 0 3.066 3.066 0 00-1.745-.723 3.066 3.066 0 01-2.812-2.812 3.066 3.066 0 00-.723-1.745 3.066 3.066 0 010-3.976 3.066 3.066 0 00.723-1.745 3.066 3.066 0 012.812-2.812zm7.44 5.252a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="backspace" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6.707 4.879A3 3 0 018.828 4H15a3 3 0 013 3v6a3 3 0 01-3 3H8.828a3 3 0 01-2.12-.879l-4.415-4.414a1 1 0 010-1.414l4.414-4.414zm4 2.414a1 1 0 00-1.414 1.414L10.586 10l-1.293 1.293a1 1 0 101.414 1.414L12 11.414l1.293 1.293a1 1 0 001.414-1.414L13.414 10l1.293-1.293a1 1 0 00-1.414-1.414L12 8.586l-1.293-1.293z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="ban" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M13.477 14.89A6 6 0 015.11 6.524l8.367 8.368zm1.414-1.414L6.524 5.11a6 6 0 018.367 8.367zM18 10a8 8 0 11-16 0 8 8 0 0116 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="beaker" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7 2a1 1 0 00-.707 1.707L7 4.414v3.758a1 1 0 01-.293.707l-4 4C.817 14.769 2.156 18 4.828 18h10.343c2.673 0 4.012-3.231 2.122-5.121l-4-4A1 1 0 0113 8.172V4.414l.707-.707A1 1 0 0013 2H7zm2 6.172V4h2v4.172a3 3 0 00.879 2.12l1.027 1.028a4 4 0 00-2.171.102l-.47.156a4 4 0 01-2.53 0l-.563-.187a1.993 1.993 0 00-.114-.035l1.063-1.063A3 3 0 009 8.172z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="bell" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10 2a6 6 0 00-6 6v3.586l-.707.707A1 1 0 004 14h12a1 1 0 00.707-1.707L16 11.586V8a6 6 0 00-6-6zM10 18a3 3 0 01-3-3h6a3 3 0 01-3 3z"/>
|
||||
</svg>
|
||||
<svg id="book-open" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z"/>
|
||||
</svg>
|
||||
<svg id="bookmark-alt" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 5a2 2 0 012-2h10a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2V5zm11 1H6v8l4-2 4 2V6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="bookmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 4a2 2 0 012-2h6a2 2 0 012 2v14l-5-2.5L5 18V4z"/>
|
||||
</svg>
|
||||
<svg id="briefcase" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 6V5a3 3 0 013-3h2a3 3 0 013 3v1h2a2 2 0 012 2v3.57A22.952 22.952 0 0110 13a22.95 22.95 0 01-8-1.43V8a2 2 0 012-2h2zm2-1a1 1 0 011-1h2a1 1 0 011 1v1H8V5zm1 5a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
<path d="M2 13.692V16a2 2 0 002 2h12a2 2 0 002-2v-2.308A24.974 24.974 0 0110 15c-2.796 0-5.487-.46-8-1.308z"/>
|
||||
</svg>
|
||||
<svg id="cake" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 3a1 1 0 011-1h.01a1 1 0 010 2H7a1 1 0 01-1-1zm2 3a1 1 0 00-2 0v1a2 2 0 00-2 2v1a2 2 0 00-2 2v.683a3.7 3.7 0 011.055.485 1.704 1.704 0 001.89 0 3.704 3.704 0 014.11 0 1.704 1.704 0 001.89 0 3.704 3.704 0 014.11 0 1.704 1.704 0 001.89 0A3.7 3.7 0 0118 12.683V12a2 2 0 00-2-2V9a2 2 0 00-2-2V6a1 1 0 10-2 0v1h-1V6a1 1 0 10-2 0v1H8V6zm10 8.868a3.704 3.704 0 01-4.055-.036 1.704 1.704 0 00-1.89 0 3.704 3.704 0 01-4.11 0 1.704 1.704 0 00-1.89 0A3.704 3.704 0 012 14.868V17a1 1 0 001 1h14a1 1 0 001-1v-2.132zM9 3a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1zm3 0a1 1 0 011-1h.01a1 1 0 110 2H13a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="calculator" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2H6zm1 2a1 1 0 000 2h6a1 1 0 100-2H7zm6 7a1 1 0 011 1v3a1 1 0 11-2 0v-3a1 1 0 011-1zm-3 3a1 1 0 100 2h.01a1 1 0 100-2H10zm-4 1a1 1 0 011-1h.01a1 1 0 110 2H7a1 1 0 01-1-1zm1-4a1 1 0 100 2h.01a1 1 0 100-2H7zm2 1a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1zm4-4a1 1 0 100 2h.01a1 1 0 100-2H13zM9 9a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1zM7 8a1 1 0 000 2h.01a1 1 0 000-2H7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="calendar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="camera" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 5a2 2 0 00-2 2v8a2 2 0 002 2h12a2 2 0 002-2V7a2 2 0 00-2-2h-1.586a1 1 0 01-.707-.293l-1.121-1.121A2 2 0 0011.172 3H8.828a2 2 0 00-1.414.586L6.293 4.707A1 1 0 015.586 5H4zm6 9a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cash" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 4a2 2 0 00-2 2v4a2 2 0 002 2V6h10a2 2 0 00-2-2H4zm2 6a2 2 0 012-2h8a2 2 0 012 2v4a2 2 0 01-2 2H8a2 2 0 01-2-2v-4zm6 4a2 2 0 100-4 2 2 0 000 4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chart-bar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 11a1 1 0 011-1h2a1 1 0 011 1v5a1 1 0 01-1 1H3a1 1 0 01-1-1v-5zM8 7a1 1 0 011-1h2a1 1 0 011 1v9a1 1 0 01-1 1H9a1 1 0 01-1-1V7zM14 4a1 1 0 011-1h2a1 1 0 011 1v12a1 1 0 01-1 1h-2a1 1 0 01-1-1V4z"/>
|
||||
</svg>
|
||||
<svg id="chart-pie" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 10a8 8 0 018-8v8h8a8 8 0 11-16 0z"/>
|
||||
<path d="M12 2.252A8.014 8.014 0 0117.748 8H12V2.252z"/>
|
||||
</svg>
|
||||
<svg id="chart-square-bar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 3a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2H5zm9 4a1 1 0 10-2 0v6a1 1 0 102 0V7zm-3 2a1 1 0 10-2 0v4a1 1 0 102 0V9zm-3 3a1 1 0 10-2 0v1a1 1 0 102 0v-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chat-alt-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 5a2 2 0 012-2h7a2 2 0 012 2v4a2 2 0 01-2 2H9l-3 3v-3H4a2 2 0 01-2-2V5z"/>
|
||||
<path d="M15 7v2a4 4 0 01-4 4H9.828l-1.766 1.767c.28.149.599.233.938.233h2l3 3v-3h2a2 2 0 002-2V9a2 2 0 00-2-2h-1z"/>
|
||||
</svg>
|
||||
<svg id="chat-alt" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 5v8a2 2 0 01-2 2h-5l-5 4v-4H4a2 2 0 01-2-2V5a2 2 0 012-2h12a2 2 0 012 2zM7 8H5v2h2V8zm2 0h2v2H9V8zm6 0h-2v2h2V8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chat" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10c0 3.866-3.582 7-8 7a8.841 8.841 0 01-4.083-.98L2 17l1.338-3.123C2.493 12.767 2 11.434 2 10c0-3.866 3.582-7 8-7s8 3.134 8 7zM7 9H5v2h2V9zm8 0h-2v2h2V9zM9 9h2v2H9V9z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="check-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="check" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M15.707 4.293a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 011.414-1.414L10 8.586l4.293-4.293a1 1 0 011.414 0zm0 6a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 111.414-1.414L10 14.586l4.293-4.293a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M15.707 15.707a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414l5-5a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 010 1.414zm-6 0a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414l5-5a1 1 0 011.414 1.414L5.414 10l4.293 4.293a1 1 0 010 1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4.293 15.707a1 1 0 010-1.414l5-5a1 1 0 011.414 0l5 5a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414 0zm0-6a1 1 0 010-1.414l5-5a1 1 0 011.414 0l5 5a1 1 0 01-1.414 1.414L10 5.414 5.707 9.707a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-double-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10.293 15.707a1 1 0 010-1.414L14.586 10l-4.293-4.293a1 1 0 111.414-1.414l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
<path fill-rule="evenodd" d="M4.293 15.707a1 1 0 010-1.414L8.586 10 4.293 5.707a1 1 0 011.414-1.414l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chevron-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M14.707 12.707a1 1 0 01-1.414 0L10 9.414l-3.293 3.293a1 1 0 01-1.414-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 010 1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="chip" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M13 7H7v6h6V7z"/>
|
||||
<path fill-rule="evenodd" d="M7 2a1 1 0 012 0v1h2V2a1 1 0 112 0v1h2a2 2 0 012 2v2h1a1 1 0 110 2h-1v2h1a1 1 0 110 2h-1v2a2 2 0 01-2 2h-2v1a1 1 0 11-2 0v-1H9v1a1 1 0 11-2 0v-1H5a2 2 0 01-2-2v-2H2a1 1 0 110-2h1V9H2a1 1 0 010-2h1V5a2 2 0 012-2h2V2zM5 5h10v10H5V5z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="clipboard-check" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 2a1 1 0 000 2h2a1 1 0 100-2H9z"/>
|
||||
<path fill-rule="evenodd" d="M4 5a2 2 0 012-2 3 3 0 003 3h2a3 3 0 003-3 2 2 0 012 2v11a2 2 0 01-2 2H6a2 2 0 01-2-2V5zm9.707 5.707a1 1 0 00-1.414-1.414L9 12.586l-1.293-1.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="clipboard-copy" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8 2a1 1 0 000 2h2a1 1 0 100-2H8z"/>
|
||||
<path d="M3 5a2 2 0 012-2 3 3 0 003 3h2a3 3 0 003-3 2 2 0 012 2v6h-4.586l1.293-1.293a1 1 0 00-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L10.414 13H15v3a2 2 0 01-2 2H5a2 2 0 01-2-2V5zM15 11h2a1 1 0 110 2h-2v-2z"/>
|
||||
</svg>
|
||||
<svg id="clipboard-list" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 2a1 1 0 000 2h2a1 1 0 100-2H9z"/>
|
||||
<path fill-rule="evenodd" d="M4 5a2 2 0 012-2 3 3 0 003 3h2a3 3 0 003-3 2 2 0 012 2v11a2 2 0 01-2 2H6a2 2 0 01-2-2V5zm3 4a1 1 0 000 2h.01a1 1 0 100-2H7zm3 0a1 1 0 000 2h3a1 1 0 100-2h-3zm-3 4a1 1 0 100 2h.01a1 1 0 100-2H7zm3 0a1 1 0 100 2h3a1 1 0 100-2h-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="clipboard" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8 3a1 1 0 011-1h2a1 1 0 110 2H9a1 1 0 01-1-1z"/>
|
||||
<path d="M6 3a2 2 0 00-2 2v11a2 2 0 002 2h8a2 2 0 002-2V5a2 2 0 00-2-2 3 3 0 01-3 3H9a3 3 0 01-3-3z"/>
|
||||
</svg>
|
||||
<svg id="clock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cloud-download" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2 9.5A3.5 3.5 0 005.5 13H9v2.586l-1.293-1.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 15.586V13h2.5a4.5 4.5 0 10-.616-8.958 4.002 4.002 0 10-7.753 1.977A3.5 3.5 0 002 9.5zm9 3.5H9V8a1 1 0 012 0v5z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cloud-upload" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5.5 13a3.5 3.5 0 01-.369-6.98 4 4 0 117.753-1.977A4.5 4.5 0 1113.5 13H11V9.413l1.293 1.293a1 1 0 001.414-1.414l-3-3a1 1 0 00-1.414 0l-3 3a1 1 0 001.414 1.414L9 9.414V13H5.5z"/>
|
||||
<path d="M9 13h2v5a1 1 0 11-2 0v-5z"/>
|
||||
</svg>
|
||||
<svg id="cloud" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5.5 16a3.5 3.5 0 01-.369-6.98 4 4 0 117.753-1.977A4.5 4.5 0 1113.5 16h-8z"/>
|
||||
</svg>
|
||||
<svg id="code" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12.316 3.051a1 1 0 01.633 1.265l-4 12a1 1 0 11-1.898-.632l4-12a1 1 0 011.265-.633zM5.707 6.293a1 1 0 010 1.414L3.414 10l2.293 2.293a1 1 0 11-1.414 1.414l-3-3a1 1 0 010-1.414l3-3a1 1 0 011.414 0zm8.586 0a1 1 0 011.414 0l3 3a1 1 0 010 1.414l-3 3a1 1 0 11-1.414-1.414L16.586 10l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cog" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="collection" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M7 3a1 1 0 000 2h6a1 1 0 100-2H7zM4 7a1 1 0 011-1h10a1 1 0 110 2H5a1 1 0 01-1-1zM2 11a2 2 0 012-2h12a2 2 0 012 2v4a2 2 0 01-2 2H4a2 2 0 01-2-2v-4z"/>
|
||||
</svg>
|
||||
<svg id="credit-card" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M4 4a2 2 0 00-2 2v1h16V6a2 2 0 00-2-2H4z"/>
|
||||
<path fill-rule="evenodd" d="M18 9H2v5a2 2 0 002 2h12a2 2 0 002-2V9zM4 13a1 1 0 011-1h1a1 1 0 110 2H5a1 1 0 01-1-1zm5-1a1 1 0 100 2h1a1 1 0 100-2H9z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="color-swatch" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 2a2 2 0 00-2 2v11a3 3 0 106 0V4a2 2 0 00-2-2H4zm1 14a1 1 0 100-2 1 1 0 000 2zm5-1.757l4.9-4.9a2 2 0 000-2.828L13.485 5.1a2 2 0 00-2.828 0L10 5.757v8.486zM16 18H9.071l6-6H16a2 2 0 012 2v2a2 2 0 01-2 2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cube-transparent" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.504 1.132a1 1 0 01.992 0l1.75 1a1 1 0 11-.992 1.736L10 3.152l-1.254.716a1 1 0 11-.992-1.736l1.75-1zM5.618 4.504a1 1 0 01-.372 1.364L5.016 6l.23.132a1 1 0 11-.992 1.736L4 7.723V8a1 1 0 01-2 0V6a.996.996 0 01.52-.878l1.734-.99a1 1 0 011.364.372zm8.764 0a1 1 0 011.364-.372l1.733.99A1.002 1.002 0 0118 6v2a1 1 0 11-2 0v-.277l-.254.145a1 1 0 11-.992-1.736l.23-.132-.23-.132a1 1 0 01-.372-1.364zm-7 4a1 1 0 011.364-.372L10 8.848l1.254-.716a1 1 0 11.992 1.736L11 10.58V12a1 1 0 11-2 0v-1.42l-1.246-.712a1 1 0 01-.372-1.364zM3 11a1 1 0 011 1v1.42l1.246.712a1 1 0 11-.992 1.736l-1.75-1A1 1 0 012 14v-2a1 1 0 011-1zm14 0a1 1 0 011 1v2a1 1 0 01-.504.868l-1.75 1a1 1 0 11-.992-1.736L16 13.42V12a1 1 0 011-1zm-9.618 5.504a1 1 0 011.364-.372l.254.145V16a1 1 0 112 0v.277l.254-.145a1 1 0 11.992 1.736l-1.735.992a.995.995 0 01-1.022 0l-1.735-.992a1 1 0 01-.372-1.364z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cube" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M11 17a1 1 0 001.447.894l4-2A1 1 0 0017 15V9.236a1 1 0 00-1.447-.894l-4 2a1 1 0 00-.553.894V17zM15.211 6.276a1 1 0 000-1.788l-4.764-2.382a1 1 0 00-.894 0L4.789 4.488a1 1 0 000 1.788l4.764 2.382a1 1 0 00.894 0l4.764-2.382zM4.447 8.342A1 1 0 003 9.236V15a1 1 0 00.553.894l4 2A1 1 0 009 17v-5.764a1 1 0 00-.553-.894l-4-2z"/>
|
||||
</svg>
|
||||
<svg id="currency-bangladeshi" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7 4a1 1 0 000 2 1 1 0 011 1v1H7a1 1 0 000 2h1v3a3 3 0 106 0v-1a1 1 0 10-2 0v1a1 1 0 11-2 0v-3h3a1 1 0 100-2h-3V7a3 3 0 00-3-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="currency-dollar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8.433 7.418c.155-.103.346-.196.567-.267v1.698a2.305 2.305 0 01-.567-.267C8.07 8.34 8 8.114 8 8c0-.114.07-.34.433-.582zM11 12.849v-1.698c.22.071.412.164.567.267.364.243.433.468.433.582 0 .114-.07.34-.433.582a2.305 2.305 0 01-.567.267z"/>
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-13a1 1 0 10-2 0v.092a4.535 4.535 0 00-1.676.662C6.602 6.234 6 7.009 6 8c0 .99.602 1.765 1.324 2.246.48.32 1.054.545 1.676.662v1.941c-.391-.127-.68-.317-.843-.504a1 1 0 10-1.51 1.31c.562.649 1.413 1.076 2.353 1.253V15a1 1 0 102 0v-.092a4.535 4.535 0 001.676-.662C13.398 13.766 14 12.991 14 12c0-.99-.602-1.765-1.324-2.246A4.535 4.535 0 0011 9.092V7.151c.391.127.68.317.843.504a1 1 0 101.511-1.31c-.563-.649-1.413-1.076-2.354-1.253V5z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="currency-euro" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.736 6.979C9.208 6.193 9.696 6 10 6c.304 0 .792.193 1.264.979a1 1 0 001.715-1.029C12.279 4.784 11.232 4 10 4s-2.279.784-2.979 1.95c-.285.475-.507 1-.67 1.55H6a1 1 0 000 2h.013a9.358 9.358 0 000 1H6a1 1 0 100 2h.351c.163.55.385 1.075.67 1.55C7.721 15.216 8.768 16 10 16s2.279-.784 2.979-1.95a1 1 0 10-1.715-1.029c-.472.786-.96.979-1.264.979-.304 0-.792-.193-1.264-.979a4.265 4.265 0 01-.264-.521H10a1 1 0 100-2H8.017a7.36 7.36 0 010-1H10a1 1 0 100-2H8.472c.08-.185.167-.36.264-.521z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="currency-pound" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-14a3 3 0 00-3 3v2H7a1 1 0 000 2h1v1a1 1 0 01-1 1 1 1 0 100 2h6a1 1 0 100-2H9.83c.11-.313.17-.65.17-1v-1h1a1 1 0 100-2h-1V7a1 1 0 112 0 1 1 0 102 0 3 3 0 00-3-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="currency-rupee" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7 5a1 1 0 100 2h1a2 2 0 011.732 1H7a1 1 0 100 2h2.732A2 2 0 018 11H7a1 1 0 00-.707 1.707l3 3a1 1 0 001.414-1.414l-1.483-1.484A4.008 4.008 0 0011.874 10H13a1 1 0 100-2h-1.126a3.976 3.976 0 00-.41-1H13a1 1 0 100-2H7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="currency-yen" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7.858 5.485a1 1 0 00-1.715 1.03L7.633 9H7a1 1 0 100 2h1.834l.166.277V12H7a1 1 0 100 2h2v1a1 1 0 102 0v-1h2a1 1 0 100-2h-2v-.723l.166-.277H13a1 1 0 100-2h-.634l1.492-2.486a1 1 0 10-1.716-1.029L10.034 9h-.068L7.858 5.485z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="cursor-click" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6.672 1.911a1 1 0 10-1.932.518l.259.966a1 1 0 001.932-.518l-.26-.966zM2.429 4.74a1 1 0 10-.517 1.932l.966.259a1 1 0 00.517-1.932l-.966-.26zm8.814-.569a1 1 0 00-1.415-1.414l-.707.707a1 1 0 101.415 1.415l.707-.708zm-7.071 7.072l.707-.707A1 1 0 003.465 9.12l-.708.707a1 1 0 001.415 1.415zm3.2-5.171a1 1 0 00-1.3 1.3l4 10a1 1 0 001.823.075l1.38-2.759 3.018 3.02a1 1 0 001.414-1.415l-3.019-3.02 2.76-1.379a1 1 0 00-.076-1.822l-10-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="database" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M3 12v3c0 1.657 3.134 3 7 3s7-1.343 7-3v-3c0 1.657-3.134 3-7 3s-7-1.343-7-3z"/>
|
||||
<path d="M3 7v3c0 1.657 3.134 3 7 3s7-1.343 7-3V7c0 1.657-3.134 3-7 3S3 8.657 3 7z"/>
|
||||
<path d="M17 5c0 1.657-3.134 3-7 3S3 6.657 3 5s3.134-3 7-3 7 1.343 7 3z"/>
|
||||
</svg>
|
||||
<svg id="desktop-computer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 5a2 2 0 012-2h10a2 2 0 012 2v8a2 2 0 01-2 2h-2.22l.123.489.804.804A1 1 0 0113 18H7a1 1 0 01-.707-1.707l.804-.804L7.22 15H5a2 2 0 01-2-2V5zm5.771 7H5V5h10v7H8.771z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="device-mobile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7 2a2 2 0 00-2 2v12a2 2 0 002 2h6a2 2 0 002-2V4a2 2 0 00-2-2H7zm3 14a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="device-tablet" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2H6zm4 14a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document-add" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document-download" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm5 6a1 1 0 10-2 0v3.586l-1.293-1.293a1 1 0 10-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 11.586V8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document-duplicate" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 2a2 2 0 00-2 2v8a2 2 0 002 2h6a2 2 0 002-2V6.414A2 2 0 0016.414 5L14 2.586A2 2 0 0012.586 2H9z"/>
|
||||
<path d="M3 8a2 2 0 012-2v10h8a2 2 0 01-2 2H5a2 2 0 01-2-2V8z"/>
|
||||
</svg>
|
||||
<svg id="document-remove" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm1 8a1 1 0 100 2h6a1 1 0 100-2H7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document-report" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6 2a2 2 0 00-2 2v12a2 2 0 002 2h8a2 2 0 002-2V7.414A2 2 0 0015.414 6L12 2.586A2 2 0 0010.586 2H6zm2 10a1 1 0 10-2 0v3a1 1 0 102 0v-3zm2-3a1 1 0 011 1v5a1 1 0 11-2 0v-5a1 1 0 011-1zm4-1a1 1 0 10-2 0v7a1 1 0 102 0V8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document-search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M4 4a2 2 0 012-2h4.586A2 2 0 0112 2.586L15.414 6A2 2 0 0116 7.414V16a2 2 0 01-2 2h-1.528A6 6 0 004 9.528V4z"/>
|
||||
<path fill-rule="evenodd" d="M8 10a4 4 0 00-3.446 6.032l-1.261 1.26a1 1 0 101.414 1.415l1.261-1.261A4 4 0 108 10zm-2 4a2 2 0 114 0 2 2 0 01-4 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document-text" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 4a2 2 0 012-2h4.586A2 2 0 0112 2.586L15.414 6A2 2 0 0116 7.414V16a2 2 0 01-2 2H6a2 2 0 01-2-2V4zm2 6a1 1 0 011-1h6a1 1 0 110 2H7a1 1 0 01-1-1zm1 3a1 1 0 100 2h6a1 1 0 100-2H7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="document" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 4a2 2 0 012-2h4.586A2 2 0 0112 2.586L15.414 6A2 2 0 0116 7.414V16a2 2 0 01-2 2H6a2 2 0 01-2-2V4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="dots-circle-horizontal" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7 9H5v2h2V9zm8 0h-2v2h2V9zM9 9h2v2H9V9z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="dots-horizontal" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M6 10a2 2 0 11-4 0 2 2 0 014 0zM12 10a2 2 0 11-4 0 2 2 0 014 0zM16 12a2 2 0 100-4 2 2 0 000 4z"/>
|
||||
</svg>
|
||||
<svg id="dots-vertical" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z"/>
|
||||
</svg>
|
||||
<svg id="download" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 17a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm3.293-7.707a1 1 0 011.414 0L9 10.586V3a1 1 0 112 0v7.586l1.293-1.293a1 1 0 111.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="duplicate" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M7 9a2 2 0 012-2h6a2 2 0 012 2v6a2 2 0 01-2 2H9a2 2 0 01-2-2V9z"/>
|
||||
<path d="M5 3a2 2 0 00-2 2v6a2 2 0 002 2V5h8a2 2 0 00-2-2H5z"/>
|
||||
</svg>
|
||||
<svg id="emoji-happy" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7 9a1 1 0 100-2 1 1 0 000 2zm7-1a1 1 0 11-2 0 1 1 0 012 0zm-.464 5.535a1 1 0 10-1.415-1.414 3 3 0 01-4.242 0 1 1 0 00-1.415 1.414 5 5 0 007.072 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="emoji-sad" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7 9a1 1 0 100-2 1 1 0 000 2zm7-1a1 1 0 11-2 0 1 1 0 012 0zm-7.536 5.879a1 1 0 001.415 0 3 3 0 014.242 0 1 1 0 001.415-1.415 5 5 0 00-7.072 0 1 1 0 000 1.415z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="exclamation-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="exclamation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="external-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z"/>
|
||||
<path d="M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z"/>
|
||||
</svg>
|
||||
<svg id="eye-off" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3.707 2.293a1 1 0 00-1.414 1.414l14 14a1 1 0 001.414-1.414l-1.473-1.473A10.014 10.014 0 0019.542 10C18.268 5.943 14.478 3 10 3a9.958 9.958 0 00-4.512 1.074l-1.78-1.781zm4.261 4.26l1.514 1.515a2.003 2.003 0 012.45 2.45l1.514 1.514a4 4 0 00-5.478-5.478z" clip-rule="evenodd"/>
|
||||
<path d="M12.454 16.697L9.75 13.992a4 4 0 01-3.742-3.741L2.335 6.578A9.98 9.98 0 00.458 10c1.274 4.057 5.065 7 9.542 7 .847 0 1.669-.105 2.454-.303z"/>
|
||||
</svg>
|
||||
<svg id="eye" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10 12a2 2 0 100-4 2 2 0 000 4z"/>
|
||||
<path fill-rule="evenodd" d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="fast-forward" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M4.555 5.168A1 1 0 003 6v8a1 1 0 001.555.832L10 11.202V14a1 1 0 001.555.832l6-4a1 1 0 000-1.664l-6-4A1 1 0 0010 6v2.798l-5.445-3.63z"/>
|
||||
</svg>
|
||||
<svg id="film" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm3 2h6v4H7V5zm8 8v2h1v-2h-1zm-2-2H7v4h6v-4zm2 0h1V9h-1v2zm1-4V5h-1v2h1zM5 5v2H4V5h1zm0 4H4v2h1V9zm-1 4h1v2H4v-2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="filter" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 3a1 1 0 011-1h12a1 1 0 011 1v3a1 1 0 01-.293.707L12 11.414V15a1 1 0 01-.293.707l-2 2A1 1 0 018 17v-5.586L3.293 6.707A1 1 0 013 6V3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="finger-print" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M6.625 2.655A9 9 0 0119 11a1 1 0 11-2 0 7 7 0 00-9.625-6.492 1 1 0 11-.75-1.853zM4.662 4.959A1 1 0 014.75 6.37 6.97 6.97 0 003 11a1 1 0 11-2 0 8.97 8.97 0 012.25-5.953 1 1 0 011.412-.088z" clip-rule="evenodd"/>
|
||||
<path fill-rule="evenodd" d="M5 11a5 5 0 1110 0 1 1 0 11-2 0 3 3 0 10-6 0c0 1.677-.345 3.276-.968 4.729a1 1 0 11-1.838-.789A9.964 9.964 0 005 11zm8.921 2.012a1 1 0 01.831 1.145 19.86 19.86 0 01-.545 2.436 1 1 0 11-1.92-.558c.207-.713.371-1.445.49-2.192a1 1 0 011.144-.83z" clip-rule="evenodd"/>
|
||||
<path fill-rule="evenodd" d="M10 10a1 1 0 011 1c0 2.236-.46 4.368-1.29 6.304a1 1 0 01-1.838-.789A13.952 13.952 0 009 11a1 1 0 011-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="fire" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="flag" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 6a3 3 0 013-3h10a1 1 0 01.8 1.6L14.25 8l2.55 3.4A1 1 0 0116 13H6a1 1 0 00-1 1v3a1 1 0 11-2 0V6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="folder-add" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"/>
|
||||
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 11h4m-2-2v4"/>
|
||||
</svg>
|
||||
<svg id="folder-download" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"/>
|
||||
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 9v4m0 0l-2-2m2 2l2-2"/>
|
||||
</svg>
|
||||
<svg id="folder-open" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2 6a2 2 0 012-2h4l2 2h4a2 2 0 012 2v1H8a3 3 0 00-3 3v1.5a1.5 1.5 0 01-3 0V6z" clip-rule="evenodd"/>
|
||||
<path d="M6 12a2 2 0 012-2h8a2 2 0 012 2v2a2 2 0 01-2 2H2h2a2 2 0 002-2v-2z"/>
|
||||
</svg>
|
||||
<svg id="folder-remove" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"/>
|
||||
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 11h4"/>
|
||||
</svg>
|
||||
<svg id="folder" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"/>
|
||||
</svg>
|
||||
<svg id="gift" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 5a3 3 0 015-2.236A3 3 0 0114.83 6H16a2 2 0 110 4h-5V9a1 1 0 10-2 0v1H4a2 2 0 110-4h1.17C5.06 5.687 5 5.35 5 5zm4 1V5a1 1 0 10-1 1h1zm3 0a1 1 0 10-1-1v1h1z" clip-rule="evenodd"/>
|
||||
<path d="M9 11H3v5a2 2 0 002 2h4v-7zM11 18h4a2 2 0 002-2v-5h-6v7z"/>
|
||||
</svg>
|
||||
<svg id="globe-alt" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4.083 9h1.946c.089-1.546.383-2.97.837-4.118A6.004 6.004 0 004.083 9zM10 2a8 8 0 100 16 8 8 0 000-16zm0 2c-.076 0-.232.032-.465.262-.238.234-.497.623-.737 1.182-.389.907-.673 2.142-.766 3.556h3.936c-.093-1.414-.377-2.649-.766-3.556-.24-.56-.5-.948-.737-1.182C10.232 4.032 10.076 4 10 4zm3.971 5c-.089-1.546-.383-2.97-.837-4.118A6.004 6.004 0 0115.917 9h-1.946zm-2.003 2H8.032c.093 1.414.377 2.649.766 3.556.24.56.5.948.737 1.182.233.23.389.262.465.262.076 0 .232-.032.465-.262.238-.234.498-.623.737-1.182.389-.907.673-2.142.766-3.556zm1.166 4.118c.454-1.147.748-2.572.837-4.118h1.946a6.004 6.004 0 01-2.783 4.118zm-6.268 0C6.412 13.97 6.118 12.546 6.03 11H4.083a6.004 6.004 0 002.783 4.118z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="globe" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM4.332 8.027a6.012 6.012 0 011.912-2.706C6.512 5.73 6.974 6 7.5 6A1.5 1.5 0 019 7.5V8a2 2 0 004 0 2 2 0 011.523-1.943A5.977 5.977 0 0116 10c0 .34-.028.675-.083 1H15a2 2 0 00-2 2v2.197A5.973 5.973 0 0110 16v-2a2 2 0 00-2-2 2 2 0 01-2-2 2 2 0 00-1.668-1.973z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="hand" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9 3a1 1 0 012 0v5.5a.5.5 0 001 0V4a1 1 0 112 0v4.5a.5.5 0 001 0V6a1 1 0 112 0v5a7 7 0 11-14 0V9a1 1 0 012 0v2.5a.5.5 0 001 0V4a1 1 0 012 0v4.5a.5.5 0 001 0V3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="hashtag" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.243 3.03a1 1 0 01.727 1.213L9.53 6h2.94l.56-2.243a1 1 0 111.94.486L14.53 6H17a1 1 0 110 2h-2.97l-1 4H15a1 1 0 110 2h-2.47l-.56 2.242a1 1 0 11-1.94-.485L10.47 14H7.53l-.56 2.242a1 1 0 11-1.94-.485L5.47 14H3a1 1 0 110-2h2.97l1-4H5a1 1 0 110-2h2.47l.56-2.243a1 1 0 011.213-.727zM9.03 8l-1 4h2.938l1-4H9.031z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="heart" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="home" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z"/>
|
||||
</svg>
|
||||
<svg id="identification" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 2a1 1 0 00-1 1v1a1 1 0 002 0V3a1 1 0 00-1-1zM4 4h3a3 3 0 006 0h3a2 2 0 012 2v9a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2zm2.5 7a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm2.45 4a2.5 2.5 0 10-4.9 0h4.9zM12 9a1 1 0 100 2h3a1 1 0 100-2h-3zm-1 4a1 1 0 011-1h2a1 1 0 110 2h-2a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="inbox-in" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l2-2a1 1 0 00-1.414-1.414L11 7.586V3a1 1 0 10-2 0v4.586l-.293-.293z"/>
|
||||
<path d="M3 5a2 2 0 012-2h1a1 1 0 010 2H5v7h2l1 2h4l1-2h2V5h-1a1 1 0 110-2h1a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2V5z"/>
|
||||
</svg>
|
||||
<svg id="inbox" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 3a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2H5zm0 2h10v7h-2l-1 2H8l-1-2H5V5z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="information-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="key" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="library" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10.496 2.132a1 1 0 00-.992 0l-7 4A1 1 0 003 8v7a1 1 0 100 2h14a1 1 0 100-2V8a1 1 0 00.496-1.868l-7-4zM6 9a1 1 0 00-1 1v3a1 1 0 102 0v-3a1 1 0 00-1-1zm3 1a1 1 0 012 0v3a1 1 0 11-2 0v-3zm5-1a1 1 0 00-1 1v3a1 1 0 102 0v-3a1 1 0 00-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="light-bulb" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M11 3a1 1 0 10-2 0v1a1 1 0 102 0V3zM15.657 5.757a1 1 0 00-1.414-1.414l-.707.707a1 1 0 001.414 1.414l.707-.707zM18 10a1 1 0 01-1 1h-1a1 1 0 110-2h1a1 1 0 011 1zM5.05 6.464A1 1 0 106.464 5.05l-.707-.707a1 1 0 00-1.414 1.414l.707.707zM5 10a1 1 0 01-1 1H3a1 1 0 110-2h1a1 1 0 011 1zM8 16v-1h4v1a2 2 0 11-4 0zM12 14c.015-.34.208-.646.477-.859a4 4 0 10-4.954 0c.27.213.462.519.476.859h4.002z"/>
|
||||
</svg>
|
||||
<svg id="lightning-bolt" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M11.3 1.046A1 1 0 0112 2v5h4a1 1 0 01.82 1.573l-7 10A1 1 0 018 18v-5H4a1 1 0 01-.82-1.573l7-10a1 1 0 011.12-.38z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12.586 4.586a2 2 0 112.828 2.828l-3 3a2 2 0 01-2.828 0 1 1 0 00-1.414 1.414 4 4 0 005.656 0l3-3a4 4 0 00-5.656-5.656l-1.5 1.5a1 1 0 101.414 1.414l1.5-1.5zm-5 5a2 2 0 012.828 0 1 1 0 101.414-1.414 4 4 0 00-5.656 0l-3 3a4 4 0 105.656 5.656l1.5-1.5a1 1 0 10-1.414-1.414l-1.5 1.5a2 2 0 11-2.828-2.828l3-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="location-marker" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="lock-closed" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="lock-open" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10 2a5 5 0 00-5 5v2a2 2 0 00-2 2v5a2 2 0 002 2h10a2 2 0 002-2v-5a2 2 0 00-2-2H7V7a3 3 0 015.905-.75 1 1 0 001.937-.5A5.002 5.002 0 0010 2z"/>
|
||||
</svg>
|
||||
<svg id="login" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 3a1 1 0 011 1v12a1 1 0 11-2 0V4a1 1 0 011-1zm7.707 3.293a1 1 0 010 1.414L9.414 9H17a1 1 0 110 2H9.414l1.293 1.293a1 1 0 01-1.414 1.414l-3-3a1 1 0 010-1.414l3-3a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="logout" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 3a1 1 0 00-1 1v12a1 1 0 102 0V4a1 1 0 00-1-1zm10.293 9.293a1 1 0 001.414 1.414l3-3a1 1 0 000-1.414l-3-3a1 1 0 10-1.414 1.414L14.586 9H7a1 1 0 100 2h7.586l-1.293 1.293z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="mail-open" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2.94 6.412A2 2 0 002 8.108V16a2 2 0 002 2h12a2 2 0 002-2V8.108a2 2 0 00-.94-1.696l-6-3.75a2 2 0 00-2.12 0l-6 3.75zm2.615 2.423a1 1 0 10-1.11 1.664l5 3.333a1 1 0 001.11 0l5-3.333a1 1 0 00-1.11-1.664L10 11.798 5.555 8.835z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="mail" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z"/>
|
||||
<path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z"/>
|
||||
</svg>
|
||||
<svg id="map" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12 1.586l-4 4v12.828l4-4V1.586zM3.707 3.293A1 1 0 002 4v10a1 1 0 00.293.707L6 18.414V5.586L3.707 3.293zM17.707 5.293L14 1.586v12.828l2.293 2.293A1 1 0 0018 16V6a1 1 0 00-.293-.707z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h6a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h6a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="menu-alt-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 7a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 13a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="menu" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="microphone" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7 4a3 3 0 016 0v4a3 3 0 11-6 0V4zm4 10.93A7.001 7.001 0 0017 8a1 1 0 10-2 0A5 5 0 015 8a1 1 0 00-2 0 7.001 7.001 0 006 6.93V17H6a1 1 0 100 2h8a1 1 0 100-2h-3v-2.07z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="minus-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM7 9a1 1 0 000 2h6a1 1 0 100-2H7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="minus-sm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 10a1 1 0 011-1h8a1 1 0 110 2H6a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="minus" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="moon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"/>
|
||||
</svg>
|
||||
<svg id="music-note" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M18 3a1 1 0 00-1.196-.98l-10 2A1 1 0 006 5v9.114A4.369 4.369 0 005 14c-1.657 0-3 .895-3 2s1.343 2 3 2 3-.895 3-2V7.82l8-1.6v5.894A4.37 4.37 0 0015 12c-1.657 0-3 .895-3 2s1.343 2 3 2 3-.895 3-2V3z"/>
|
||||
</svg>
|
||||
<svg id="newspaper" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2 5a2 2 0 012-2h8a2 2 0 012 2v10a2 2 0 002 2H4a2 2 0 01-2-2V5zm3 1h6v4H5V6zm6 6H5v2h6v-2z" clip-rule="evenodd"/>
|
||||
<path d="M15 7h1a2 2 0 012 2v5.5a1.5 1.5 0 01-3 0V7z"/>
|
||||
</svg>
|
||||
<svg id="office-building" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 4a2 2 0 012-2h8a2 2 0 012 2v12a1 1 0 110 2h-3a1 1 0 01-1-1v-2a1 1 0 00-1-1H9a1 1 0 00-1 1v2a1 1 0 01-1 1H4a1 1 0 110-2V4zm3 1h2v2H7V5zm2 4H7v2h2V9zm2-4h2v2h-2V5zm2 4h-2v2h2V9z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="paper-airplane" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z"/>
|
||||
</svg>
|
||||
<svg id="paper-clip" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M8 4a3 3 0 00-3 3v4a5 5 0 0010 0V7a1 1 0 112 0v4a7 7 0 11-14 0V7a5 5 0 0110 0v4a3 3 0 11-6 0V7a1 1 0 012 0v4a1 1 0 102 0V7a3 3 0 00-3-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="pause" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zM7 8a1 1 0 012 0v4a1 1 0 11-2 0V8zm5-1a1 1 0 00-1 1v4a1 1 0 102 0V8a1 1 0 00-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="pencil-alt" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M17.414 2.586a2 2 0 00-2.828 0L7 10.172V13h2.828l7.586-7.586a2 2 0 000-2.828z"/>
|
||||
<path fill-rule="evenodd" d="M2 6a2 2 0 012-2h4a1 1 0 010 2H4v10h10v-4a1 1 0 112 0v4a2 2 0 01-2 2H4a2 2 0 01-2-2V6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="pencil" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M13.586 3.586a2 2 0 112.828 2.828l-.793.793-2.828-2.828.793-.793zM11.379 5.793L3 14.172V17h2.828l8.38-8.379-2.83-2.828z"/>
|
||||
</svg>
|
||||
<svg id="phone-incoming" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M14.414 7l3.293-3.293a1 1 0 00-1.414-1.414L13 5.586V4a1 1 0 10-2 0v4.003a.996.996 0 00.617.921A.997.997 0 0012 9h4a1 1 0 100-2h-1.586z"/>
|
||||
<path d="M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z"/>
|
||||
</svg>
|
||||
<svg id="phone-missed-call" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z"/>
|
||||
<path d="M16.707 3.293a1 1 0 010 1.414L15.414 6l1.293 1.293a1 1 0 01-1.414 1.414L14 7.414l-1.293 1.293a1 1 0 11-1.414-1.414L12.586 6l-1.293-1.293a1 1 0 011.414-1.414L14 4.586l1.293-1.293a1 1 0 011.414 0z"/>
|
||||
</svg>
|
||||
<svg id="phone-outgoing" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M17.924 2.617a.997.997 0 00-.215-.322l-.004-.004A.997.997 0 0017 2h-4a1 1 0 100 2h1.586l-3.293 3.293a1 1 0 001.414 1.414L16 5.414V7a1 1 0 102 0V3a.997.997 0 00-.076-.383z"/>
|
||||
<path d="M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z"/>
|
||||
</svg>
|
||||
<svg id="photograph" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm12 12H4l4-8 3 6 2-4 3 6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="phone" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z"/>
|
||||
</svg>
|
||||
<svg id="play" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="plus-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-11a1 1 0 10-2 0v2H7a1 1 0 100 2h2v2a1 1 0 102 0v-2h2a1 1 0 100-2h-2V7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="plus-sm" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H6a1 1 0 110-2h3V6a1 1 0 011-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="plus" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H6a1 1 0 110-2h3V6a1 1 0 011-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="presentation-chart-bar" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 3a1 1 0 000 2v8a2 2 0 002 2h2.586l-1.293 1.293a1 1 0 101.414 1.414L10 15.414l2.293 2.293a1 1 0 001.414-1.414L12.414 15H15a2 2 0 002-2V5a1 1 0 100-2H3zm11 4a1 1 0 10-2 0v4a1 1 0 102 0V7zm-3 1a1 1 0 10-2 0v3a1 1 0 102 0V8zM8 9a1 1 0 00-2 0v2a1 1 0 102 0V9z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="presentation-chart-line" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 3a1 1 0 000 2v8a2 2 0 002 2h2.586l-1.293 1.293a1 1 0 101.414 1.414L10 15.414l2.293 2.293a1 1 0 001.414-1.414L12.414 15H15a2 2 0 002-2V5a1 1 0 100-2H3zm11.707 4.707a1 1 0 00-1.414-1.414L10 9.586 8.707 8.293a1 1 0 00-1.414 0l-2 2a1 1 0 101.414 1.414L8 10.414l1.293 1.293a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="printer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 4v3H4a2 2 0 00-2 2v3a2 2 0 002 2h1v2a2 2 0 002 2h6a2 2 0 002-2v-2h1a2 2 0 002-2V9a2 2 0 00-2-2h-1V4a2 2 0 00-2-2H7a2 2 0 00-2 2zm8 0H7v3h6V4zm0 8H7v4h6v-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="qrcode" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 4a1 1 0 011-1h3a1 1 0 011 1v3a1 1 0 01-1 1H4a1 1 0 01-1-1V4zm2 2V5h1v1H5zM3 13a1 1 0 011-1h3a1 1 0 011 1v3a1 1 0 01-1 1H4a1 1 0 01-1-1v-3zm2 2v-1h1v1H5zM13 3a1 1 0 00-1 1v3a1 1 0 001 1h3a1 1 0 001-1V4a1 1 0 00-1-1h-3zm1 2v1h1V5h-1z" clip-rule="evenodd"/>
|
||||
<path d="M11 4a1 1 0 10-2 0v1a1 1 0 002 0V4zM10 7a1 1 0 011 1v1h2a1 1 0 110 2h-3a1 1 0 01-1-1V8a1 1 0 011-1zM16 9a1 1 0 100 2 1 1 0 000-2zM9 13a1 1 0 011-1h1a1 1 0 110 2v2a1 1 0 11-2 0v-3zM7 11a1 1 0 100-2H4a1 1 0 100 2h3zM17 13a1 1 0 01-1 1h-2a1 1 0 110-2h2a1 1 0 011 1zM16 17a1 1 0 100-2h-3a1 1 0 100 2h3z"/>
|
||||
</svg>
|
||||
<svg id="puzzle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10 3.5a1.5 1.5 0 013 0V4a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-.5a1.5 1.5 0 000 3h.5a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-.5a1.5 1.5 0 00-3 0v.5a1 1 0 01-1 1H6a1 1 0 01-1-1v-3a1 1 0 00-1-1h-.5a1.5 1.5 0 010-3H4a1 1 0 001-1V6a1 1 0 011-1h3a1 1 0 001-1v-.5z"/>
|
||||
</svg>
|
||||
<svg id="question-mark-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-.867.5 1 1 0 11-1.731-1A3 3 0 0113 8a3.001 3.001 0 01-2 2.83V11a1 1 0 11-2 0v-1a1 1 0 011-1 1 1 0 100-2zm0 8a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="receipt-refund" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 2a2 2 0 00-2 2v14l3.5-2 3.5 2 3.5-2 3.5 2V4a2 2 0 00-2-2H5zm4.707 3.707a1 1 0 00-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L8.414 9H10a3 3 0 013 3v1a1 1 0 102 0v-1a5 5 0 00-5-5H8.414l1.293-1.293z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="receipt-tax" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 2a2 2 0 00-2 2v14l3.5-2 3.5 2 3.5-2 3.5 2V4a2 2 0 00-2-2H5zm2.5 3a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm6.207.293a1 1 0 00-1.414 0l-6 6a1 1 0 101.414 1.414l6-6a1 1 0 000-1.414zM12.5 10a1.5 1.5 0 100 3 1.5 1.5 0 000-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="refresh" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4 2a1 1 0 011 1v2.101a7.002 7.002 0 0111.601 2.566 1 1 0 11-1.885.666A5.002 5.002 0 005.999 7H9a1 1 0 010 2H4a1 1 0 01-1-1V3a1 1 0 011-1zm.008 9.057a1 1 0 011.276.61A5.002 5.002 0 0014.001 13H11a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0v-2.101a7.002 7.002 0 01-11.601-2.566 1 1 0 01.61-1.276z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="reply" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7.707 3.293a1 1 0 010 1.414L5.414 7H11a7 7 0 017 7v2a1 1 0 11-2 0v-2a5 5 0 00-5-5H5.414l2.293 2.293a1 1 0 11-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="rewind" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8.445 14.832A1 1 0 0010 14v-2.798l5.445 3.63A1 1 0 0017 14V6a1 1 0 00-1.555-.832L10 8.798V6a1 1 0 00-1.555-.832l-6 4a1 1 0 000 1.664l6 4z"/>
|
||||
</svg>
|
||||
<svg id="rss" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 3a1 1 0 000 2c5.523 0 10 4.477 10 10a1 1 0 102 0C17 8.373 11.627 3 5 3z"/>
|
||||
<path d="M4 9a1 1 0 011-1 7 7 0 017 7 1 1 0 11-2 0 5 5 0 00-5-5 1 1 0 01-1-1zM3 15a2 2 0 114 0 2 2 0 01-4 0z"/>
|
||||
</svg>
|
||||
<svg id="save-as" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9.707 7.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L13 8.586V5h3a2 2 0 012 2v5a2 2 0 01-2 2H8a2 2 0 01-2-2V7a2 2 0 012-2h3v3.586L9.707 7.293zM11 3a1 1 0 112 0v2h-2V3z"/>
|
||||
<path d="M4 9a2 2 0 00-2 2v5a2 2 0 002 2h8a2 2 0 002-2H4V9z"/>
|
||||
</svg>
|
||||
<svg id="save" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M7.707 10.293a1 1 0 10-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 11.586V6h5a2 2 0 012 2v7a2 2 0 01-2 2H4a2 2 0 01-2-2V8a2 2 0 012-2h5v5.586l-1.293-1.293zM9 4a1 1 0 012 0v2H9V4z"/>
|
||||
</svg>
|
||||
<svg id="scale" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 2a1 1 0 011 1v1.323l3.954 1.582 1.599-.8a1 1 0 01.894 1.79l-1.233.616 1.738 5.42a1 1 0 01-.285 1.05A3.989 3.989 0 0115 15a3.989 3.989 0 01-2.667-1.019 1 1 0 01-.285-1.05l1.715-5.349L11 6.477V16h2a1 1 0 110 2H7a1 1 0 110-2h2V6.477L6.237 7.582l1.715 5.349a1 1 0 01-.285 1.05A3.989 3.989 0 015 15a3.989 3.989 0 01-2.667-1.019 1 1 0 01-.285-1.05l1.738-5.42-1.233-.617a1 1 0 01.894-1.788l1.599.799L9 4.323V3a1 1 0 011-1zm-5 8.274l-.818 2.552c.25.112.526.174.818.174.292 0 .569-.062.818-.174L5 10.274zm10 0l-.818 2.552c.25.112.526.174.818.174.292 0 .569-.062.818-.174L15 10.274z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="scissors" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5.5 2a3.5 3.5 0 101.665 6.58L8.585 10l-1.42 1.42a3.5 3.5 0 101.414 1.414l8.128-8.127a1 1 0 00-1.414-1.414L10 8.586l-1.42-1.42A3.5 3.5 0 005.5 2zM4 5.5a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0zm0 9a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0z" clip-rule="evenodd"/>
|
||||
<path d="M12.828 11.414a1 1 0 00-1.414 1.414l3.879 3.88a1 1 0 001.414-1.415l-3.879-3.879z"/>
|
||||
</svg>
|
||||
<svg id="search-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 9a2 2 0 114 0 2 2 0 01-4 0z"/>
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-13a4 4 0 00-3.446 6.032l-2.261 2.26a1 1 0 101.414 1.415l2.261-2.261A4 4 0 1011 5z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="selector" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="server" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2 5a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2V5zm14 1a1 1 0 11-2 0 1 1 0 012 0zM2 13a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2v-2zm14 1a1 1 0 11-2 0 1 1 0 012 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="share" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M15 8a3 3 0 10-2.977-2.63l-4.94 2.47a3 3 0 100 4.319l4.94 2.47a3 3 0 10.895-1.789l-4.94-2.47a3.027 3.027 0 000-.74l4.94-2.47C13.456 7.68 14.19 8 15 8z"/>
|
||||
</svg>
|
||||
<svg id="shield-check" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2.166 4.999A11.954 11.954 0 0010 1.944 11.954 11.954 0 0017.834 5c.11.65.166 1.32.166 2.001 0 5.225-3.34 9.67-8 11.317C5.34 16.67 2 12.225 2 7c0-.682.057-1.35.166-2.001zm11.541 3.708a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="shield-exclamation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 1.944A11.954 11.954 0 012.166 5C2.056 5.649 2 6.319 2 7c0 5.225 3.34 9.67 8 11.317C14.66 16.67 18 12.225 18 7c0-.682-.057-1.35-.166-2.001A11.954 11.954 0 0110 1.944zM11 14a1 1 0 11-2 0 1 1 0 012 0zm0-7a1 1 0 10-2 0v3a1 1 0 102 0V7z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="shopping-bag" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 2a4 4 0 00-4 4v1H5a1 1 0 00-.994.89l-1 9A1 1 0 004 18h12a1 1 0 00.994-1.11l-1-9A1 1 0 0015 7h-1V6a4 4 0 00-4-4zm2 5V6a2 2 0 10-4 0v1h4zm-6 3a1 1 0 112 0 1 1 0 01-2 0zm7-1a1 1 0 100 2 1 1 0 000-2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="shopping-cart" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M3 1a1 1 0 000 2h1.22l.305 1.222a.997.997 0 00.01.042l1.358 5.43-.893.892C3.74 11.846 4.632 14 6.414 14H15a1 1 0 000-2H6.414l1-1H14a1 1 0 00.894-.553l3-6A1 1 0 0017 3H6.28l-.31-1.243A1 1 0 005 1H3zM16 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 18a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"/>
|
||||
</svg>
|
||||
<svg id="sort-ascending" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M3 3a1 1 0 000 2h11a1 1 0 100-2H3zM3 7a1 1 0 000 2h5a1 1 0 000-2H3zM3 11a1 1 0 100 2h4a1 1 0 100-2H3zM13 16a1 1 0 102 0v-5.586l1.293 1.293a1 1 0 001.414-1.414l-3-3a1 1 0 00-1.414 0l-3 3a1 1 0 101.414 1.414L13 10.414V16z"/>
|
||||
</svg>
|
||||
<svg id="sort-descending" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M3 3a1 1 0 000 2h11a1 1 0 100-2H3zM3 7a1 1 0 000 2h7a1 1 0 100-2H3zM3 11a1 1 0 100 2h4a1 1 0 100-2H3zM15 8a1 1 0 10-2 0v5.586l-1.293-1.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L15 13.586V8z"/>
|
||||
</svg>
|
||||
<svg id="speakerphone" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 3a1 1 0 00-1.447-.894L8.763 6H5a3 3 0 000 6h.28l1.771 5.316A1 1 0 008 18h1a1 1 0 001-1v-4.382l6.553 3.276A1 1 0 0018 15V3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="sparkles" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 2a1 1 0 011 1v1h1a1 1 0 010 2H6v1a1 1 0 01-2 0V6H3a1 1 0 010-2h1V3a1 1 0 011-1zm0 10a1 1 0 011 1v1h1a1 1 0 110 2H6v1a1 1 0 11-2 0v-1H3a1 1 0 110-2h1v-1a1 1 0 011-1zM12 2a1 1 0 01.967.744L14.146 7.2 17.5 9.134a1 1 0 010 1.732l-3.354 1.935-1.18 4.455a1 1 0 01-1.933 0L9.854 12.8 6.5 10.866a1 1 0 010-1.732l3.354-1.935 1.18-4.455A1 1 0 0112 2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="star" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/>
|
||||
</svg>
|
||||
<svg id="status-online" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5.05 3.636a1 1 0 010 1.414 7 7 0 000 9.9 1 1 0 11-1.414 1.414 9 9 0 010-12.728 1 1 0 011.414 0zm9.9 0a1 1 0 011.414 0 9 9 0 010 12.728 1 1 0 11-1.414-1.414 7 7 0 000-9.9 1 1 0 010-1.414zM7.879 6.464a1 1 0 010 1.414 3 3 0 000 4.243 1 1 0 11-1.415 1.414 5 5 0 010-7.07 1 1 0 011.415 0zm4.242 0a1 1 0 011.415 0 5 5 0 010 7.072 1 1 0 01-1.415-1.415 3 3 0 000-4.242 1 1 0 010-1.415zM10 9a1 1 0 011 1v.01a1 1 0 11-2 0V10a1 1 0 011-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="status-offline" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M3.707 2.293a1 1 0 00-1.414 1.414l6.921 6.922c.05.062.105.118.168.167l6.91 6.911a1 1 0 001.415-1.414l-.675-.675a9.001 9.001 0 00-.668-11.982A1 1 0 1014.95 5.05a7.002 7.002 0 01.657 9.143l-1.435-1.435a5.002 5.002 0 00-.636-6.294A1 1 0 0012.12 7.88c.924.923 1.12 2.3.587 3.415l-1.992-1.992a.922.922 0 00-.018-.018l-6.99-6.991zM3.238 8.187a1 1 0 00-1.933-.516c-.8 3-.025 6.336 2.331 8.693a1 1 0 001.414-1.415 6.997 6.997 0 01-1.812-6.762zM7.4 11.5a1 1 0 10-1.73 1c.214.371.48.72.795 1.035a1 1 0 001.414-1.414c-.191-.191-.35-.4-.478-.622z"/>
|
||||
</svg>
|
||||
<svg id="stop" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8 7a1 1 0 00-1 1v4a1 1 0 001 1h4a1 1 0 001-1V8a1 1 0 00-1-1H8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="sun" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="support" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-2 0c0 .993-.241 1.929-.668 2.754l-1.524-1.525a3.997 3.997 0 00.078-2.183l1.562-1.562C15.802 8.249 16 9.1 16 10zm-5.165 3.913l1.58 1.58A5.98 5.98 0 0110 16a5.976 5.976 0 01-2.516-.552l1.562-1.562a4.006 4.006 0 001.789.027zm-4.677-2.796a4.002 4.002 0 01-.041-2.08l-.08.08-1.53-1.533A5.98 5.98 0 004 10c0 .954.223 1.856.619 2.657l1.54-1.54zm1.088-6.45A5.974 5.974 0 0110 4c.954 0 1.856.223 2.657.619l-1.54 1.54a4.002 4.002 0 00-2.346.033L7.246 4.668zM12 10a2 2 0 11-4 0 2 2 0 014 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="switch-vertical" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 12a1 1 0 102 0V6.414l1.293 1.293a1 1 0 001.414-1.414l-3-3a1 1 0 00-1.414 0l-3 3a1 1 0 001.414 1.414L5 6.414V12zM15 8a1 1 0 10-2 0v5.586l-1.293-1.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L15 13.586V8z"/>
|
||||
</svg>
|
||||
<svg id="switch-horizontal" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8 5a1 1 0 100 2h5.586l-1.293 1.293a1 1 0 001.414 1.414l3-3a1 1 0 000-1.414l-3-3a1 1 0 10-1.414 1.414L13.586 5H8zM12 15a1 1 0 100-2H6.414l1.293-1.293a1 1 0 10-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L6.414 15H12z"/>
|
||||
</svg>
|
||||
<svg id="table" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M5 4a3 3 0 00-3 3v6a3 3 0 003 3h10a3 3 0 003-3V7a3 3 0 00-3-3H5zm-1 9v-1h5v2H5a1 1 0 01-1-1zm7 1h4a1 1 0 001-1v-1h-5v2zm0-4h5V8h-5v2zM9 8H4v2h5V8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="tag" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M17.707 9.293a1 1 0 010 1.414l-7 7a1 1 0 01-1.414 0l-7-7A.997.997 0 012 10V5a3 3 0 013-3h5c.256 0 .512.098.707.293l7 7zM5 6a1 1 0 100-2 1 1 0 000 2z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="template" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1v-6zM14 9a1 1 0 00-1 1v6a1 1 0 001 1h2a1 1 0 001-1v-6a1 1 0 00-1-1h-2z"/>
|
||||
</svg>
|
||||
<svg id="terminal" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M2 5a2 2 0 012-2h12a2 2 0 012 2v10a2 2 0 01-2 2H4a2 2 0 01-2-2V5zm3.293 1.293a1 1 0 011.414 0l3 3a1 1 0 010 1.414l-3 3a1 1 0 01-1.414-1.414L7.586 10 5.293 7.707a1 1 0 010-1.414zM11 12a1 1 0 100 2h3a1 1 0 100-2h-3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="thumb-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 10.5a1.5 1.5 0 113 0v6a1.5 1.5 0 01-3 0v-6zM6 10.333v5.43a2 2 0 001.106 1.79l.05.025A4 4 0 008.943 18h5.416a2 2 0 001.962-1.608l1.2-6A2 2 0 0015.56 8H12V4a2 2 0 00-2-2 1 1 0 00-1 1v.667a4 4 0 01-.8 2.4L6.8 7.933a4 4 0 00-.8 2.4z"/>
|
||||
</svg>
|
||||
<svg id="thumb-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M18 9.5a1.5 1.5 0 11-3 0v-6a1.5 1.5 0 013 0v6zM14 9.667v-5.43a2 2 0 00-1.105-1.79l-.05-.025A4 4 0 0011.055 2H5.64a2 2 0 00-1.962 1.608l-1.2 6A2 2 0 004.44 12H8v4a2 2 0 002 2 1 1 0 001-1v-.667a4 4 0 01.8-2.4l1.4-1.866a4 4 0 00.8-2.4z"/>
|
||||
</svg>
|
||||
<svg id="ticket" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 6a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 100 4v2a2 2 0 01-2 2H4a2 2 0 01-2-2v-2a2 2 0 100-4V6z"/>
|
||||
</svg>
|
||||
<svg id="translate" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M7 2a1 1 0 011 1v1h3a1 1 0 110 2H9.578a18.87 18.87 0 01-1.724 4.78c.29.354.596.696.914 1.026a1 1 0 11-1.44 1.389c-.188-.196-.373-.396-.554-.6a19.098 19.098 0 01-3.107 3.567 1 1 0 01-1.334-1.49 17.087 17.087 0 003.13-3.733 18.992 18.992 0 01-1.487-2.494 1 1 0 111.79-.89c.234.47.489.928.764 1.372.417-.934.752-1.913.997-2.927H3a1 1 0 110-2h3V3a1 1 0 011-1zm6 6a1 1 0 01.894.553l2.991 5.982a.869.869 0 01.02.037l.99 1.98a1 1 0 11-1.79.895L15.383 16h-4.764l-.724 1.447a1 1 0 11-1.788-.894l.99-1.98.019-.038 2.99-5.982A1 1 0 0113 8zm-1.382 6h2.764L13 11.236 11.618 14z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="trash" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9 2a1 1 0 00-.894.553L7.382 4H4a1 1 0 000 2v10a2 2 0 002 2h8a2 2 0 002-2V6a1 1 0 100-2h-3.382l-.724-1.447A1 1 0 0011 2H9zM7 8a1 1 0 012 0v6a1 1 0 11-2 0V8zm5-1a1 1 0 00-1 1v6a1 1 0 102 0V8a1 1 0 00-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="trending-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="trending-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="truck" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM15 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z"/>
|
||||
<path d="M3 4a1 1 0 00-1 1v10a1 1 0 001 1h1.05a2.5 2.5 0 014.9 0H10a1 1 0 001-1V5a1 1 0 00-1-1H3zM14 7a1 1 0 00-1 1v6.05A2.5 2.5 0 0115.95 16H17a1 1 0 001-1v-5a1 1 0 00-.293-.707l-2-2A1 1 0 0015 7h-1z"/>
|
||||
</svg>
|
||||
<svg id="upload" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 17a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM6.293 6.707a1 1 0 010-1.414l3-3a1 1 0 011.414 0l3 3a1 1 0 01-1.414 1.414L11 5.414V13a1 1 0 11-2 0V5.414L7.707 6.707a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="user-add" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z"/>
|
||||
</svg>
|
||||
<svg id="user-group" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M13 6a3 3 0 11-6 0 3 3 0 016 0zM18 8a2 2 0 11-4 0 2 2 0 014 0zM14 15a4 4 0 00-8 0v3h8v-3zM6 8a2 2 0 11-4 0 2 2 0 014 0zM16 18v-3a5.972 5.972 0 00-.75-2.906A3.005 3.005 0 0119 15v3h-3zM4.75 12.094A5.973 5.973 0 004 15v3H1v-3a3 3 0 013.75-2.906z"/>
|
||||
</svg>
|
||||
<svg id="user-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-6-3a2 2 0 11-4 0 2 2 0 014 0zm-2 4a5 5 0 00-4.546 2.916A5.986 5.986 0 0010 16a5.986 5.986 0 004.546-2.084A5 5 0 0010 11z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="user-remove" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M11 6a3 3 0 11-6 0 3 3 0 016 0zM14 17a6 6 0 00-12 0h12zM13 8a1 1 0 100 2h4a1 1 0 100-2h-4z"/>
|
||||
</svg>
|
||||
<svg id="user" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="users" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M9 6a3 3 0 11-6 0 3 3 0 016 0zM17 6a3 3 0 11-6 0 3 3 0 016 0zM12.93 17c.046-.327.07-.66.07-1a6.97 6.97 0 00-1.5-4.33A5 5 0 0119 16v1h-6.07zM6 11a5 5 0 015 5v1H1v-1a5 5 0 015-5z"/>
|
||||
</svg>
|
||||
<svg id="variable" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4.649 3.084A1 1 0 015.163 4.4 13.95 13.95 0 004 10c0 1.993.416 3.886 1.164 5.6a1 1 0 01-1.832.8A15.95 15.95 0 012 10c0-2.274.475-4.44 1.332-6.4a1 1 0 011.317-.516zM12.96 7a3 3 0 00-2.342 1.126l-.328.41-.111-.279A2 2 0 008.323 7H8a1 1 0 000 2h.323l.532 1.33-1.035 1.295a1 1 0 01-.781.375H7a1 1 0 100 2h.039a3 3 0 002.342-1.126l.328-.41.111.279A2 2 0 0011.677 14H12a1 1 0 100-2h-.323l-.532-1.33 1.035-1.295A1 1 0 0112.961 9H13a1 1 0 100-2h-.039zm1.874-2.6a1 1 0 011.833-.8A15.95 15.95 0 0118 10c0 2.274-.475 4.44-1.332 6.4a1 1 0 11-1.832-.8A13.949 13.949 0 0016 10c0-1.993-.416-3.886-1.165-5.6z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="video-camera" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 6a2 2 0 012-2h6a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V6zM14.553 7.106A1 1 0 0014 8v4a1 1 0 00.553.894l2 1A1 1 0 0018 13V7a1 1 0 00-1.447-.894l-2 1z"/>
|
||||
</svg>
|
||||
<svg id="view-boards" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M2 4a1 1 0 011-1h2a1 1 0 011 1v12a1 1 0 01-1 1H3a1 1 0 01-1-1V4zM8 4a1 1 0 011-1h2a1 1 0 011 1v12a1 1 0 01-1 1H9a1 1 0 01-1-1V4zM15 3a1 1 0 00-1 1v12a1 1 0 001 1h2a1 1 0 001-1V4a1 1 0 00-1-1h-2z"/>
|
||||
</svg>
|
||||
<svg id="view-grid-add" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 3a2 2 0 00-2 2v2a2 2 0 002 2h2a2 2 0 002-2V5a2 2 0 00-2-2H5zM5 11a2 2 0 00-2 2v2a2 2 0 002 2h2a2 2 0 002-2v-2a2 2 0 00-2-2H5zM11 5a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V5zM14 11a1 1 0 011 1v1h1a1 1 0 110 2h-1v1a1 1 0 11-2 0v-1h-1a1 1 0 110-2h1v-1a1 1 0 011-1z"/>
|
||||
</svg>
|
||||
<svg id="view-grid" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 3a2 2 0 00-2 2v2a2 2 0 002 2h2a2 2 0 002-2V5a2 2 0 00-2-2H5zM5 11a2 2 0 00-2 2v2a2 2 0 002 2h2a2 2 0 002-2v-2a2 2 0 00-2-2H5zM11 5a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V5zM11 13a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z"/>
|
||||
</svg>
|
||||
<svg id="view-list" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M3 4a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm0 4a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm0 4a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm0 4a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="volume-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.383 3.076A1 1 0 0110 4v12a1 1 0 01-1.707.707L4.586 13H2a1 1 0 01-1-1V8a1 1 0 011-1h2.586l3.707-3.707a1 1 0 011.09-.217zM14.657 2.929a1 1 0 011.414 0A9.972 9.972 0 0119 10a9.972 9.972 0 01-2.929 7.071 1 1 0 01-1.414-1.414A7.971 7.971 0 0017 10c0-2.21-.894-4.208-2.343-5.657a1 1 0 010-1.414zm-2.829 2.828a1 1 0 011.415 0A5.983 5.983 0 0115 10a5.984 5.984 0 01-1.757 4.243 1 1 0 01-1.415-1.415A3.984 3.984 0 0013 10a3.983 3.983 0 00-1.172-2.828 1 1 0 010-1.415z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="volume-off" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M9.383 3.076A1 1 0 0110 4v12a1 1 0 01-1.707.707L4.586 13H2a1 1 0 01-1-1V8a1 1 0 011-1h2.586l3.707-3.707a1 1 0 011.09-.217zM12.293 7.293a1 1 0 011.414 0L15 8.586l1.293-1.293a1 1 0 111.414 1.414L16.414 10l1.293 1.293a1 1 0 01-1.414 1.414L15 11.414l-1.293 1.293a1 1 0 01-1.414-1.414L13.586 10l-1.293-1.293a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="x-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="zoom-in" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M5 8a1 1 0 011-1h1V6a1 1 0 012 0v1h1a1 1 0 110 2H9v1a1 1 0 11-2 0V9H6a1 1 0 01-1-1z"/>
|
||||
<path fill-rule="evenodd" d="M2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8zm6-4a4 4 0 100 8 4 4 0 000-8z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="wifi" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M17.778 8.222c-4.296-4.296-11.26-4.296-15.556 0A1 1 0 01.808 6.808c5.076-5.077 13.308-5.077 18.384 0a1 1 0 01-1.414 1.414zM14.95 11.05a7 7 0 00-9.9 0 1 1 0 01-1.414-1.414 9 9 0 0112.728 0 1 1 0 01-1.414 1.414zM12.12 13.88a3 3 0 00-4.242 0 1 1 0 01-1.415-1.415 5 5 0 017.072 0 1 1 0 01-1.415 1.415zM9 16a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="zoom-out" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" clip-rule="evenodd"/>
|
||||
<path fill-rule="evenodd" d="M5 8a1 1 0 011-1h4a1 1 0 110 2H6a1 1 0 01-1-1z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
<svg id="x" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"/>
|
||||
</svg>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 721 KiB |
|
After Width: | Height: | Size: 654 KiB |
|
After Width: | Height: | Size: 909 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 144 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 470 B |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 211 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 406 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 8.9 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 7.4 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 4.7 KiB |