Themify Icons icons for deno / Preact

License MIT

Project https://github.com/lykmapipo/themify-icons

See available icons here

import_map.json

For a transparent usage:

{
  "imports": {
    "preact":  "https://esm.sh/preact@10.15.1",
    "preact/": "https://esm.sh/preact@10.15.1/",
    "react-icons/tfi":  "https://cdn.jsdelivr.net/gh/urielch/react-icons-tfi@1.0.8/mod.ts",
    "react-icons/tfi/": "https://cdn.jsdelivr.net/gh/urielch/react-icons-tfi@1.0.8/ico/",
  }
}

Import an icon without import_map by and afer loading all icons from the lib tfi

import { TfiAgenda } from "https://deno.land/x/react_icons_tfi@1.0.8/mod.ts"

import_map import an icon from all icons

import { TfiAgenda } from "react-icons/tfi"

import a single icon, downloading just one icon

import { TfiAgenda } from "react-icons/tfi/TfiAgenda.ts"

or using default export

import TfiAgenda from "react-icons/tfi/TfiAgenda.ts"