README.md
# Phoenix LiveView Heroicons
A collection of Phoenix LiveView Components for all SVG [Heroicons](https://heroicons.com)
## Installation
```elixir
def deps do
[
{:heroicons_liveview, "~> 0.3.0"}
]
end
```
## Usage
using default classes
```html
<Heroicons.Solid.archive/>
```
specifying classes
```html
<Heroicons.Solid.archive class="h-10 w-10" />
```
using render method
```html
<Heroicons.Solid.render icon: :archive class="h-10 w-10" />
```
## Regenerate icons
clone down the latest `src` folder from the [Heroicons](https://github.com/tailwindlabs/heroicons) github repo
```bash
svn export https://github.com/tailwindlabs/heroicons/trunk/optimized priv/heroicons/src --force;
mix heroicons.generate;
```
## Authors

[Jon Principe](https://github.com/jprincipe)