License MIT
Project https://octicons.github.com/
deno add @preact-icons/go
dnpx jsr add @preact-icons/go
pnpm dlx jsr add @preact-icons/go
bunx jsr add @preact-icons/go
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 { GoAlert } from "@preact-icons/go"
import { GoAlert } from "react-icons/go/GoAlert"
or using default export
import GoAlert from "react-icons/go/GoAlert"