11 lines
261 B
Elixir
11 lines
261 B
Elixir
defmodule Heroicons.Solid do
|
|
@moduledoc """
|
|
Solid style icons drawn with fills.
|
|
|
|
For buttons, form elements, and to support text, designed to be rendered at 20x20.
|
|
"""
|
|
|
|
@icon_path "#{:code.priv_dir(:heroicons)}/solid/"
|
|
@before_compile Heroicons
|
|
end
|