-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4659f3a
commit fce3aff
Showing
41 changed files
with
880 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.ArrowsBoost do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/arrows-boost.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.ArrowsLeftShort do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/arrows-left-short.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.ArrowsRemoveBoost do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/arrows-remove-boost.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.ArrowsRightShort do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/arrows-right-short.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.ControlsExpandAlt do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/controls-expand-alt.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.GenericBetslip do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/generic-betslip.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.GenericLightningBolt do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/generic-lightning-bolt.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.GenericPending do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/generic-pending.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.GenericTrophy do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/generic-trophy.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SecurityBetIncurance do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/security-bet-incurance.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SecurityPassport do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/security-passport.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SecurityPassportAlert do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/security-passport-alert.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SecurityQrCode do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/security-qr-code.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SecuritySecurityAttention do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/security-security-attention.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SoftwareClear do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/software-clear.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SportENBA do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/sport-e-n-b-a.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
defmodule Moon.Icons.SportESoccer do | ||
@moduledoc false | ||
use Moon.StatelessComponent | ||
|
||
prop color, :string, values: Moon.colors() | ||
prop background_color, :string, values: Moon.colors() | ||
prop font_size, :string | ||
prop click, :event | ||
prop class, :string | ||
|
||
def render(assigns) do | ||
~F""" | ||
<svg | ||
class={"moon-icon #{@class} #{@click && "cursor-pointer"}"} | ||
:on-click={@click} | ||
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)} | ||
> | ||
<use href="/moon/assets/svgs/icons_new/sport-e-soccer.svg#item" /> | ||
</svg> | ||
""" | ||
end | ||
end |
Oops, something went wrong.