Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@amoutonbrady/solid-heroicons

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@amoutonbrady/solid-heroicons

Heroicons for Solid

latest
Source
npmnpm
Version
0.8.0
Version published
Maintainers
1
Created
Source

Solid Heroicons

Heroicons intergration for solid-js.

Demo

Installation

$ npm install @amoutonbrady/solid-heroicons
$ yarn add @amoutonbrady/solid-heroicons
$ pnpm add @amoutonbrady/solid-heroicons

Usage

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

Keywords

icon

FAQs

Package last updated on 15 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts