Update for heroicons 2.0. Closes #11

This commit is contained in:
Chris McCord
2022-08-30 09:46:24 -04:00
parent 57f471888f
commit 76bb80684f
1044 changed files with 2625 additions and 1233 deletions

View File

@ -21,7 +21,8 @@ defmodule Heroicons 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.
For primary navigation and marketing sections, with an outlined appearance,
designed to be rendered at 24x24.
"""
use Heroicons.Generator, icon_dir: "outline/"
@ -31,9 +32,21 @@ defmodule Heroicons 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.
For primary navigation and marketing sections, with a filled appearance,
designed to be rendered at 24x24.
"""
use Heroicons.Generator, icon_dir: "solid/"
end
defmodule Mini do
@moduledoc """
Solid style icons drawn with fills, packaged as Phoenix Components.
For smaller elements like buttons, form elements, and to support text,
designed to be rendered at 20x20.
"""
use Heroicons.Generator, icon_dir: "mini/"
end
end