2021-03-03 17:35:03 -05:00
|
|
|
defmodule Heroicons.Outline do
|
|
|
|
@moduledoc """
|
|
|
|
Outline style icons drawn with a stroke.
|
|
|
|
|
|
|
|
For primary navigation and marketing sections, designed to be rendered at 24x24.
|
|
|
|
"""
|
2021-03-06 16:53:46 -05:00
|
|
|
@icon_dir "outline/"
|
2021-04-19 15:21:09 -04:00
|
|
|
@default_attrs [xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor"]
|
2021-03-03 17:35:03 -05:00
|
|
|
@before_compile Heroicons
|
|
|
|
end
|