12 lines
329 B
Elixir
12 lines
329 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_dir "solid/"
|
|
@default_attrs [xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor"]
|
|
@before_compile Heroicons
|
|
end
|