10 lines
267 B
Elixir
10 lines
267 B
Elixir
defmodule Heroicons.Outline do
|
|
@moduledoc """
|
|
Outline style icons drawn with a stroke.
|
|
|
|
For primary navigation and marketing sections, designed to be rendered at 24x24.
|
|
"""
|
|
@icon_path "#{:code.priv_dir(:heroicons)}/outline/"
|
|
@before_compile Heroicons
|
|
end
|