├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── changelog.md ├── esbuild.js ├── license.js ├── package.json ├── src ├── index.ts └── uicons │ ├── css │ ├── all │ │ ├── all.css │ │ ├── all.rounded.css │ │ └── all.straight.css │ ├── bold │ │ ├── all.css │ │ ├── rounded.css │ │ └── straight.css │ ├── brands │ │ └── all.css │ ├── regular │ │ ├── all.css │ │ ├── rounded.css │ │ └── straight.css │ ├── solid │ │ ├── all.css │ │ ├── rounded.css │ │ └── straight.css │ └── thin │ │ ├── rounded.css │ │ └── straight.css │ └── webfonts │ ├── uicons-bold-rounded.eot │ ├── uicons-bold-rounded.woff │ ├── uicons-bold-rounded.woff2 │ ├── uicons-bold-straight.eot │ ├── uicons-bold-straight.woff │ ├── uicons-bold-straight.woff2 │ ├── uicons-brands.eot │ ├── uicons-brands.woff │ ├── uicons-brands.woff2 │ ├── uicons-regular-rounded.eot │ ├── uicons-regular-rounded.woff │ ├── uicons-regular-rounded.woff2 │ ├── uicons-regular-straight.eot │ ├── uicons-regular-straight.woff │ ├── uicons-regular-straight.woff2 │ ├── uicons-solid-rounded.eot │ ├── uicons-solid-rounded.woff │ ├── uicons-solid-rounded.woff2 │ ├── uicons-solid-straight.eot │ ├── uicons-solid-straight.woff │ ├── uicons-solid-straight.woff2 │ ├── uicons-thin-rounded.eot │ ├── uicons-thin-rounded.woff │ ├── uicons-thin-rounded.woff2 │ ├── uicons-thin-straight.eot │ ├── uicons-thin-straight.woff │ └── uicons-thin-straight.woff2 ├── tsconfig.json └── utils └── update-fonts.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | esbuild.js 3 | tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/changelog.md -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/esbuild.js -------------------------------------------------------------------------------- /license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/license.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uicons/css/all/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/all/all.css -------------------------------------------------------------------------------- /src/uicons/css/all/all.rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/all/all.rounded.css -------------------------------------------------------------------------------- /src/uicons/css/all/all.straight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/all/all.straight.css -------------------------------------------------------------------------------- /src/uicons/css/bold/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/bold/all.css -------------------------------------------------------------------------------- /src/uicons/css/bold/rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/bold/rounded.css -------------------------------------------------------------------------------- /src/uicons/css/bold/straight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/bold/straight.css -------------------------------------------------------------------------------- /src/uicons/css/brands/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/brands/all.css -------------------------------------------------------------------------------- /src/uicons/css/regular/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/regular/all.css -------------------------------------------------------------------------------- /src/uicons/css/regular/rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/regular/rounded.css -------------------------------------------------------------------------------- /src/uicons/css/regular/straight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/regular/straight.css -------------------------------------------------------------------------------- /src/uicons/css/solid/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/solid/all.css -------------------------------------------------------------------------------- /src/uicons/css/solid/rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/solid/rounded.css -------------------------------------------------------------------------------- /src/uicons/css/solid/straight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/solid/straight.css -------------------------------------------------------------------------------- /src/uicons/css/thin/rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/thin/rounded.css -------------------------------------------------------------------------------- /src/uicons/css/thin/straight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/css/thin/straight.css -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-bold-rounded.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-bold-rounded.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-bold-rounded.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-bold-rounded.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-bold-rounded.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-bold-rounded.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-bold-straight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-bold-straight.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-bold-straight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-bold-straight.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-bold-straight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-bold-straight.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-brands.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-brands.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-brands.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-brands.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-brands.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-brands.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-regular-rounded.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-regular-rounded.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-regular-rounded.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-regular-rounded.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-regular-rounded.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-regular-rounded.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-regular-straight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-regular-straight.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-regular-straight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-regular-straight.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-regular-straight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-regular-straight.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-solid-rounded.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-solid-rounded.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-solid-rounded.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-solid-rounded.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-solid-rounded.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-solid-rounded.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-solid-straight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-solid-straight.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-solid-straight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-solid-straight.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-solid-straight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-solid-straight.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-thin-rounded.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-thin-rounded.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-thin-rounded.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-thin-rounded.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-thin-rounded.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-thin-rounded.woff2 -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-thin-straight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-thin-straight.eot -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-thin-straight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-thin-straight.woff -------------------------------------------------------------------------------- /src/uicons/webfonts/uicons-thin-straight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/src/uicons/webfonts/uicons-thin-straight.woff2 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/update-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freepik-company/flaticon-uicons/HEAD/utils/update-fonts.js --------------------------------------------------------------------------------