## Heroicons License
##
## MIT License
## Copyright (c) 2020 Refactoring UI Inc.
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated documentation files (the "Software"), to deal
## in the Software without restriction, including without limitation the rights
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
## copies of the Software, and to permit persons to whom the Software is
## furnished to do so, subject to the following conditions:
## The above copyright notice and this permission notice shall be included in all
## copies or substantial portions of the Software.
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
## SOFTWARE.
defmodule Heroicons.Solid do
@moduledoc """
This module renders Heroicons of `Solid` type.
"""
use Phoenix.Component
alias Heroicons.Helpers.Svg
defp icon(assigns, content) do
rest =
%{"aria-hidden": "true", fill: "currentColor", viewBox: "0 0 24 24"}
|> Map.merge(assigns[:rest] || %{})
assign(assigns, paths: content, rest: rest) |> Svg.icon()
end
@doc "Renders the `academic-cap` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def academic_cap(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `adjustments-horizontal` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def adjustments_horizontal(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `adjustments-vertical` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def adjustments_vertical(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `archive-box-arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def archive_box_arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `archive-box-x-mark` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def archive_box_x_mark(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `archive-box` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def archive_box(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down-on-square-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down_on_square_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down-on-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down_on_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down-tray` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down_tray(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-left-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_left_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-left-on-rectangle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_left_on_rectangle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-long-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_long_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-long-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_long_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-long-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_long_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-long-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_long_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-path-rounded-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_path_rounded_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-path` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_path(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-right-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_right_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-right-on-rectangle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_right_on_rectangle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-small-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_small_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-small-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_small_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-small-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_small_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-small-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_small_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-top-right-on-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_top_right_on_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-trending-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_trending_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-trending-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_trending_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up-on-square-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up_on_square_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up-on-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up_on_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up-tray` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up_tray(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-uturn-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_uturn_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-uturn-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_uturn_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-uturn-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_uturn_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrow-uturn-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrow_uturn_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrows-pointing-in` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrows_pointing_in(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrows-pointing-out` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrows_pointing_out(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrows-right-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrows_right_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `arrows-up-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def arrows_up_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `at-symbol` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def at_symbol(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `backspace` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def backspace(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `backward` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def backward(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `banknotes` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def banknotes(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-2` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_2(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-3-bottom-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_3_bottom_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-3-bottom-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_3_bottom_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-3-center-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_3_center_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-3` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_3(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-4` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_4(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bars-arrow-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bars_arrow_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `battery-0` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def battery_0(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `battery-100` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def battery_100(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `battery-50` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def battery_50(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `beaker` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def beaker(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bell-alert` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bell_alert(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bell-slash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bell_slash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bell-snooze` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bell_snooze(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bell` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bell(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bolt-slash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bolt_slash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bolt` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bolt(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `book-open` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def book_open(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bookmark-slash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bookmark_slash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bookmark-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bookmark_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bookmark` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bookmark(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `briefcase` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def briefcase(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `bug-ant` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def bug_ant(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `building-library` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def building_library(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `building-office-2` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def building_office_2(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `building-office` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def building_office(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `building-storefront` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def building_storefront(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cake` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cake(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `calculator` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def calculator(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `calendar-days` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def calendar_days(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `calendar` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def calendar(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `camera` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def camera(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chart-bar-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chart_bar_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chart-bar` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chart_bar(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chart-pie` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chart_pie(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-bottom-center-text` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_bottom_center_text(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-bottom-center` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_bottom_center(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-left-ellipsis` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_left_ellipsis(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-left-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_left_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-oval-left-ellipsis` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_oval_left_ellipsis(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chat-bubble-oval-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chat_bubble_oval_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `check-badge` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def check_badge(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `check-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def check_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `check` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def check(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-double-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_double_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-double-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_double_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-double-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_double_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-double-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_double_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-up-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_up_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `chevron-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def chevron_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `circle-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def circle_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `clipboard-document-check` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def clipboard_document_check(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `clipboard-document-list` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def clipboard_document_list(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `clipboard-document` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def clipboard_document(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `clipboard` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def clipboard(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `clock` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def clock(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cloud-arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cloud_arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cloud-arrow-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cloud_arrow_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cloud` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cloud(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `code-bracket-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def code_bracket_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `code-bracket` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def code_bracket(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cog-6-tooth` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cog_6_tooth(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cog-8-tooth` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cog_8_tooth(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cog` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cog(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `command-line` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def command_line(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `computer-desktop` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def computer_desktop(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cpu-chip` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cpu_chip(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `credit-card` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def credit_card(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cube-transparent` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cube_transparent(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cube` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cube(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `currency-bangladeshi` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def currency_bangladeshi(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `currency-dollar` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def currency_dollar(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `currency-euro` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def currency_euro(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `currency-pound` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def currency_pound(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `currency-rupee` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def currency_rupee(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `currency-yen` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def currency_yen(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cursor-arrow-rays` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cursor_arrow_rays(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `cursor-arrow-ripple` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def cursor_arrow_ripple(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `device-phone-mobile` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def device_phone_mobile(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `device-tablet` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def device_tablet(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-arrow-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_arrow_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-chart-bar` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_chart_bar(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-check` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_check(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-duplicate` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_duplicate(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-magnifying-glass` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_magnifying_glass(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-minus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_minus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-plus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_plus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document-text` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document_text(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `document` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def document(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `ellipsis-horizontal-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def ellipsis_horizontal_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `ellipsis-horizontal` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def ellipsis_horizontal(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `ellipsis-vertical` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def ellipsis_vertical(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `envelope-open` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def envelope_open(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `envelope` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def envelope(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `exclamation-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def exclamation_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `exclamation-triangle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def exclamation_triangle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `eye-dropper` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def eye_dropper(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `eye-slash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def eye_slash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `eye` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def eye(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `face-frown` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def face_frown(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `face-smile` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def face_smile(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `film` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def film(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `finger-print` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def finger_print(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `fire` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def fire(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `flag` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def flag(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `folder-arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def folder_arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `folder-minus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def folder_minus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `folder-open` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def folder_open(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `folder-plus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def folder_plus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `folder` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def folder(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `forward` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def forward(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `funnel` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def funnel(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `gif` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def gif(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `gift-top` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def gift_top(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `gift` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def gift(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `globe-alt` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def globe_alt(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `globe-americas` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def globe_americas(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `globe-asia-australia` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def globe_asia_australia(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `globe-europe-africa` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def globe_europe_africa(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `hand-raised` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def hand_raised(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `hand-thumb-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def hand_thumb_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `hand-thumb-up` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def hand_thumb_up(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `hashtag` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def hashtag(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `heart` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def heart(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `home-modern` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def home_modern(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `home` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def home(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `identification` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def identification(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `inbox-arrow-down` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def inbox_arrow_down(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `inbox-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def inbox_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `inbox` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def inbox(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `information-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def information_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `key` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def key(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `language` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def language(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `lifebuoy` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def lifebuoy(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `light-bulb` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def light_bulb(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `link` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def link(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `list-bullet` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def list_bullet(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `lock-closed` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def lock_closed(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `lock-open` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def lock_open(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `magnifying-glass-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def magnifying_glass_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `magnifying-glass-minus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def magnifying_glass_minus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `magnifying-glass-plus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def magnifying_glass_plus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `magnifying-glass` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def magnifying_glass(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `map-pin` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def map_pin(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `map` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def map(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `megaphone` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def megaphone(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `microphone` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def microphone(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `minus-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def minus_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `minus-small` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def minus_small(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `minus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def minus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `moon` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def moon(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `musical-note` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def musical_note(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `newspaper` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def newspaper(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `no-symbol` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def no_symbol(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `paint-brush` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def paint_brush(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `paper-airplane` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def paper_airplane(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `paper-clip` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def paper_clip(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `pause-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def pause_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `pause` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def pause(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `pencil-square` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def pencil_square(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `pencil` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def pencil(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `phone-arrow-down-left` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def phone_arrow_down_left(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `phone-arrow-up-right` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def phone_arrow_up_right(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `phone-x-mark` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def phone_x_mark(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `phone` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def phone(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `photo` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def photo(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `play-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def play_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `play-pause` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def play_pause(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `play` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def play(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `plus-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def plus_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `plus-small` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def plus_small(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `plus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def plus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `power` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def power(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `presentation-chart-bar` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def presentation_chart_bar(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `presentation-chart-line` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def presentation_chart_line(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `printer` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def printer(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `puzzle-piece` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def puzzle_piece(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `qr-code` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def qr_code(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `question-mark-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def question_mark_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `queue-list` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def queue_list(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `radio` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def radio(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `receipt-percent` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def receipt_percent(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `receipt-refund` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def receipt_refund(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `rectangle-group` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def rectangle_group(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `rectangle-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def rectangle_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `rocket-launch` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def rocket_launch(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `rss` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def rss(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `scale` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def scale(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `scissors` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def scissors(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `server-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def server_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `server` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def server(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `share` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def share(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `shield-check` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def shield_check(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `shield-exclamation` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def shield_exclamation(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `shopping-bag` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def shopping_bag(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `shopping-cart` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def shopping_cart(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `signal-slash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def signal_slash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `signal` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def signal(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `sparkles` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def sparkles(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `speaker-wave` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def speaker_wave(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `speaker-x-mark` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def speaker_x_mark(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `square-2-stack` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def square_2_stack(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `square-3-stack-3d` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def square_3_stack_3d(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `squares-2x2` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def squares_2x2(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `squares-plus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def squares_plus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `star` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def star(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `stop-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def stop_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `stop` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def stop(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `sun` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def sun(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `swatch` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def swatch(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `table-cells` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def table_cells(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `tag` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def tag(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `ticket` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def ticket(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `trash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def trash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `trophy` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def trophy(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `truck` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def truck(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `tv` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def tv(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `user-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def user_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `user-group` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def user_group(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `user-minus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def user_minus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `user-plus` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def user_plus(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `user` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def user(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `users` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def users(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `variable` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def variable(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `video-camera-slash` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def video_camera_slash(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `video-camera` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def video_camera(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `view-columns` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def view_columns(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `viewfinder-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def viewfinder_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `wallet` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def wallet(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `wifi` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def wifi(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `window` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def window(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `wrench-screwdriver` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def wrench_screwdriver(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `wrench` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def wrench(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `x-circle` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def x_circle(assigns), do:
icon(assigns, ~S||)
@doc "Renders the `x-mark` icon"
attr :rest, :global, doc: "HTML attributes for the svg container"
attr :title, :string
attr :class, :string
def x_mark(assigns), do:
icon(assigns, ~S||)
end