initial commit
This commit is contained in:
9
lib/heroicons/outline.ex
Normal file
9
lib/heroicons/outline.ex
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
10
lib/heroicons/solid.ex
Normal file
10
lib/heroicons/solid.ex
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
Reference in New Issue
Block a user