Upgrade version of heroicons

This commit is contained in:
Max Veytsman
2022-12-13 15:47:16 -05:00
parent a1d92e2fbc
commit 3b4aa3b2a6
5 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ This library provides optimized svgs for each Heroicon packaged as a Phoenix Com
Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger) Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger)
Current Heroicons Version: **2.0.12**. Current Heroicons Version: **2.0.13**.
## Installation ## Installation

View File

@ -1,3 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M3 10a.75.75 0 01.75-.75h10.5a.75.75 0 010 1.5H3.75A.75.75 0 013 10z" clip-rule="evenodd"/> <path fill-rule="evenodd" d="M4 10a.75.75 0 01.75-.75h10.5a.75.75 0 010 1.5H4.75A.75.75 0 014 10z" clip-rule="evenodd"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 230 B

After

Width:  |  Height:  |  Size: 230 B

View File

@ -1,6 +1,6 @@
defmodule Heroicons do defmodule Heroicons do
@moduledoc """ @moduledoc """
Provides precompiled icon compiles from [heroicons.com v2.0.12](heroicons.com). Provides precompiled icon compiles from [heroicons.com v2.0.13](heroicons.com).
Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger) Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger)
@ -4652,7 +4652,7 @@ defmodule Heroicons do
solid: solid:
~S|<path fill-rule="evenodd" d="M3.75 12a.75.75 0 01.75-.75h15a.75.75 0 010 1.5h-15a.75.75 0 01-.75-.75z" clip-rule="evenodd"/>|, ~S|<path fill-rule="evenodd" d="M3.75 12a.75.75 0 01.75-.75h15a.75.75 0 010 1.5h-15a.75.75 0 01-.75-.75z" clip-rule="evenodd"/>|,
mini: mini:
~S|<path fill-rule="evenodd" d="M3 10a.75.75 0 01.75-.75h10.5a.75.75 0 010 1.5H3.75A.75.75 0 013 10z" clip-rule="evenodd"/>| ~S|<path fill-rule="evenodd" d="M4 10a.75.75 0 01.75-.75h10.5a.75.75 0 010 1.5H4.75A.75.75 0 014 10z" clip-rule="evenodd"/>|
} }
) )
) )

View File

@ -3,7 +3,7 @@ defmodule Mix.Tasks.Heroicons.Update do
@moduledoc false @moduledoc false
@shortdoc false @shortdoc false
@vsn "2.0.12" @vsn "2.0.13"
@tmp_dir_name "heroicons-elixir" @tmp_dir_name "heroicons-elixir"
# Updates the icons in the assets/icons directory # Updates the icons in the assets/icons directory

View File

@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do
def project do def project do
[ [
app: :heroicons, app: :heroicons,
version: "0.5.1", version: "0.5.2",
elixir: "~> 1.11", elixir: "~> 1.11",
start_permanent: Mix.env() == :prod, start_permanent: Mix.env() == :prod,
deps: deps(), deps: deps(),