This commit is contained in:
Mayel de Borniol 2023-01-05 16:36:11 +13:00
parent b66b3b7b02
commit 612a6a46a8
33 changed files with 34 additions and 680 deletions

View File

@ -19,8 +19,9 @@ Docker*
docker*
.parcel-cache
assets/.parcel-cache
# Makefile
README*
lib/mix/tasks
lib/web
priv/static
node_modules
assets/node_modules

View File

@ -8,7 +8,7 @@ jobs:
docs:
name: Generate docs upon new release
runs-on: ubuntu-latest
container: elixir:1.13-alpine
container: elixir:1.14-alpine
env:
FLAVOUR: classic
FLAVOUR_PATH: flavours/classic

View File

@ -11,7 +11,7 @@ jobs:
test_classic_flavour:
name: Test classic flavour
runs-on: ubuntu-latest
container: elixir:1.13-alpine
container: elixir:1.14-alpine
env:
FLAVOUR: classic
MIX_ENV: test

View File

@ -17,7 +17,7 @@ RUN cd forks/messctl/origin && git checkout 8f53c86687ba2bd262471c6e8d9490ed00bf
RUN cd forks/messctl && cp -r origin/* . && cargo build --release && cargo install --path . --verbose
FROM elixir:1.13-alpine
FROM elixir:1.14-alpine
ENV HOME=/opt/app/ TERM=xterm USER=docker
WORKDIR $HOME

View File

@ -5,7 +5,7 @@
# - .github/workflows/test.yaml or .gitlab-ci.yml
# - Dockerfile.dev
# - .tool-versions
ARG ELIXIR_IMAGE=1.13-alpine
ARG ELIXIR_IMAGE=1.14-alpine
# The version of Alpine to use for the final image
# This should match the version of Alpine that the current elixir & erlang images (in Step 1) use.

View File

@ -19,8 +19,6 @@ import { EmojiHooks } from "./../../../deps/bonfire_ui_common/assets/js/emoji"
// import { EditorQuillHooks } from "./../../../deps/bonfire_editor_quill/assets/js/extension"
import { ComposerHooks } from "./../../../deps/bonfire_ui_common/assets/js/composer"
// import { EditorQuillHooks } from "./../../../deps/bonfire_editor_quill/assets/js/extension"
// import { GeolocateHooks } from "./../../../deps/bonfire_geolocate/assets/js/extension"
// import { KanbanHooks } from "./../../../deps/bonfire_ui_kanban/assets/js/extension"

View File

@ -10,18 +10,24 @@ import { NotificationsHooks } from "./../../../deps/bonfire_ui_common/assets/js/
import { CarouselHooks } from "./../../../deps/bonfire_ui_common/assets/js/carousel"
import { ResponsiveTabsHooks } from "./../../../deps/bonfire_ui_common/assets/js/responsive_tabs"
import { ThemeHooks } from "./../../../deps/bonfire_ui_common/assets/js/theme"
import { PopupHooks } from "./../../../deps/bonfire_ui_common/assets/js/popup"
import { FeedHooks } from "./../../../deps/bonfire_ui_common/assets/js/feed"
import { ImageHooks } from "./../../../deps/bonfire_ui_common/assets/js/image"
import { EmojiHooks } from "./../../../deps/bonfire_ui_common/assets/js/emoji"
// import { EditorCkHooks } from "./../../../deps/bonfire_editor_ck/assets/js/extension"
import { EditorQuillHooks } from "./../../../deps/bonfire_editor_quill/assets/js/extension"
// import { EditorQuillHooks } from "./../../../deps/bonfire_editor_quill/assets/js/extension"
import { ComposerHooks } from "./../../../deps/bonfire_ui_common/assets/js/composer"
import { GeolocateHooks } from "./../../../deps/bonfire_geolocate/assets/js/extension"
import { KanbanHooks } from "./../../../deps/bonfire_ui_kanban/assets/js/extension"
import { EncryptHooks } from "./../../../deps/bonfire_encrypt/assets/js/extension"
import LiveSelect from "./../../../deps/live_select/assets/js/live_select"
// import LiveSelect from "./../../../deps/live_select/assets/js/live_select"
import LiveSelect from "./../../../deps/live_select/priv/static/live_select.min.js"
Object.assign(ExtensionHooks, ResponsiveTabsHooks, EditorQuillHooks, CarouselHooks, FeedHooks, ChangeLocaleHooks, InputSelectHooks, NotificationsHooks, ThemeHooks, ImageHooks, GeolocateHooks, KanbanHooks, EncryptHooks, LiveSelect) // EditorCkHooks
Object.assign(ExtensionHooks, ResponsiveTabsHooks, CarouselHooks, FeedHooks, ChangeLocaleHooks, InputSelectHooks, NotificationsHooks, ThemeHooks, ImageHooks, ComposerHooks, GeolocateHooks, KanbanHooks, EncryptHooks, LiveSelect)
// EditorQuillHooks, EditorCkHooks
export { ExtensionHooks }

View File

@ -55,10 +55,24 @@ if not Code.ensure_loaded?(Mess) do
end
defp deps_packages(packages, extra_deps, opts),
do: Enum.flat_map(packages, &dep_spec(&1, opts)) |> deps_uniq(extra_deps, opts)
do:
(Enum.flat_map(packages, &dep_spec(&1, opts)) ++ extra_deps)
|> deps_uniq(opts)
|> maybe_filter_umbrella(opts)
defp deps_uniq(packages, extra_deps, opts),
do: Enum.uniq_by(packages ++ extra_deps, &elem(&1, 0)) |> maybe_filter_umbrella(opts)
defp deps_uniq(packages, opts),
do:
packages
# |> IO.inspect(label: "non-unique")
|> maybe_filter_invalid_paths(opts)
|> Enum.uniq_by(&elem(&1, 0))
defp maybe_filter_invalid_paths(deps, _opts) do
Enum.reject(deps, fn dep ->
dep_opts = elem(dep, 1)
is_list(dep_opts) and dep_opts[:path] && not File.exists?("#{dep_opts[:path]}/mix.exs")
end)
end
defp maybe_filter_umbrella(deps, opts) do
cond do

1
lib/web/icons Symbolic link
View File

@ -0,0 +1 @@
../../extensions/bonfire/lib/web/icons

View File

@ -1,23 +0,0 @@
defmodule Iconify.AkarIcons.ChatRemove do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2">
<path d="M15 11H9" /><path
stroke-linejoin="round"
d="M14 19c3.771 0 5.657 0 6.828-1.172C22 16.657 22 14.771 22 11c0-3.771 0-5.657-1.172-6.828C19.657 3 17.771 3 14 3h-4C6.229 3 4.343 3 3.172 4.172C2 5.343 2 7.229 2 11c0 3.771 0 5.657 1.172 6.828c.653.654 1.528.943 2.828 1.07"
/><path d="M14 19c-1.236 0-2.598.5-3.841 1.145c-1.998 1.037-2.997 1.556-3.489 1.225c-.492-.33-.399-1.355-.212-3.404L6.5 17.5" />
</g>
</svg>
"""
end
end

View File

@ -1,24 +0,0 @@
defmodule Iconify.Carbon.Help do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 32 32"
aria-hidden="true"
>
<path
fill="currentColor"
d="M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2Zm0 26a12 12 0 1 1 12-12a12 12 0 0 1-12 12Z"
/><circle cx="16" cy="23.5" r="1.5" fill="currentColor" /><path
fill="currentColor"
d="M17 8h-1.5a4.49 4.49 0 0 0-4.5 4.5v.5h2v-.5a2.5 2.5 0 0 1 2.5-2.5H17a2.5 2.5 0 0 1 0 5h-2v4.5h2V17a4.5 4.5 0 0 0 0-9Z"
/>
</svg>
"""
end
end

View File

@ -1,24 +0,0 @@
defmodule Iconify.Carbon.Settings do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 32 32"
aria-hidden="true"
>
<path
fill="currentColor"
d="M27 16.76v-1.53l1.92-1.68A2 2 0 0 0 29.3 11l-2.36-4a2 2 0 0 0-1.73-1a2 2 0 0 0-.64.1l-2.43.82a11.35 11.35 0 0 0-1.31-.75l-.51-2.52a2 2 0 0 0-2-1.61h-4.68a2 2 0 0 0-2 1.61l-.51 2.52a11.48 11.48 0 0 0-1.32.75l-2.38-.86A2 2 0 0 0 6.79 6a2 2 0 0 0-1.73 1L2.7 11a2 2 0 0 0 .41 2.51L5 15.24v1.53l-1.89 1.68A2 2 0 0 0 2.7 21l2.36 4a2 2 0 0 0 1.73 1a2 2 0 0 0 .64-.1l2.43-.82a11.35 11.35 0 0 0 1.31.75l.51 2.52a2 2 0 0 0 2 1.61h4.72a2 2 0 0 0 2-1.61l.51-2.52a11.48 11.48 0 0 0 1.32-.75l2.42.82a2 2 0 0 0 .64.1a2 2 0 0 0 1.73-1l2.28-4a2 2 0 0 0-.41-2.51ZM25.21 24l-3.43-1.16a8.86 8.86 0 0 1-2.71 1.57L18.36 28h-4.72l-.71-3.55a9.36 9.36 0 0 1-2.7-1.57L6.79 24l-2.36-4l2.72-2.4a8.9 8.9 0 0 1 0-3.13L4.43 12l2.36-4l3.43 1.16a8.86 8.86 0 0 1 2.71-1.57L13.64 4h4.72l.71 3.55a9.36 9.36 0 0 1 2.7 1.57L25.21 8l2.36 4l-2.72 2.4a8.9 8.9 0 0 1 0 3.13L27.57 20Z"
/><path
fill="currentColor"
d="M16 22a6 6 0 1 1 6-6a5.94 5.94 0 0 1-6 6Zm0-10a3.91 3.91 0 0 0-4 4a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4a3.91 3.91 0 0 0-4-4Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.Fa6Solid.Shapes do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 512 512"
aria-hidden="true"
>
<path
fill="currentColor"
d="M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2h192c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2l-96-160zM288 312v144c0 22.1 17.9 40 40 40h144c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40zM128 512c70.7 0 128-57.3 128-128s-57.3-128-128-128S0 313.3 0 384s57.3 128 128 128z"
/>
</svg>
"""
end
end

View File

@ -1,25 +0,0 @@
defmodule Iconify.HeroiconsOutline.QuestionMarkCircle do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M8.228 9c.549-1.165 2.03-2 3.772-2c2.21 0 4 1.343 4 3c0 1.4-1.278 2.575-3.006 2.907c-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0Z"
/>
</svg>
"""
end
end

View File

@ -1,23 +0,0 @@
defmodule Iconify.HeroiconsSolid.Check do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 20 20"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 0 1 0 1.414l-8 8a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 1.414-1.414L8 12.586l7.293-7.293a1 1 0 0 1 1.414 0Z"
clip-rule="evenodd"
/>
</svg>
"""
end
end

View File

@ -1,23 +0,0 @@
defmodule Iconify.Heroicons.ArrowLongLeft20Solid do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 20 20"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M18 10a.75.75 0 0 1-.75.75H4.66l2.1 1.95a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 1 1 1.02 1.1l-2.1 1.95h12.59A.75.75 0 0 1 18 10Z"
clip-rule="evenodd"
/>
</svg>
"""
end
end

View File

@ -1,23 +0,0 @@
defmodule Iconify.Heroicons.ArrowLongRight20Solid do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 20 20"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M2 10a.75.75 0 0 1 .75-.75h12.59l-2.1-1.95a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.1-1.95H2.75A.75.75 0 0 1 2 10Z"
clip-rule="evenodd"
/>
</svg>
"""
end
end

View File

@ -1,25 +0,0 @@
defmodule Iconify.Heroicons.QuestionMarkCircle do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.5"
d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0c1.172 1.025 1.172 2.687 0 3.712c-.203.179-.43.326-.67.442c-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.Ic.BaselineRemoveRedEye do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5s5 2.24 5 5s-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3s3-1.34 3-3s-1.34-3-3-3z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.Ic.RoundReply do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M10 9V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29a.996.996 0 0 0 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7V14.9c5 0 8.5 1.6 11 5.1c-1-5-4-10-11-11z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.ArrowRightAltRounded do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M13.3 17.275q-.3-.3-.288-.725q.013-.425.313-.725L16.15 13H5q-.425 0-.713-.288Q4 12.425 4 12t.287-.713Q4.575 11 5 11h11.15L13.3 8.15q-.3-.3-.3-.713q0-.412.3-.712t.713-.3q.412 0 .712.3L19.3 11.3q.15.15.213.325q.062.175.062.375t-.062.375q-.063.175-.213.325l-4.6 4.6q-.275.275-.687.275q-.413 0-.713-.3Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.CancelRounded do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M7.7 16.3q.275.275.7.275q.425 0 .7-.275l2.9-2.9l2.925 2.925q.275.275.688.262q.412-.012.687-.287q.275-.275.275-.7q0-.425-.275-.7L13.4 12l2.925-2.925q.275-.275.262-.688q-.012-.412-.287-.687q-.275-.275-.7-.275q-.425 0-.7.275L12 10.6L9.075 7.675Q8.8 7.4 8.388 7.412q-.413.013-.688.288q-.275.275-.275.7q0 .425.275.7l2.9 2.9l-2.925 2.925q-.275.275-.262.687q.012.413.287.688ZM12 22q-2.075 0-3.9-.788q-1.825-.787-3.175-2.137q-1.35-1.35-2.137-3.175Q2 14.075 2 12t.788-3.9q.787-1.825 2.137-3.175q1.35-1.35 3.175-2.138Q9.925 2 12 2t3.9.787q1.825.788 3.175 2.138q1.35 1.35 2.137 3.175Q22 9.925 22 12t-.788 3.9q-.787 1.825-2.137 3.175q-1.35 1.35-3.175 2.137Q14.075 22 12 22Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.CheckIndeterminateSmallRounded do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M8 13q-.425 0-.713-.288Q7 12.425 7 12t.287-.713Q7.575 11 8 11h8q.425 0 .712.287q.288.288.288.713t-.288.712Q16.425 13 16 13Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.CheckSmallRounded do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="m10 13.6l5.9-5.9q.275-.275.7-.275q.425 0 .7.275q.275.275.275.7q0 .425-.275.7l-6.6 6.6q-.3.3-.7.3q-.4 0-.7-.3l-2.6-2.6q-.275-.275-.275-.7q0-.425.275-.7q.275-.275.7-.275q.425 0 .7.275Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.QuestionMarkRounded do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M12.025 16q-.6 0-1.012-.425q-.413-.425-.363-1q.075-1.05.5-1.825q.425-.775 1.35-1.6q1.025-.9 1.562-1.563q.538-.662.538-1.512q0-1.025-.687-1.7Q13.225 5.7 12 5.7q-.8 0-1.362.337q-.563.338-.913.838q-.35.5-.862.675q-.513.175-.988-.025q-.575-.25-.787-.825q-.213-.575.087-1.075Q7.9 4.5 9.125 3.75T12 3q2.625 0 4.038 1.463q1.412 1.462 1.412 3.512q0 1.25-.537 2.138q-.538.887-1.688 2.012q-.85.8-1.2 1.3t-.475 1.15q-.1.625-.525 1.025q-.425.4-1 .4ZM12 22q-.825 0-1.412-.587Q10 20.825 10 20q0-.825.588-1.413Q11.175 18 12 18t1.413.587Q14 19.175 14 20q0 .825-.587 1.413Q12.825 22 12 22Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.Settings do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="m9.25 22l-.4-3.2q-.325-.125-.612-.3q-.288-.175-.563-.375L4.7 19.375l-2.75-4.75l2.575-1.95Q4.5 12.5 4.5 12.337v-.675q0-.162.025-.337L1.95 9.375l2.75-4.75l2.975 1.25q.275-.2.575-.375q.3-.175.6-.3l.4-3.2h5.5l.4 3.2q.325.125.613.3q.287.175.562.375l2.975-1.25l2.75 4.75l-2.575 1.95q.025.175.025.337v.675q0 .163-.05.338l2.575 1.95l-2.75 4.75l-2.95-1.25q-.275.2-.575.375q-.3.175-.6.3l-.4 3.2Zm2.8-6.5q1.45 0 2.475-1.025Q15.55 13.45 15.55 12q0-1.45-1.025-2.475Q13.5 8.5 12.05 8.5q-1.475 0-2.488 1.025Q8.55 10.55 8.55 12q0 1.45 1.012 2.475Q10.575 15.5 12.05 15.5Z"
/>
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.MaterialSymbols.VpnKeyRounded do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="M7 18q-2.5 0-4.25-1.75T1 12q0-2.5 1.75-4.25T7 6q2.025 0 3.538 1.137Q12.05 8.275 12.65 10H21q.825 0 1.413.587Q23 11.175 23 12q0 .9-.625 1.45Q21.75 14 21 14v2q0 .825-.587 1.413Q19.825 18 19 18q-.825 0-1.413-.587Q17 16.825 17 16v-2h-4.35q-.6 1.725-2.112 2.863Q9.025 18 7 18Zm0-4q.825 0 1.412-.588Q9 12.825 9 12t-.588-1.413Q7.825 10 7 10t-1.412.587Q5 11.175 5 12q0 .825.588 1.412Q6.175 14 7 14Z"
/>
</svg>
"""
end
end

View File

@ -1,18 +0,0 @@
defmodule Iconify.Mdi.ArrowLeft do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path fill="currentColor" d="M20 11v2H8l5.5 5.5l-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5L8 11h12Z" />
</svg>
"""
end
end

View File

@ -1,21 +0,0 @@
defmodule Iconify.Mdi.PencilOutline do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill="currentColor"
d="m14.06 9l.94.94L5.92 19H5v-.92L14.06 9m3.6-6c-.25 0-.51.1-.7.29l-1.83 1.83l3.75 3.75l1.83-1.83c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29m-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75Z"
/>
</svg>
"""
end
end

View File

@ -1,24 +0,0 @@
defmodule Iconify.NotoV1.CheckMark do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 128 128"
aria-hidden="true"
>
<path
fill="#40c0e7"
stroke="#40c0e7"
stroke-miterlimit="10"
stroke-width="6"
d="M48.3 103.45L12.65 67.99a2.2 2.2 0 0 1 0-3.12l9-9.01c.86-.86 2.25-.86 3.11 0l23.47 23.33c.86.86 2.26.85 3.12-.01l51.86-52.36c.86-.87 2.26-.87 3.13-.01l9.01 9.01c.86.86.86 2.25.01 3.11l-56.5 57.01l.01.01l-7.45 7.49c-.86.86-2.26.86-3.12.01z"
/>
</svg>
"""
end
end

View File

@ -1,112 +0,0 @@
defmodule Iconify.Noto.GlobeShowingEuropeAfrica do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 128 128"
aria-hidden="true"
>
<radialGradient
id="notoGlobeShowingEuropeAfrica0"
cx="43.972"
cy="29.066"
r="90.951"
gradientTransform="matrix(.6257 .78 -.5815 .4665 33.359 -18.792)"
gradientUnits="userSpaceOnUse"
>
<stop offset=".506" stop-color="#17A1F3" /><stop offset=".767" stop-color="#1B7FFA" /><stop
offset=".962"
stop-color="#1366F0"
/><stop offset="1" stop-color="#1160EE" />
</radialGradient>
<path
fill="url(#notoGlobeShowingEuropeAfrica0)"
d="M3.14 64.68c.68 24.4 16.99 59.55 61.45 59.1c43.32-.44 60.76-36.3 59.4-62.06c-1.37-25.76-21.66-57.46-61.79-57.23c-40.14.22-59.8 33.96-59.06 60.19z"
/><path
fill="#7ADD8A"
d="M90.52 93.68c-.63-.24-1.1.35-1.75 1.45c-.65 1.1-1.35 2-1.8 2.35s-3.1 1.95-3.3 2.85c-.2.9 0 1.8 0 2.65c0 .85-.15 2.1-.15 2.65c0 .55-.6 1.05.2 1.85s1.4.3 1.95-.45s1.85-3.15 2.15-4.2c.2-.71.6-1.75.8-2.3c.2-.55 1.85-3.2 2.1-4.2c.26-1 .61-2.35-.2-2.65z"
/><path
fill="#BEDC9D"
d="M66.38 40.12c0 .36.26.73.93.73s.95-.42.9-.97c-.04-.51-.56-.67-1.01-.63c-.36.03-.82.3-.82.87z"
/><path
fill="#95DA93"
d="M44.54 32.36c-.46-.02-1.2.41-1.25.82c-.11.98-.42 2.84.32 2.95c.68.1 1.03-1.09 1.14-1.54s.5-2.2-.21-2.23z"
/><path
fill="#7ADD8A"
d="M41.06 16.97c-.89 0-1.48.76-1.62 1.22c-.15.5-.05 1.87-.47 2.05c-.57.24-1.48.06-2.08.25c-.78.25-2.4 1.73-2.36 2.08c.03.32.42 1.02 1.31 1.16c.3.05.61-.05.69-.24c.04-.1.25-.25.42-.19c.24.08.21.56.4.61c.19.05 2.2.08 2.44 0c.24-.08 1.49-.82 1.67-1.59c.19-.77.26-2.41.33-3.75c.07-1.15-.36-1.6-.73-1.6z"
/><path
fill="#FFF"
d="M38.28 9.2s-1.54 1.91-2.5 2.81c-.96.9-2.63 2.2-2.47 2.84c.05.21.61.74 1.33.56c.72-.19 2.02-1.01 3.5-1.54c1.49-.53 2.49-.58 2.79-.72c.29-.13 3.56-1.75 4.83-2.31s6.13-1.96 7.27-2.36s1.99-.77 1.8-1.51c-.19-.74-2.44-.64-3.79-.64s-2.56-.4-2.56-.4s-3.29.76-5.69 1.57c-2.38.81-4.51 1.7-4.51 1.7z"
/><path
fill="#7ADD8A"
d="M69.22 8.02c-.38-.41-.11-.91.53-1.23c.63-.32 2.19-1.39 2.19-1.39s12.49-.18 27.03 10.15C113 25.52 117.63 38.2 117.63 38.2s.41 1.6.12 2.13c-.29.54.04 3.32-.78 7.96c-.82 4.64-1.18 6.06-1.13 8.16s.79 6.14-.79 6.45s-1.99-2.15-2.83-3.99s-2.31-4.14-2.68-4.93s-.63-1.84-.63-1.84s-.94.26-1.68-.21c-.73-.47-4.46-4.77-4.93-5.14s-1.68-.16-2.68.16s-1.36.94-3.62.73s-1.42-1.05-2.62-1.89s-2.26 1.1-3.41 1.1c-1.15 0-1.89-.58-2.68-1.36s-1.73-1.68-2.2-1.84s-1.63.16-1.15 1.31s1.36 1.26 2.15 2.05s.68 1.26 1.1 1.89s2.52 2.05 2.99 1.94c.47-.1 1.36-.63 1.73-1.21s.26-1.21.94-1.31s1.26.89 2.2 1.63s1.99.73 2.26 2.05c.26 1.31-.79 5.35-1.73 6.4s-1.89 1.15-1.89 1.15l-2.1 1.78s0 .94-1.73 1.94s-2.15.94-3.31 1.52s-1.78 1.26-2.68 1.05s-1.52-1.57-1.94-2.94c-.42-1.36-1.36-2.52-2.05-3.2s-1.21-.73-1.89-1.57s-2.1-2.68-2.2-3.04s-.1-.84-.47-1.36s-1.1-.89-1.52-1.21c-.42-.31-.73-.73-.84-1.42s-1.15-1.52-1.68-2.15s-1.15-1.78-1.73-1.36s.1 1.31.79 2.47s1 1.94 1.15 2.73c.16.79-.05 1.31.52 1.68s1.21-.05 1.89 1.57s.42 3.15 1.15 3.78s.89.26 1.52 1.05s.52 1.94 1.26 2.47s2.94 1.47 3.78 2.78s.42 1.89 1.21 2.36s2.31.05 3.88-.47s3.73-2.2 4.62-1.94s.68 3.57-.21 6.09s-1.57 3.31-2.2 4.09s-1.52 2.41-3.36 3.99s-4.3 4.04-4.93 7.24c-.63 3.2.1 8.55 0 9.92s.05 2.2-.68 2.94s-3.73 3.36-4.25 4.3s-.16 2.1-.52 3.41s-2.68 3.41-3.46 3.83s-.58 1.21-2.41 2.78s-2.41 2.1-3.2 2.2s-5.09.31-6.72-.31c-1.63-.63-2.73-1.63-3.2-2.15s-.94-1.1-1.68-1.52c-.73-.42-1.57-1.31-2.15-2.1s-2.15-2.89-3.67-4.56s-2.31-2.47-2.41-4.3s1.57-3.73 1.57-3.73s-.47-3.25-1.84-5.67s-3.2-2.83-4.3-5.3c-1.1-2.47-.58-4.41-.47-5.19s-.21-2.1-1.42-2.52c-1.21-.42-2.15.1-2.83-.26s-1.57-2.26-3.1-2.36s-3.46 1.99-5.14 1.94c-1.68-.05-1.73-1.21-2.94-1.57s-1.63.89-2.62.68c-1-.21-2.41-1.63-3.2-2.89s-1.73-1.99-2.2-2.73s-.63-1.26-.63-1.26s-1.68-.05-2.15-2.68s-.1-3.88.31-5.25c.42-1.36 1.57-5.04 1.68-6.3s-.16-2.15.1-2.83s1.57-1.73 2.15-2.73c.58-1 1.1-2.05 1.63-2.78s1.47-.1 2.73-1.73s1.05-1.89 1.05-1.89s.31-1.73 1.26-2.89s1.94-1.73 2.62-1.84s1.63.21 2.31.21s1.52.16 2.1.05s2.31-1.47 3.57-1.78s2.36-.16 3.36-.37s2.73-.42 3.83.37s1.1 1.36 1 1.73s-.79 1.26-.52 1.63s1.1.68 1.57.84s1.21.21 1.47.37s.89.89 1.94 1.42s2.73 1.42 3.31 1.1s.52-1.73 1.52-2.05c1-.31 2.41.05 3.94.31s7.82 1.73 8.5 1.52s.47-.79 1.26-1s1.57-.16 1.89-.73s.52-3.36.47-4.3s-.05-2.1-.47-2.31s-1.57 1.05-2.62 1.26s-1.42-.16-1.89-.1s-.89.79-1.52.58c-.63-.21-1.78-.84-2.41-1.47c-.63-.63-1-1.73-.68-2.47s1.63-1.15 2.68-1.57c1.05-.42 2.26-.52 2.83-.73s.84-.47 1.57-.47s.94.63 1.36.73s3.2.05 3.67-.05s2.52-1.05 2.47-1.78s-1.52-.1-1.94-.52s-1.99-2.47-3.25-2.52s-2.1.89-3.04.89s-1.42-.73-2.05-.63s-1.68 1.05-2.31 1.68s-1.1 1.21-1.21 1.47s.47 1.42-.26 1.89s-1.73.58-2.1.63s-1.68-.16-1.94.68s-.16 1.78.21 2.36s.52 1.15-.16 1.73s-1.26.73-1.68-.05c-.42-.79-.16-.84-.47-1.31s-1.21-1.94-1.57-3.04s-.63-1.89-1.26-2.62s-1.63-.79-2.31-1.42s-1.31-1.52-1.31-1.52s-.52.94.16 2.57s2.36 2.89 2.47 3.52s-.16 1.68-.63 1.68s-1.05-.52-1.73-1.31s-1.89-1.63-2.52-2.2s-1.36-3.04-1.73-3.1s-1.15 1.42-2.31 1.78s-2.15.42-2.15.42s-.73 1.68-1.73 2.2s-1.52.84-1.99 1.52s-1.1 1.94-1.57 2.41c-.47.47-1.78.84-2.2 1s-1.31.42-1.57.42s-1.68-.94-1.89-1.63c-.21-.68-.63-1.1-.63-1.57s1.21-2.36 1.52-3.25s.52-1.84 1.36-2.52s1.15 0 2.41.05s2.78-.1 2.78-.1s.16-.37.31-.73s.52-.31.42-.58s-1.31-1.05-1.42-1.63c-.1-.58.1-.79.52-1.05s.94-.73.94-.73s.31-.42 1-.68s1.31.42 1.78.26c.47-.16 1.78-.84 2.31-1.47s1.15-1.31 1.68-1.63s1.84-.42 2.31-.73s.47-1.05.89-1.21s1.05-.42 1.78.1s1.05 1.47 1.84 1.57s1.52-.21 1.84-.37s1-1.15 1.89-1.68c.89-.52 1.47-.84 1.94-1.36s.73-1 .73-1s1.36-.16 1.99-.31s2.31-.26 1.99-1.26s-1.52-.42-2.41-.26s-1.68.63-1.89.31s.73-1.42.94-1.78s.73-1 .05-1.42s-1.42.73-1.84 1.26s-1.15 1.42-1.15 1.42s.16.79.16 1.26s-.79 1.1-1.47 1.73s-1.26 1.52-2.1 1.47s-1.21-1.26-1.26-1.42s0-1-.26-1.05s-.84 1.1-1.84.94s-1.15-1.36-.58-2.52s1.68-1.47 2.52-1.89s1.57-.68 2.05-1.05s.63-.68.94-1.05s2.83-2.2 4.35-2.89s2.52-1.15 3.25-1.26c.73-.1 1.63-.16 2.31.31c.68.47 2.52 1.57 2.99 2.05s.84.89 1.84.68s3.67-1.21 3.99-1.52s-.31-1.15-.63-1.21s-1.43.22-1.92-.31z"
/>
<radialGradient
id="notoGlobeShowingEuropeAfrica1"
cx="64.332"
cy="57.234"
r="21.385"
gradientTransform="matrix(.3201 -.9474 3.2189 1.0875 -140.493 55.94)"
gradientUnits="userSpaceOnUse"
>
<stop offset=".118" stop-color="#E3DDA6" /><stop
offset=".907"
stop-color="#E3DDA6"
stop-opacity=".083"
/><stop offset=".978" stop-color="#E3DDA6" stop-opacity="0" />
</radialGradient>
<path
fill="url(#notoGlobeShowingEuropeAfrica1)"
d="M41.23 82.05c.1-.79-.21-2.1-1.42-2.52c-1.21-.42-2.15.1-2.83-.26s-1.57-2.26-3.1-2.36s-3.46 1.99-5.14 1.94c-1.68-.05-1.73-1.21-2.94-1.57s-1.63.89-2.62.68c-1-.21-2.41-1.63-3.2-2.89s-1.73-1.99-2.2-2.73s-.63-1.26-.63-1.26s-1.68-.05-2.15-2.68s-.1-3.88.31-5.25c.42-1.36 1.57-5.04 1.68-6.3s-.16-2.15.1-2.83s1.57-1.73 2.15-2.73c.58-1 1.1-2.05 1.63-2.78s1.47-.1 2.73-1.73s1.05-1.89 1.05-1.89s.31-1.73 1.26-2.89s1.94-1.73 2.62-1.84s1.63.21 2.31.21s1.52.16 2.1.05s2.31-1.47 3.57-1.78s2.36-.16 3.36-.37s2.73-.42 3.83.37s1.1 1.36 1 1.73s-.79 1.26-.52 1.63s1.1.68 1.57.84s1.21.21 1.47.37s.89.89 1.94 1.42s2.73 1.42 3.31 1.1s.52-1.73 1.52-2.05c1-.31 2.41.05 3.94.31s7.82 1.73 8.5 1.52s.47-.79 1.26-1s1.57-.16 1.89-.73s.52-3.36.47-4.3s-.05-2.1-.47-2.31s-1.57 1.05-2.62 1.26s-1.42-.16-1.89-.1s-.89.79-1.52.58c-.63-.21-1.78-.84-2.41-1.47c-.63-.63-1-1.73-.68-2.47s1.63-1.15 2.68-1.57c1.05-.42 2.26-.52 2.83-.73s.84-.47 1.57-.47s.94.63 1.36.73s3.2.05 3.67-.05s2.52-1.05 2.47-1.78s-1.52-.1-1.94-.52s-2-2.38-3.25-2.52c-2.91-.33-6.18-3.87-6.25-8.92c-.07-5.05 2.54-7.7 4.2-8.08c.99-.23 3.67-1.21 3.99-1.52s-.31-1.15-.63-1.21s-1.42.22-1.92-.31c-.38-.41-.11-.91.53-1.23c.63-.32 2.19-1.39 2.19-1.39s12.49-.18 27.03 10.15C113 25.52 117.63 38.2 117.63 38.2s.41 1.6.12 2.13c-.29.54.04 3.32-.78 7.96c-.82 4.64-1.18 6.06-1.13 8.16s.79 6.14-.79 6.45s-1.99-2.15-2.83-3.99s-2.31-4.14-2.68-4.93s-.63-1.84-.63-1.84s-.94.26-1.68-.21c-.73-.47-4.46-4.77-4.93-5.14s-1.68-.16-2.68.16s-1.36.94-3.62.73s-1.42-1.05-2.62-1.89s-2.26 1.1-3.41 1.1c-1.15 0-1.89-.58-2.68-1.36s-1.73-1.68-2.2-1.84s-1.63.16-1.15 1.31s1.36 1.26 2.15 2.05s.68 1.26 1.1 1.89s2.52 2.05 2.99 1.94c.47-.1 1.36-.63 1.73-1.21s.26-1.21.94-1.31s1.26.89 2.2 1.63s1.99.73 2.26 2.05c.26 1.31-.79 5.35-1.73 6.4s-1.89 1.15-1.89 1.15l-2.1 1.78s0 .94-1.73 1.94s-2.15.94-3.31 1.52s-1.78 1.26-2.68 1.05s-1.52-1.57-1.94-2.94c-.42-1.36-1.36-2.52-2.05-3.2s-1.21-.73-1.89-1.57s-2.1-2.68-2.2-3.04s-.1-.84-.47-1.36s-1.1-.89-1.52-1.21c-.42-.31-.73-.73-.84-1.42s-1.15-1.52-1.68-2.15s-1.15-1.78-1.73-1.36s.1 1.31.79 2.47s1 1.94 1.15 2.73c.16.79-.05 1.31.52 1.68s1.21-.05 1.89 1.57s.42 3.15 1.15 3.78s.89.26 1.52 1.05s.52 1.94 1.26 2.47s2.94 1.47 3.78 2.78s.42 1.89 1.21 2.36s2.31.05 3.88-.47s3.73-2.2 4.62-1.94s.68 3.57-.21 6.09s-1.57 3.31-2.2 4.09s-1.52 2.41-3.36 3.99s-4.3 4.04-4.93 7.24c0 0-9.24 6.9-18.84 5.68c-10.11-1.31-20.61-10.75-20.55-11.15z"
/>
<radialGradient
id="notoGlobeShowingEuropeAfrica2"
cx="87.948"
cy="42.632"
r="18.619"
gradientTransform="matrix(-.7604 -.6495 1.1303 -1.3232 106.636 156.165)"
gradientUnits="userSpaceOnUse"
>
<stop offset=".118" stop-color="#E3DDA6" /><stop
offset=".907"
stop-color="#E3DDA6"
stop-opacity=".083"
/><stop offset=".978" stop-color="#E3DDA6" stop-opacity="0" />
</radialGradient>
<path
fill="url(#notoGlobeShowingEuropeAfrica2)"
d="M41.23 82.05c.1-.79-.21-2.1-1.42-2.52c-1.21-.42-2.15.1-2.83-.26s-1.57-2.26-3.1-2.36s-3.46 1.99-5.14 1.94c-1.68-.05-1.73-1.21-2.94-1.57s-1.63.89-2.62.68c-1-.21-2.41-1.63-3.2-2.89s-1.73-1.99-2.2-2.73s-.63-1.26-.63-1.26s-1.68-.05-2.15-2.68s-.1-3.88.31-5.25c.42-1.36 1.57-5.04 1.68-6.3s-.16-2.15.1-2.83s1.57-1.73 2.15-2.73c.58-1 1.1-2.05 1.63-2.78s1.47-.1 2.73-1.73s1.05-1.89 1.05-1.89s.31-1.73 1.26-2.89s1.94-1.73 2.62-1.84s1.63.21 2.31.21s1.52.16 2.1.05s2.31-1.47 3.57-1.78s2.36-.16 3.36-.37s2.73-.42 3.83.37s1.1 1.36 1 1.73s-.79 1.26-.52 1.63s1.1.68 1.57.84s1.21.21 1.47.37s.89.89 1.94 1.42s2.73 1.42 3.31 1.1s.52-1.73 1.52-2.05c1-.31 2.41.05 3.94.31s7.82 1.73 8.5 1.52s.47-.79 1.26-1s1.57-.16 1.89-.73s.52-3.36.47-4.3s-.05-2.1-.47-2.31s-1.57 1.05-2.62 1.26s-1.42-.16-1.89-.1s-.89.79-1.52.58c-.63-.21-1.78-.84-2.41-1.47c-.63-.63-1-1.73-.68-2.47s1.63-1.15 2.68-1.57c1.05-.42 2.26-.52 2.83-.73s.84-.47 1.57-.47s.94.63 1.36.73s3.2.05 3.67-.05s2.52-1.05 2.47-1.78s-1.52-.1-1.94-.52s-2-2.38-3.25-2.52c-2.91-.33-6.18-3.87-6.25-8.92c-.07-5.05 2.54-7.7 4.2-8.08c.99-.23 3.67-1.21 3.99-1.52s-.31-1.15-.63-1.21s-1.42.22-1.92-.31c-.38-.41-.11-.91.53-1.23c.63-.32 2.19-1.39 2.19-1.39s12.49-.18 27.03 10.15C113 25.52 117.63 38.2 117.63 38.2s.41 1.6.12 2.13c-.29.54.04 3.32-.78 7.96c-.82 4.64-1.18 6.06-1.13 8.16s.79 6.14-.79 6.45s-1.99-2.15-2.83-3.99s-2.31-4.14-2.68-4.93s-.63-1.84-.63-1.84s-.94.26-1.68-.21c-.73-.47-4.46-4.77-4.93-5.14s-1.68-.16-2.68.16s-1.36.94-3.62.73s-1.42-1.05-2.62-1.89s-2.26 1.1-3.41 1.1c-1.15 0-1.89-.58-2.68-1.36s-1.73-1.68-2.2-1.84s-1.63.16-1.15 1.31s1.36 1.26 2.15 2.05s.68 1.26 1.1 1.89s2.52 2.05 2.99 1.94c.47-.1 1.36-.63 1.73-1.21s.26-1.21.94-1.31s1.26.89 2.2 1.63s1.99.73 2.26 2.05c.26 1.31-.79 5.35-1.73 6.4s-1.89 1.15-1.89 1.15l-2.1 1.78s0 .94-1.73 1.94s-2.15.94-3.31 1.52s-1.78 1.26-2.68 1.05s-1.52-1.57-1.94-2.94c-.42-1.36-1.36-2.52-2.05-3.2s-1.21-.73-1.89-1.57s-2.1-2.68-2.2-3.04s-.1-.84-.47-1.36s-1.1-.89-1.52-1.21c-.42-.31-.73-.73-.84-1.42s-1.15-1.52-1.68-2.15s-1.15-1.78-1.73-1.36s.1 1.31.79 2.47s1 1.94 1.15 2.73c.16.79-.05 1.31.52 1.68s1.21-.05 1.89 1.57s.42 3.15 1.15 3.78s.89.26 1.52 1.05s.52 1.94 1.26 2.47s2.94 1.47 3.78 2.78s.42 1.89 1.21 2.36s2.31.05 3.88-.47s3.73-2.2 4.62-1.94s.68 3.57-.21 6.09s-1.57 3.31-2.2 4.09s-1.52 2.41-3.36 3.99s-4.3 4.04-4.93 7.24c0 0-9.24 6.9-18.84 5.68c-10.11-1.31-20.61-10.75-20.55-11.15z"
/>
<radialGradient
id="notoGlobeShowingEuropeAfrica3"
cx="61.288"
cy="118.76"
r="17.892"
gradientTransform="matrix(.2128 -.9771 1.9056 .4151 -178.069 129.348)"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#E3DDA6" /><stop
offset=".818"
stop-color="#E3DDA6"
stop-opacity="0"
/>
</radialGradient>
<path
fill="url(#notoGlobeShowingEuropeAfrica3)"
d="M59.38 116.57c-1.67-.52-2.73-1.63-3.2-2.15s-.94-1.1-1.68-1.52c-.73-.42-1.57-1.31-2.15-2.1s-2.15-2.89-3.67-4.56s-2.31-2.47-2.41-4.3s1.57-3.73 1.57-3.73s-.47-3.25-1.84-5.67s-3.2-2.83-4.3-5.3c0 0 9.75-.92 17.91.92s21.02 9.26 21.02 9.26c-.1 1.36.05 2.2-.68 2.94s-3.73 3.36-4.25 4.3s-.16 2.1-.52 3.41s-2.68 3.41-3.46 3.83s-.58 1.21-2.41 2.78s-2.42 2.07-3.2 2.2c-.62.11-4.98.24-6.73-.31z"
/><path
fill="#4B9CED"
d="M79.53 25.46c-.78-.08-2.09 1.49-2.13 2.2s.19 1.68.49 1.94s2.09 1.16 2.5 1.75s.6 2.61 1.38 3.58s1.72 1.98 3.77 1.94s1.75-1.11 1.75-1.57c0-.78-2.43-3.43-3.4-4.37c-.97-.93-2.61-1.68-2.91-2.39s.26-1.23.04-1.79c-.22-.55-.74-1.22-1.49-1.29z"
/><path
fill="#4186F1"
d="M72.46 83.86c-.3-.39-1.65-.45-2.1-.16s-1.13 2.42-.94 2.78c.19.36 1.49.26 1.94.1s1.42-2.3 1.1-2.72z"
/>
</svg>
"""
end
end

View File

@ -1,69 +0,0 @@
defmodule Iconify.Noto.HouseWithGarden do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 128 128"
aria-hidden="true"
>
<path
fill="#B7D118"
d="M4 112.82c-.11 5.96 4.12 10.3 15.07 10.73s85.2.33 91.49.22c6.29-.11 13.55-2.06 13.66-10.52c.11-8.46-11.38-10.41-11.38-10.41s-92.36.11-96.15.33S4.13 105.34 4 112.82z"
/><path
fill="#5A9821"
d="M94.47 106.4s23.83.16 24.98-.08c1.15-.25 2.07-1.66 2.23-3.06c-.08-5.03-5.86-5.35-5.86-5.35s.96-3.19-1.68-5.83c-3.46-3.79-8.55-2.25-8.55-2.25s-.82-2.72-3.22-4.21c-2.39-1.48-7.67-1.07-7.67-1.07l-.23 21.85zM25.86 91.98s-3.07-1.41-5.57-.39c-3.79 1.55-3.63 4.17-4.64 5.18c-1 1-6.44.64-7.89 5.33c-.62 2.01-.08 3.87 1.62 3.87s14.3-.39 14.3-.39l2.18-13.6z"
/><path
fill="#875B50"
d="M23.7 89.2s.08 6.03 0 7.27c-.08 1.24-1.08 5.49-1.86 7.03c-.77 1.55-.93 2.94.15 3.17s8.19 0 8.19 0L29.03 89.2H23.7z"
/><path
fill="#B7D118"
d="M28.72 90.72c-9.12.31-19.01-5.82-23.35-22.68s.33-36.73 5.68-45.25s10.02-12.48 15.7-12.32c6.97.21 14.25 9.88 17.36 17.99c3.02 7.86 2.93 14.43 2.93 14.43L31.51 89.04l-2.79 1.68z"
/><path fill="#FFF3E1" d="m64.81 40.09l-36.63 36.8l.29 29.18l27.22 4.3l45.12-3.37l.11-33.05z" /><path
fill="#5F4E47"
d="m26.81 104.94l2.53-1.4V76.08l-2.35 1.57s.26 27.29-.18 27.29zm72.73-27.38v25.81l2.53 1.4V78.52z"
/><path fill="#BCAA93" d="M65.06 44.02L26.99 79.65v-8.98l38.11-36.1l36.97 38.28v7.59z" /><path
fill="#AB5832"
d="m23.25 69.12l-2.23 4.12l5.99-.09s37.35-36.33 38.16-36.37c.97-.04 36.88 37 36.88 37l5.31-.08l-39.84-42.92l-5.85-.38l-38.42 38.72z"
/><path
fill="#ED6C31"
d="M16.36 72.22c-.62.76-.01 1.17.5 1.17s6.36-.17 6.36-.17l40.33-39.24s.93-.95 1.59-.92c.72.04 1.65.94 1.65.94l40.52 39.72s4.62.01 5.36-.17c.8-.2.39-.95-.59-2.01c-.72-.78-41.7-41.31-42.37-42.01c-2.01-2.08-3-3.29-4.9-3.21c-1.91.08-3.04 1.49-4.95 3.25c-.57.54-43.23 42.32-43.5 42.65z"
/><path
fill="#A6CFD5"
d="M88.5 86.44h8.26v-6.88c0-1.28-1.04-2.31-2.31-2.31H88.5v9.19zm-2.49 0v-9.19h-6.45c-1.28 0-2.31 1.04-2.31 2.31v6.88h8.76zm0 2.6h-8.76v6.45c0 1.28 1.04 2.31 2.31 2.31h6.45v-8.76zm2.49 0v8.76h5.95c1.28 0 2.31-1.04 2.31-2.31v-6.45H88.5zm-45.74-2.6h8.26v-6.88c0-1.28-1.04-2.31-2.31-2.31h-5.95v9.19zm-2.49 0v-9.19h-6.45c-1.28 0-2.31 1.04-2.31 2.31v6.88h8.76zm0 2.6h-8.76v6.45c0 1.28 1.04 2.31 2.31 2.31h6.45v-8.76zm2.49 0v8.76h5.95c1.28 0 2.31-1.04 2.31-2.31v-6.45h-8.26z"
/><path
fill="#D27857"
d="M53.71 107.31s-.12-19.94 0-24.97c.12-5.03 4.85-9.38 10.31-9.19c6.77.23 10.25 4.04 10.5 8.95c.25 4.91.25 25.53.25 25.53l-21.06-.32z"
/><path
fill="#AB5932"
d="M56.24 108.39s-.1-21.25 0-25.18c.12-4.88 3.8-7.44 8.07-7.19c4.97.28 7.43 2.93 7.62 6.77c.19 3.84.19 25.62.19 25.62l-15.88-.02z"
/><path
fill="#D27857"
d="M69.55 91.07c-.02-3.5-.05-6.58-.1-7.53c-.13-2.54-1.93-4.52-5.44-4.64c-2.83-.1-5.16 2.11-5.23 4.72c-.02.96-.02 3.98 0 7.4l10.77.05zm-10.73 3.92c.03 4.68.07 8.99.07 8.99l10.69.03s0-4.29-.02-8.98l-10.74-.04z"
/><path
fill="#FFBA02"
d="M69.59 92.87c-.04 1.13.42 2.06 1.76 2.06s1.84-.63 1.93-1.85c.08-1.09-.67-2.06-1.93-1.97c-1.26.08-1.73.96-1.76 1.76z"
/><path
fill="#728037"
d="M76.93 113.92s8.69.04 15.03.06c6.51.01 10.34-.15 11.51-.79c.88-.48 1.13-8.58-2.84-10.82c-3.92-2.21-6.74-.61-8.12-.47c-1.83.18-2.71-1.13-5.81-1.21c-6.91-.18-8.97 5.55-8.97 5.55l-.8 7.68zm-50.81-.48c.81.77 5.77.49 12.53.44s12.27-.01 12.27-.01l2.67-6.53l-2.74-1.19s-.09-3.64-4.4-4.8c-2.98-.8-5.58.52-8.08.57c-2.51.05-3.77-.99-6.56-.33c-2.6.62-5.1 2.42-5.92 5.84c-.57 2.37-.43 5.39.23 6.01z"
/><path
fill="#B0B0B0"
d="m50.28 120.83l.05-6.96h.51l-.01-7.75h26.98l-.09 7.75h.6v6.78c0-.01-28.04.22-28.04.18z"
/><path
fill="#9B9B9B"
d="M78.33 117.79v2.85l-28.06.19l.03-3.07zm-27.5-6.94l26.95.02v2.99l-26.95.01z"
/><path
fill="#FDB900"
d="M80.2 108.04c.04.83.6 1.62 1.76 1.62c1.16 0 1.71-.92 1.76-1.66c.05-.74-.51-1.85-1.8-1.8c-1.3.04-1.77.91-1.72 1.84zm6.1-3.41c-.08.79.69 1.89 1.8 1.76s1.66-.92 1.57-1.85c-.09-.92-1.02-1.39-1.76-1.39c-.73 0-1.52.6-1.61 1.48zm9.84 4.42c.06 1.06.55 1.76 1.76 1.76c1.2 0 1.71-.87 1.71-1.66c0-1.16-.6-1.85-1.8-1.85s-1.71.88-1.67 1.75z"
/><path
fill="#FEB800"
d="M30.11 108.36c-1.11.09-1.66.97-1.62 1.76c.05.79.6 1.71 1.62 1.62c1.02-.09 1.71-.69 1.66-1.62c-.03-.7-.51-1.85-1.66-1.76zm7.76-4.9c-.9 0-1.62.92-1.62 1.52s.46 1.71 1.62 1.66s1.52-.88 1.57-1.71s-.83-1.47-1.57-1.47zm2.08 5.83c-.08.78.42 1.94 1.66 1.89c1.25-.05 1.66-1.06 1.62-1.85c-.05-.79-.83-1.48-1.62-1.52c-.78-.05-1.57.55-1.66 1.48zm4.81-2.78c.04.65.42 1.57 1.52 1.43c1.11-.14 1.24-.79 1.2-1.48c-.05-.83-.65-1.25-1.39-1.25s-1.38.61-1.33 1.3z"
/>
</svg>
"""
end
end

View File

@ -1,22 +0,0 @@
defmodule Iconify.Octicon.X16 do
use Phoenix.Component
def render(assigns) do
~H"""
<svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
role="img"
class={@class}
viewBox="0 0 16 16"
aria-hidden="true"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.75.75 0 1 1 1.06 1.06L9.06 8l3.22 3.22a.75.75 0 1 1-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 0 1-1.06-1.06L6.94 8L3.72 4.78a.75.75 0 0 1 0-1.06z"
/>
</svg>
"""
end
end