@preact-icons/fa@1.0.12Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
latest
UrielCh/react-icons-faFont Awesome icons for Preact
This package works with Node.js, DenoIt is unknown whether this package works with Cloudflare Workers, Bun, Browsers
JSR Score
100%
Published
3 months ago (1.0.12)
# Font Awesome icons for preact [![JSR](https://jsr.io/badges/@preact-icons/fa)](https://jsr.io/@preact-icons/fa) **License** [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/) **Project** [https://fontawesome.com/](https://fontawesome.com/) [See available icons here](https://react-icons.deno.dev/fa) ## install the module ```bash deno add @preact-icons/fa dnpx jsr add @preact-icons/fa pnpm dlx jsr add @preact-icons/fa bunx jsr add @preact-icons/fa ``` You may need to update your preact mapping to avoid mixing JSR and http import: Currently Deno fresh import preact using https://esm.sh/preact http import can not be mixed with JSR package, so you may need to update your preact mapping: ```json { "preact": "npm:preact@10.22.1", "preact/jsx-runtime": "npm:preact@10.22.1/jsx-runtime", "preact/hooks": "npm:preact@10.22.1/hooks", } ``` ## import an icon from all icons ```ts import { Fa500Px } from "@preact-icons/fa" ``` ## import a single icon, downloading just one icon ```ts import { Fa500Px } from "react-icons/fa/Fa500Px" ``` or using default export ```ts import Fa500Px from "react-icons/fa/Fa500Px.ts" ```