2021-03-03 17:35:03 -05:00
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
2021-03-06 16:53:46 -05:00
|
|
|
@icon_dir "solid/"
|
2021-04-19 15:21:09 -04:00
|
|
|
@default_attrs [xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor"]
|
2021-03-03 17:35:03 -05:00
|
|
|
@before_compile Heroicons
|
|
|
|
end
|