License MIT
Project https://github.com/ant-design/ant-design-icons
deno add @preact-icons/ai
dnpx jsr add @preact-icons/ai
pnpm dlx jsr add @preact-icons/ai
bunx jsr add @preact-icons/ai
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:
{
"preact": "npm:[email protected]",
"preact/jsx-runtime": "npm:[email protected]/jsx-runtime",
"preact/hooks": "npm:[email protected]/hooks",
}
import { AiFillAccountBook } from "@preact-icons/ai"
import { AiFillAccountBook } from "react-icons/ai/AiFillAccountBook"
or using default export
import AiFillAccountBook from "react-icons/ai/AiFillAccountBook"