@amoutonbrady/solid-heroicons v0.8.0
Solid Heroicons
Heroicons intergration for solid-js.
Installation
$ npm install @amoutonbrady/solid-heroicons
$ yarn add @amoutonbrady/solid-heroicons
$ pnpm add @amoutonbrady/solid-heroiconsUsage
You can import every icon from heroicons solid or outline from @amoutonbrady/solid-heroicons/solid and @amoutonbrady/solid-heroicons/outline respectively. They are exported as camel case. Everything exported from those packages are just an object with the SVG path and a metadata to know whether it's been exported from solid or outline.
Those packages are generated automatically from the heroicon repo.
You can import the Icon component helper from @amoutonbrady/solid-heroicons. This is just a SVGElement wrapper that accepts any props a regular SVG would plus a special props path for the icon you want to load in.
By default the stroke | fill attribute of the SVG is set to currentColor which means you can give any color you want to the SVG by setting the css color attribute on SVG or any parent higher.
import { render } from 'solid-js/dom'
import { Icon } from '@amoutonbrady/solid-heroicons';
import { arrowLeft } from '@amoutonbrady/solid-heroicons/solid';
import { arrowRight } from '@amoutonbrady/solid-heroicons/outline';
const App = () => <>
<Icon path={arrowLeft} />
<Icon path={arrowRight} />
</>
render(() => App, document.getElementById('app'))Troubleshoot
- Some icons seems to be broken here's the issue about it
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago