defmodule Heroicons do @moduledoc """ This library provides Phoenix Components for every [Heroicon](https://github.com/tailwindlabs/heroicons). See `Heroicons.Outline` and `Heroicons.Solid` for the two styles of icon. ## Examples Functions are also provided but deprecated <%= Heroicons.Outline.adjustments() %> <%= Heroicons.Solid.arrow_circle_right(class: "w-6 h-6") /> Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger) """ defmodule Outline do @moduledoc """ Outline style icons drawn with a stroke, packaged as Phoenix Components. For primary navigation and marketing sections, designed to be rendered at 24x24. """ use Heroicons.Generator, icon_dir: "outline/" end defmodule Solid do @moduledoc """ Solid style icons drawn with fills, packaged as Phoenix Components. For buttons, form elements, and to support text, designed to be rendered at 20x20. """ use Heroicons.Generator, icon_dir: "solid/" end end