defmodule TablerIcons do @moduledoc """ Provides precompiled icon compiles from [tabler-icons.io v2.30.0](https://tabler-icons.io). Tabler icons are maintained by [Paweł Kuna](https://twitter.com/codecalm). For all contributors see https://github.com/tabler/tabler-icons/graphs/contributors. Each icon is designed on a 24x24 grid and a 2px stroke. ## Usage You may pass arbitrary HTML attributes to the component. """ use Phoenix.Component @default_html_attrs %{ width: "24", height: "24", viewBox: "0 0 24 24", "stroke-width": "2", stroke: "currentColor", fill: "none", "stroke-linecap": "round", "stroke-linejoin": "round" } @doc """ Renders an icon dynamically. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs attr :name, :atom, required: true, doc: "the name of the icon to be rendered" def icon(assigns) do apply(TablerIcons, assigns.name, [assigns]) end @doc """ Renders the `one_two_three` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def one_two_three(assigns) do ~H""" """ end @doc """ Renders the `twenty_four_hours` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def twenty_four_hours(assigns) do ~H""" """ end @doc """ Renders the `two_fa` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def two_fa(assigns) do ~H""" """ end @doc """ Renders the `three_sixty_view` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def three_sixty_view(assigns) do ~H""" """ end @doc """ Renders the `three_sixty` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def three_sixty(assigns) do ~H""" """ end @doc """ Renders the `three_d_cube_sphere_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def three_d_cube_sphere_off(assigns) do ~H""" """ end @doc """ Renders the `three_d_cube_sphere` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def three_d_cube_sphere(assigns) do ~H""" """ end @doc """ Renders the `three_d_rotate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def three_d_rotate(assigns) do ~H""" """ end @doc """ Renders the `a_b_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def a_b_2(assigns) do ~H""" """ end @doc """ Renders the `a_b_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def a_b_off(assigns) do ~H""" """ end @doc """ Renders the `a_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def a_b(assigns) do ~H""" """ end @doc """ Renders the `abacus_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def abacus_off(assigns) do ~H""" """ end @doc """ Renders the `abacus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def abacus(assigns) do ~H""" """ end @doc """ Renders the `abc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def abc(assigns) do ~H""" """ end @doc """ Renders the `access_point_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def access_point_off(assigns) do ~H""" """ end @doc """ Renders the `access_point` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def access_point(assigns) do ~H""" """ end @doc """ Renders the `accessible_off_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def accessible_off_filled(assigns) do ~H""" """ end @doc """ Renders the `accessible_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def accessible_off(assigns) do ~H""" """ end @doc """ Renders the `accessible` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def accessible(assigns) do ~H""" """ end @doc """ Renders the `activity_heartbeat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def activity_heartbeat(assigns) do ~H""" """ end @doc """ Renders the `activity` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def activity(assigns) do ~H""" """ end @doc """ Renders the `ad_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad_2(assigns) do ~H""" """ end @doc """ Renders the `ad_circle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad_circle_filled(assigns) do ~H""" """ end @doc """ Renders the `ad_circle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad_circle_off(assigns) do ~H""" """ end @doc """ Renders the `ad_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad_circle(assigns) do ~H""" """ end @doc """ Renders the `ad_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad_filled(assigns) do ~H""" """ end @doc """ Renders the `ad_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad_off(assigns) do ~H""" """ end @doc """ Renders the `ad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ad(assigns) do ~H""" """ end @doc """ Renders the `address_book_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def address_book_off(assigns) do ~H""" """ end @doc """ Renders the `address_book` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def address_book(assigns) do ~H""" """ end @doc """ Renders the `adjustments_alt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_alt(assigns) do ~H""" """ end @doc """ Renders the `adjustments_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_bolt(assigns) do ~H""" """ end @doc """ Renders the `adjustments_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_cancel(assigns) do ~H""" """ end @doc """ Renders the `adjustments_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_check(assigns) do ~H""" """ end @doc """ Renders the `adjustments_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_code(assigns) do ~H""" """ end @doc """ Renders the `adjustments_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_cog(assigns) do ~H""" """ end @doc """ Renders the `adjustments_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_dollar(assigns) do ~H""" """ end @doc """ Renders the `adjustments_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_down(assigns) do ~H""" """ end @doc """ Renders the `adjustments_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_exclamation(assigns) do ~H""" """ end @doc """ Renders the `adjustments_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_filled(assigns) do ~H""" """ end @doc """ Renders the `adjustments_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_heart(assigns) do ~H""" """ end @doc """ Renders the `adjustments_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_horizontal(assigns) do ~H""" """ end @doc """ Renders the `adjustments_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_minus(assigns) do ~H""" """ end @doc """ Renders the `adjustments_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_off(assigns) do ~H""" """ end @doc """ Renders the `adjustments_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_pause(assigns) do ~H""" """ end @doc """ Renders the `adjustments_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_pin(assigns) do ~H""" """ end @doc """ Renders the `adjustments_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_plus(assigns) do ~H""" """ end @doc """ Renders the `adjustments_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_question(assigns) do ~H""" """ end @doc """ Renders the `adjustments_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_search(assigns) do ~H""" """ end @doc """ Renders the `adjustments_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_share(assigns) do ~H""" """ end @doc """ Renders the `adjustments_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_star(assigns) do ~H""" """ end @doc """ Renders the `adjustments_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_up(assigns) do ~H""" """ end @doc """ Renders the `adjustments_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments_x(assigns) do ~H""" """ end @doc """ Renders the `adjustments` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def adjustments(assigns) do ~H""" """ end @doc """ Renders the `aerial_lift` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def aerial_lift(assigns) do ~H""" """ end @doc """ Renders the `affiliate_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def affiliate_filled(assigns) do ~H""" """ end @doc """ Renders the `affiliate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def affiliate(assigns) do ~H""" """ end @doc """ Renders the `air_balloon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def air_balloon(assigns) do ~H""" """ end @doc """ Renders the `air_conditioning_disabled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def air_conditioning_disabled(assigns) do ~H""" """ end @doc """ Renders the `air_conditioning` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def air_conditioning(assigns) do ~H""" """ end @doc """ Renders the `air_traffic_control` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def air_traffic_control(assigns) do ~H""" """ end @doc """ Renders the `alarm_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_filled(assigns) do ~H""" """ end @doc """ Renders the `alarm_minus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_minus_filled(assigns) do ~H""" """ end @doc """ Renders the `alarm_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_minus(assigns) do ~H""" """ end @doc """ Renders the `alarm_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_off(assigns) do ~H""" """ end @doc """ Renders the `alarm_plus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_plus_filled(assigns) do ~H""" """ end @doc """ Renders the `alarm_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_plus(assigns) do ~H""" """ end @doc """ Renders the `alarm_snooze_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_snooze_filled(assigns) do ~H""" """ end @doc """ Renders the `alarm_snooze` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm_snooze(assigns) do ~H""" """ end @doc """ Renders the `alarm` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alarm(assigns) do ~H""" """ end @doc """ Renders the `album_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def album_off(assigns) do ~H""" """ end @doc """ Renders the `album` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def album(assigns) do ~H""" """ end @doc """ Renders the `alert_circle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_circle_filled(assigns) do ~H""" """ end @doc """ Renders the `alert_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_circle(assigns) do ~H""" """ end @doc """ Renders the `alert_hexagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_hexagon_filled(assigns) do ~H""" """ end @doc """ Renders the `alert_hexagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_hexagon(assigns) do ~H""" """ end @doc """ Renders the `alert_octagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_octagon_filled(assigns) do ~H""" """ end @doc """ Renders the `alert_octagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_octagon(assigns) do ~H""" """ end @doc """ Renders the `alert_small` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_small(assigns) do ~H""" """ end @doc """ Renders the `alert_square_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_square_filled(assigns) do ~H""" """ end @doc """ Renders the `alert_square_rounded_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_square_rounded_filled(assigns) do ~H""" """ end @doc """ Renders the `alert_square_rounded` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_square_rounded(assigns) do ~H""" """ end @doc """ Renders the `alert_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_square(assigns) do ~H""" """ end @doc """ Renders the `alert_triangle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_triangle_filled(assigns) do ~H""" """ end @doc """ Renders the `alert_triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alert_triangle(assigns) do ~H""" """ end @doc """ Renders the `alien_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alien_filled(assigns) do ~H""" """ end @doc """ Renders the `alien` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alien(assigns) do ~H""" """ end @doc """ Renders the `align_box_bottom_center_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_bottom_center_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_bottom_center` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_bottom_center(assigns) do ~H""" """ end @doc """ Renders the `align_box_bottom_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_bottom_left_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_bottom_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_bottom_left(assigns) do ~H""" """ end @doc """ Renders the `align_box_bottom_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_bottom_right_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_bottom_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_bottom_right(assigns) do ~H""" """ end @doc """ Renders the `align_box_center_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_center_bottom(assigns) do ~H""" """ end @doc """ Renders the `align_box_center_middle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_center_middle_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_center_middle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_center_middle(assigns) do ~H""" """ end @doc """ Renders the `align_box_center_stretch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_center_stretch(assigns) do ~H""" """ end @doc """ Renders the `align_box_center_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_center_top(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_bottom_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_bottom_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_bottom(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_middle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_middle_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_middle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_middle(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_stretch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_stretch(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_top_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_top_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_left_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_left_top(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_bottom_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_bottom_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_bottom(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_middle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_middle_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_middle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_middle(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_stretch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_stretch(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_top_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_top_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_right_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_right_top(assigns) do ~H""" """ end @doc """ Renders the `align_box_top_center_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_top_center_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_top_center` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_top_center(assigns) do ~H""" """ end @doc """ Renders the `align_box_top_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_top_left_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_top_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_top_left(assigns) do ~H""" """ end @doc """ Renders the `align_box_top_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_top_right_filled(assigns) do ~H""" """ end @doc """ Renders the `align_box_top_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_box_top_right(assigns) do ~H""" """ end @doc """ Renders the `align_center` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_center(assigns) do ~H""" """ end @doc """ Renders the `align_justified` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_justified(assigns) do ~H""" """ end @doc """ Renders the `align_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_left(assigns) do ~H""" """ end @doc """ Renders the `align_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def align_right(assigns) do ~H""" """ end @doc """ Renders the `alpha` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alpha(assigns) do ~H""" """ end @doc """ Renders the `alphabet_cyrillic` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alphabet_cyrillic(assigns) do ~H""" """ end @doc """ Renders the `alphabet_greek` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alphabet_greek(assigns) do ~H""" """ end @doc """ Renders the `alphabet_latin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def alphabet_latin(assigns) do ~H""" """ end @doc """ Renders the `ambulance` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ambulance(assigns) do ~H""" """ end @doc """ Renders the `ampersand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ampersand(assigns) do ~H""" """ end @doc """ Renders the `analyze_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def analyze_filled(assigns) do ~H""" """ end @doc """ Renders the `analyze_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def analyze_off(assigns) do ~H""" """ end @doc """ Renders the `analyze` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def analyze(assigns) do ~H""" """ end @doc """ Renders the `anchor_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def anchor_off(assigns) do ~H""" """ end @doc """ Renders the `anchor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def anchor(assigns) do ~H""" """ end @doc """ Renders the `angle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def angle(assigns) do ~H""" """ end @doc """ Renders the `ankh` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ankh(assigns) do ~H""" """ end @doc """ Renders the `antenna_bars_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_bars_1(assigns) do ~H""" """ end @doc """ Renders the `antenna_bars_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_bars_2(assigns) do ~H""" """ end @doc """ Renders the `antenna_bars_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_bars_3(assigns) do ~H""" """ end @doc """ Renders the `antenna_bars_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_bars_4(assigns) do ~H""" """ end @doc """ Renders the `antenna_bars_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_bars_5(assigns) do ~H""" """ end @doc """ Renders the `antenna_bars_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_bars_off(assigns) do ~H""" """ end @doc """ Renders the `antenna_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna_off(assigns) do ~H""" """ end @doc """ Renders the `antenna` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def antenna(assigns) do ~H""" """ end @doc """ Renders the `aperture_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def aperture_off(assigns) do ~H""" """ end @doc """ Renders the `aperture` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def aperture(assigns) do ~H""" """ end @doc """ Renders the `api_app_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def api_app_off(assigns) do ~H""" """ end @doc """ Renders the `api_app` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def api_app(assigns) do ~H""" """ end @doc """ Renders the `api_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def api_off(assigns) do ~H""" """ end @doc """ Renders the `api` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def api(assigns) do ~H""" """ end @doc """ Renders the `app_window_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def app_window_filled(assigns) do ~H""" """ end @doc """ Renders the `app_window` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def app_window(assigns) do ~H""" """ end @doc """ Renders the `apple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def apple(assigns) do ~H""" """ end @doc """ Renders the `apps_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def apps_filled(assigns) do ~H""" """ end @doc """ Renders the `apps_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def apps_off(assigns) do ~H""" """ end @doc """ Renders the `apps` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def apps(assigns) do ~H""" """ end @doc """ Renders the `archive_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def archive_filled(assigns) do ~H""" """ end @doc """ Renders the `archive_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def archive_off(assigns) do ~H""" """ end @doc """ Renders the `archive` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def archive(assigns) do ~H""" """ end @doc """ Renders the `armchair_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def armchair_2_off(assigns) do ~H""" """ end @doc """ Renders the `armchair_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def armchair_2(assigns) do ~H""" """ end @doc """ Renders the `armchair_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def armchair_off(assigns) do ~H""" """ end @doc """ Renders the `armchair` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def armchair(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_content_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_content_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_content` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_content(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_height` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_height(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_autofit_width` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_autofit_width(assigns) do ~H""" """ end @doc """ Renders the `arrow_back_up_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_back_up_double(assigns) do ~H""" """ end @doc """ Renders the `arrow_back_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_back_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_back` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_back(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_down_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_left_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_right_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_up_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_badge_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_badge_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_both` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_both(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_to_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_to_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_to_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_to_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_to_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_to_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_to_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_to_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_bar_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bar_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_bear_left_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bear_left_2(assigns) do ~H""" """ end @doc """ Renders the `arrow_bear_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bear_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_bear_right_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bear_right_2(assigns) do ~H""" """ end @doc """ Renders the `arrow_bear_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bear_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_down_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_down_line_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_down_line_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_down_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_down_line(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_down_lines_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_down_lines_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_down_lines` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_down_lines(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_left_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_left_line_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_left_line_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_left_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_left_line(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_left_lines_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_left_lines_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_left_lines` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_left_lines(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_right_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_right_line_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_right_line_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_right_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_right_line(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_right_lines_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_right_lines_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_right_lines` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_right_lines(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_up_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_up_line_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_up_line_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_up_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_up_line(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_up_lines_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_up_lines_filled(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_up_lines` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_up_lines(assigns) do ~H""" """ end @doc """ Renders the `arrow_big_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_big_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_bounce` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_bounce(assigns) do ~H""" """ end @doc """ Renders the `arrow_capsule` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_capsule(assigns) do ~H""" """ end @doc """ Renders the `arrow_curve_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_curve_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_curve_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_curve_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_bar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_bar(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_left_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_left_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_rhombus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_rhombus(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_right_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_right_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_square(assigns) do ~H""" """ end @doc """ Renders the `arrow_down_tail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down_tail(assigns) do ~H""" """ end @doc """ Renders the `arrow_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_elbow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_elbow_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_elbow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_elbow_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_fork` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_fork(assigns) do ~H""" """ end @doc """ Renders the `arrow_forward_up_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_forward_up_double(assigns) do ~H""" """ end @doc """ Renders the `arrow_forward_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_forward_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_forward` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_forward(assigns) do ~H""" """ end @doc """ Renders the `arrow_guide` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_guide(assigns) do ~H""" """ end @doc """ Renders the `arrow_iteration` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_iteration(assigns) do ~H""" """ end @doc """ Renders the `arrow_left_bar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left_bar(assigns) do ~H""" """ end @doc """ Renders the `arrow_left_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_left_rhombus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left_rhombus(assigns) do ~H""" """ end @doc """ Renders the `arrow_left_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_left_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left_square(assigns) do ~H""" """ end @doc """ Renders the `arrow_left_tail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left_tail(assigns) do ~H""" """ end @doc """ Renders the `arrow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_loop_left_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_loop_left_2(assigns) do ~H""" """ end @doc """ Renders the `arrow_loop_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_loop_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_loop_right_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_loop_right_2(assigns) do ~H""" """ end @doc """ Renders the `arrow_loop_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_loop_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_merge_both` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_merge_both(assigns) do ~H""" """ end @doc """ Renders the `arrow_merge_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_merge_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_merge_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_merge_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_merge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_merge(assigns) do ~H""" """ end @doc """ Renders the `arrow_move_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_move_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_move_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_move_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_move_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_move_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_move_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_move_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_narrow_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_narrow_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_narrow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_narrow_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_narrow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_narrow_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_narrow_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_narrow_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_ramp_left_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_ramp_left_2(assigns) do ~H""" """ end @doc """ Renders the `arrow_ramp_left_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_ramp_left_3(assigns) do ~H""" """ end @doc """ Renders the `arrow_ramp_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_ramp_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_ramp_right_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_ramp_right_2(assigns) do ~H""" """ end @doc """ Renders the `arrow_ramp_right_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_ramp_right_3(assigns) do ~H""" """ end @doc """ Renders the `arrow_ramp_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_ramp_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_right_bar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_right_bar(assigns) do ~H""" """ end @doc """ Renders the `arrow_right_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_right_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_right_rhombus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_right_rhombus(assigns) do ~H""" """ end @doc """ Renders the `arrow_right_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_right_square(assigns) do ~H""" """ end @doc """ Renders the `arrow_right_tail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_right_tail(assigns) do ~H""" """ end @doc """ Renders the `arrow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_first_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_first_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_first_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_first_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_last_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_last_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_last_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_last_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_rotary_straight` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_rotary_straight(assigns) do ~H""" """ end @doc """ Renders the `arrow_roundabout_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_roundabout_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_roundabout_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_roundabout_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_sharp_turn_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_sharp_turn_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_sharp_turn_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_sharp_turn_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_bar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_bar(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_left_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_left_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_left(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_rhombus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_rhombus(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_right_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_right_circle(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_right(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_square(assigns) do ~H""" """ end @doc """ Renders the `arrow_up_tail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up_tail(assigns) do ~H""" """ end @doc """ Renders the `arrow_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_wave_left_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_wave_left_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_wave_left_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_wave_left_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_wave_right_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_wave_right_down(assigns) do ~H""" """ end @doc """ Renders the `arrow_wave_right_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_wave_right_up(assigns) do ~H""" """ end @doc """ Renders the `arrow_zig_zag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrow_zig_zag(assigns) do ~H""" """ end @doc """ Renders the `arrows_cross` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_cross(assigns) do ~H""" """ end @doc """ Renders the `arrows_diagonal_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_diagonal_2(assigns) do ~H""" """ end @doc """ Renders the `arrows_diagonal_minimize_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_diagonal_minimize_2(assigns) do ~H""" """ end @doc """ Renders the `arrows_diagonal_minimize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_diagonal_minimize(assigns) do ~H""" """ end @doc """ Renders the `arrows_diagonal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_diagonal(assigns) do ~H""" """ end @doc """ Renders the `arrows_diff` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_diff(assigns) do ~H""" """ end @doc """ Renders the `arrows_double_ne_sw` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_double_ne_sw(assigns) do ~H""" """ end @doc """ Renders the `arrows_double_nw_se` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_double_nw_se(assigns) do ~H""" """ end @doc """ Renders the `arrows_double_se_nw` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_double_se_nw(assigns) do ~H""" """ end @doc """ Renders the `arrows_double_sw_ne` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_double_sw_ne(assigns) do ~H""" """ end @doc """ Renders the `arrows_down_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_down_up(assigns) do ~H""" """ end @doc """ Renders the `arrows_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_down(assigns) do ~H""" """ end @doc """ Renders the `arrows_exchange_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_exchange_2(assigns) do ~H""" """ end @doc """ Renders the `arrows_exchange` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_exchange(assigns) do ~H""" """ end @doc """ Renders the `arrows_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_horizontal(assigns) do ~H""" """ end @doc """ Renders the `arrows_join_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_join_2(assigns) do ~H""" """ end @doc """ Renders the `arrows_join` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_join(assigns) do ~H""" """ end @doc """ Renders the `arrows_left_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_left_down(assigns) do ~H""" """ end @doc """ Renders the `arrows_left_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_left_right(assigns) do ~H""" """ end @doc """ Renders the `arrows_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_left(assigns) do ~H""" """ end @doc """ Renders the `arrows_maximize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_maximize(assigns) do ~H""" """ end @doc """ Renders the `arrows_minimize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_minimize(assigns) do ~H""" """ end @doc """ Renders the `arrows_move_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_move_horizontal(assigns) do ~H""" """ end @doc """ Renders the `arrows_move_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_move_vertical(assigns) do ~H""" """ end @doc """ Renders the `arrows_move` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_move(assigns) do ~H""" """ end @doc """ Renders the `arrows_random` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_random(assigns) do ~H""" """ end @doc """ Renders the `arrows_right_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_right_down(assigns) do ~H""" """ end @doc """ Renders the `arrows_right_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_right_left(assigns) do ~H""" """ end @doc """ Renders the `arrows_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_right(assigns) do ~H""" """ end @doc """ Renders the `arrows_shuffle_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_shuffle_2(assigns) do ~H""" """ end @doc """ Renders the `arrows_shuffle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_shuffle(assigns) do ~H""" """ end @doc """ Renders the `arrows_sort` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_sort(assigns) do ~H""" """ end @doc """ Renders the `arrows_split_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_split_2(assigns) do ~H""" """ end @doc """ Renders the `arrows_split` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_split(assigns) do ~H""" """ end @doc """ Renders the `arrows_transfer_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_transfer_down(assigns) do ~H""" """ end @doc """ Renders the `arrows_transfer_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_transfer_up(assigns) do ~H""" """ end @doc """ Renders the `arrows_up_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_up_down(assigns) do ~H""" """ end @doc """ Renders the `arrows_up_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_up_left(assigns) do ~H""" """ end @doc """ Renders the `arrows_up_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_up_right(assigns) do ~H""" """ end @doc """ Renders the `arrows_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_up(assigns) do ~H""" """ end @doc """ Renders the `arrows_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def arrows_vertical(assigns) do ~H""" """ end @doc """ Renders the `artboard_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def artboard_filled(assigns) do ~H""" """ end @doc """ Renders the `artboard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def artboard_off(assigns) do ~H""" """ end @doc """ Renders the `artboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def artboard(assigns) do ~H""" """ end @doc """ Renders the `article_filled_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def article_filled_filled(assigns) do ~H""" """ end @doc """ Renders the `article_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def article_off(assigns) do ~H""" """ end @doc """ Renders the `article` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def article(assigns) do ~H""" """ end @doc """ Renders the `aspect_ratio_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def aspect_ratio_filled(assigns) do ~H""" """ end @doc """ Renders the `aspect_ratio_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def aspect_ratio_off(assigns) do ~H""" """ end @doc """ Renders the `aspect_ratio` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def aspect_ratio(assigns) do ~H""" """ end @doc """ Renders the `assembly_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def assembly_off(assigns) do ~H""" """ end @doc """ Renders the `assembly` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def assembly(assigns) do ~H""" """ end @doc """ Renders the `asset` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def asset(assigns) do ~H""" """ end @doc """ Renders the `asterisk_simple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def asterisk_simple(assigns) do ~H""" """ end @doc """ Renders the `asterisk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def asterisk(assigns) do ~H""" """ end @doc """ Renders the `at_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def at_off(assigns) do ~H""" """ end @doc """ Renders the `at` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def at(assigns) do ~H""" """ end @doc """ Renders the `atom_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def atom_2_filled(assigns) do ~H""" """ end @doc """ Renders the `atom_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def atom_2(assigns) do ~H""" """ end @doc """ Renders the `atom_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def atom_off(assigns) do ~H""" """ end @doc """ Renders the `atom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def atom(assigns) do ~H""" """ end @doc """ Renders the `augmented_reality_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def augmented_reality_2(assigns) do ~H""" """ end @doc """ Renders the `augmented_reality_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def augmented_reality_off(assigns) do ~H""" """ end @doc """ Renders the `augmented_reality` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def augmented_reality(assigns) do ~H""" """ end @doc """ Renders the `award_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def award_filled(assigns) do ~H""" """ end @doc """ Renders the `award_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def award_off(assigns) do ~H""" """ end @doc """ Renders the `award` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def award(assigns) do ~H""" """ end @doc """ Renders the `axe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def axe(assigns) do ~H""" """ end @doc """ Renders the `axis_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def axis_x(assigns) do ~H""" """ end @doc """ Renders the `axis_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def axis_y(assigns) do ~H""" """ end @doc """ Renders the `baby_bottle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baby_bottle(assigns) do ~H""" """ end @doc """ Renders the `baby_carriage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baby_carriage(assigns) do ~H""" """ end @doc """ Renders the `backhoe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def backhoe(assigns) do ~H""" """ end @doc """ Renders the `backpack_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def backpack_off(assigns) do ~H""" """ end @doc """ Renders the `backpack` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def backpack(assigns) do ~H""" """ end @doc """ Renders the `backslash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def backslash(assigns) do ~H""" """ end @doc """ Renders the `backspace_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def backspace_filled(assigns) do ~H""" """ end @doc """ Renders the `backspace` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def backspace(assigns) do ~H""" """ end @doc """ Renders the `badge_3d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_3d(assigns) do ~H""" """ end @doc """ Renders the `badge_4k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_4k(assigns) do ~H""" """ end @doc """ Renders the `badge_8k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_8k(assigns) do ~H""" """ end @doc """ Renders the `badge_ad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_ad(assigns) do ~H""" """ end @doc """ Renders the `badge_ar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_ar(assigns) do ~H""" """ end @doc """ Renders the `badge_cc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_cc(assigns) do ~H""" """ end @doc """ Renders the `badge_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_filled(assigns) do ~H""" """ end @doc """ Renders the `badge_hd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_hd(assigns) do ~H""" """ end @doc """ Renders the `badge_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_off(assigns) do ~H""" """ end @doc """ Renders the `badge_sd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_sd(assigns) do ~H""" """ end @doc """ Renders the `badge_tm` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_tm(assigns) do ~H""" """ end @doc """ Renders the `badge_vo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_vo(assigns) do ~H""" """ end @doc """ Renders the `badge_vr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_vr(assigns) do ~H""" """ end @doc """ Renders the `badge_wc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge_wc(assigns) do ~H""" """ end @doc """ Renders the `badge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badge(assigns) do ~H""" """ end @doc """ Renders the `badges_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badges_filled(assigns) do ~H""" """ end @doc """ Renders the `badges_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badges_off(assigns) do ~H""" """ end @doc """ Renders the `badges` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def badges(assigns) do ~H""" """ end @doc """ Renders the `baguette` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baguette(assigns) do ~H""" """ end @doc """ Renders the `ball_american_football_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_american_football_off(assigns) do ~H""" """ end @doc """ Renders the `ball_american_football` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_american_football(assigns) do ~H""" """ end @doc """ Renders the `ball_baseball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_baseball(assigns) do ~H""" """ end @doc """ Renders the `ball_basketball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_basketball(assigns) do ~H""" """ end @doc """ Renders the `ball_bowling` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_bowling(assigns) do ~H""" """ end @doc """ Renders the `ball_football_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_football_off(assigns) do ~H""" """ end @doc """ Renders the `ball_football` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_football(assigns) do ~H""" """ end @doc """ Renders the `ball_tennis` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_tennis(assigns) do ~H""" """ end @doc """ Renders the `ball_volleyball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ball_volleyball(assigns) do ~H""" """ end @doc """ Renders the `balloon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def balloon_filled(assigns) do ~H""" """ end @doc """ Renders the `balloon_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def balloon_off(assigns) do ~H""" """ end @doc """ Renders the `balloon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def balloon(assigns) do ~H""" """ end @doc """ Renders the `ballpen_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ballpen_filled(assigns) do ~H""" """ end @doc """ Renders the `ballpen_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ballpen_off(assigns) do ~H""" """ end @doc """ Renders the `ballpen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ballpen(assigns) do ~H""" """ end @doc """ Renders the `ban` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ban(assigns) do ~H""" """ end @doc """ Renders the `bandage_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bandage_filled(assigns) do ~H""" """ end @doc """ Renders the `bandage_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bandage_off(assigns) do ~H""" """ end @doc """ Renders the `bandage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bandage(assigns) do ~H""" """ end @doc """ Renders the `barbell_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barbell_off(assigns) do ~H""" """ end @doc """ Renders the `barbell` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barbell(assigns) do ~H""" """ end @doc """ Renders the `barcode_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barcode_off(assigns) do ~H""" """ end @doc """ Renders the `barcode` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barcode(assigns) do ~H""" """ end @doc """ Renders the `barrel_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barrel_off(assigns) do ~H""" """ end @doc """ Renders the `barrel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barrel(assigns) do ~H""" """ end @doc """ Renders the `barrier_block_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barrier_block_off(assigns) do ~H""" """ end @doc """ Renders the `barrier_block` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def barrier_block(assigns) do ~H""" """ end @doc """ Renders the `baseline_density_large` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baseline_density_large(assigns) do ~H""" """ end @doc """ Renders the `baseline_density_medium` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baseline_density_medium(assigns) do ~H""" """ end @doc """ Renders the `baseline_density_small` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baseline_density_small(assigns) do ~H""" """ end @doc """ Renders the `baseline` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def baseline(assigns) do ~H""" """ end @doc """ Renders the `basket_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_bolt(assigns) do ~H""" """ end @doc """ Renders the `basket_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_cancel(assigns) do ~H""" """ end @doc """ Renders the `basket_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_check(assigns) do ~H""" """ end @doc """ Renders the `basket_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_code(assigns) do ~H""" """ end @doc """ Renders the `basket_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_cog(assigns) do ~H""" """ end @doc """ Renders the `basket_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_discount(assigns) do ~H""" """ end @doc """ Renders the `basket_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_dollar(assigns) do ~H""" """ end @doc """ Renders the `basket_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_down(assigns) do ~H""" """ end @doc """ Renders the `basket_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_exclamation(assigns) do ~H""" """ end @doc """ Renders the `basket_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_filled(assigns) do ~H""" """ end @doc """ Renders the `basket_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_heart(assigns) do ~H""" """ end @doc """ Renders the `basket_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_minus(assigns) do ~H""" """ end @doc """ Renders the `basket_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_off(assigns) do ~H""" """ end @doc """ Renders the `basket_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_pause(assigns) do ~H""" """ end @doc """ Renders the `basket_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_pin(assigns) do ~H""" """ end @doc """ Renders the `basket_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_plus(assigns) do ~H""" """ end @doc """ Renders the `basket_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_question(assigns) do ~H""" """ end @doc """ Renders the `basket_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_search(assigns) do ~H""" """ end @doc """ Renders the `basket_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_share(assigns) do ~H""" """ end @doc """ Renders the `basket_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_star(assigns) do ~H""" """ end @doc """ Renders the `basket_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_up(assigns) do ~H""" """ end @doc """ Renders the `basket_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket_x(assigns) do ~H""" """ end @doc """ Renders the `basket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def basket(assigns) do ~H""" """ end @doc """ Renders the `bat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bat(assigns) do ~H""" """ end @doc """ Renders the `bath_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bath_filled(assigns) do ~H""" """ end @doc """ Renders the `bath_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bath_off(assigns) do ~H""" """ end @doc """ Renders the `bath` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bath(assigns) do ~H""" """ end @doc """ Renders the `battery_1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_1_filled(assigns) do ~H""" """ end @doc """ Renders the `battery_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_1(assigns) do ~H""" """ end @doc """ Renders the `battery_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_2_filled(assigns) do ~H""" """ end @doc """ Renders the `battery_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_2(assigns) do ~H""" """ end @doc """ Renders the `battery_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_3_filled(assigns) do ~H""" """ end @doc """ Renders the `battery_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_3(assigns) do ~H""" """ end @doc """ Renders the `battery_4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_4_filled(assigns) do ~H""" """ end @doc """ Renders the `battery_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_4(assigns) do ~H""" """ end @doc """ Renders the `battery_automotive` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_automotive(assigns) do ~H""" """ end @doc """ Renders the `battery_charging_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_charging_2(assigns) do ~H""" """ end @doc """ Renders the `battery_charging` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_charging(assigns) do ~H""" """ end @doc """ Renders the `battery_eco` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_eco(assigns) do ~H""" """ end @doc """ Renders the `battery_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_filled(assigns) do ~H""" """ end @doc """ Renders the `battery_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery_off(assigns) do ~H""" """ end @doc """ Renders the `battery` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def battery(assigns) do ~H""" """ end @doc """ Renders the `beach_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def beach_off(assigns) do ~H""" """ end @doc """ Renders the `beach` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def beach(assigns) do ~H""" """ end @doc """ Renders the `bed_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bed_filled(assigns) do ~H""" """ end @doc """ Renders the `bed_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bed_off(assigns) do ~H""" """ end @doc """ Renders the `bed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bed(assigns) do ~H""" """ end @doc """ Renders the `beer_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def beer_filled(assigns) do ~H""" """ end @doc """ Renders the `beer_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def beer_off(assigns) do ~H""" """ end @doc """ Renders the `beer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def beer(assigns) do ~H""" """ end @doc """ Renders the `bell_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_bolt(assigns) do ~H""" """ end @doc """ Renders the `bell_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_cancel(assigns) do ~H""" """ end @doc """ Renders the `bell_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_check(assigns) do ~H""" """ end @doc """ Renders the `bell_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_code(assigns) do ~H""" """ end @doc """ Renders the `bell_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_cog(assigns) do ~H""" """ end @doc """ Renders the `bell_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_dollar(assigns) do ~H""" """ end @doc """ Renders the `bell_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_down(assigns) do ~H""" """ end @doc """ Renders the `bell_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_exclamation(assigns) do ~H""" """ end @doc """ Renders the `bell_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_heart(assigns) do ~H""" """ end @doc """ Renders the `bell_minus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_minus_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_minus(assigns) do ~H""" """ end @doc """ Renders the `bell_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_off(assigns) do ~H""" """ end @doc """ Renders the `bell_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_pause(assigns) do ~H""" """ end @doc """ Renders the `bell_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_pin(assigns) do ~H""" """ end @doc """ Renders the `bell_plus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_plus_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_plus(assigns) do ~H""" """ end @doc """ Renders the `bell_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_question(assigns) do ~H""" """ end @doc """ Renders the `bell_ringing_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_ringing_2_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_ringing_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_ringing_2(assigns) do ~H""" """ end @doc """ Renders the `bell_ringing_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_ringing_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_ringing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_ringing(assigns) do ~H""" """ end @doc """ Renders the `bell_school` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_school(assigns) do ~H""" """ end @doc """ Renders the `bell_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_search(assigns) do ~H""" """ end @doc """ Renders the `bell_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_share(assigns) do ~H""" """ end @doc """ Renders the `bell_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_star(assigns) do ~H""" """ end @doc """ Renders the `bell_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_up(assigns) do ~H""" """ end @doc """ Renders the `bell_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_x_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_x(assigns) do ~H""" """ end @doc """ Renders the `bell_z_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_z_filled(assigns) do ~H""" """ end @doc """ Renders the `bell_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell_z(assigns) do ~H""" """ end @doc """ Renders the `bell` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bell(assigns) do ~H""" """ end @doc """ Renders the `beta` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def beta(assigns) do ~H""" """ end @doc """ Renders the `bible` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bible(assigns) do ~H""" """ end @doc """ Renders the `bike_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bike_off(assigns) do ~H""" """ end @doc """ Renders the `bike` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bike(assigns) do ~H""" """ end @doc """ Renders the `binary_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def binary_off(assigns) do ~H""" """ end @doc """ Renders the `binary_tree_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def binary_tree_2(assigns) do ~H""" """ end @doc """ Renders the `binary_tree` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def binary_tree(assigns) do ~H""" """ end @doc """ Renders the `binary` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def binary(assigns) do ~H""" """ end @doc """ Renders the `biohazard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def biohazard_off(assigns) do ~H""" """ end @doc """ Renders the `biohazard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def biohazard(assigns) do ~H""" """ end @doc """ Renders the `blade_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def blade_filled(assigns) do ~H""" """ end @doc """ Renders the `blade` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def blade(assigns) do ~H""" """ end @doc """ Renders the `bleach_chlorine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bleach_chlorine(assigns) do ~H""" """ end @doc """ Renders the `bleach_no_chlorine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bleach_no_chlorine(assigns) do ~H""" """ end @doc """ Renders the `bleach_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bleach_off(assigns) do ~H""" """ end @doc """ Renders the `bleach` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bleach(assigns) do ~H""" """ end @doc """ Renders the `blockquote` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def blockquote(assigns) do ~H""" """ end @doc """ Renders the `bluetooth_connected` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bluetooth_connected(assigns) do ~H""" """ end @doc """ Renders the `bluetooth_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bluetooth_off(assigns) do ~H""" """ end @doc """ Renders the `bluetooth_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bluetooth_x(assigns) do ~H""" """ end @doc """ Renders the `bluetooth` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bluetooth(assigns) do ~H""" """ end @doc """ Renders the `blur_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def blur_off(assigns) do ~H""" """ end @doc """ Renders the `blur` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def blur(assigns) do ~H""" """ end @doc """ Renders the `bmp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bmp(assigns) do ~H""" """ end @doc """ Renders the `bold_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bold_off(assigns) do ~H""" """ end @doc """ Renders the `bold` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bold(assigns) do ~H""" """ end @doc """ Renders the `bolt_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bolt_off(assigns) do ~H""" """ end @doc """ Renders the `bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bolt(assigns) do ~H""" """ end @doc """ Renders the `bomb_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bomb_filled(assigns) do ~H""" """ end @doc """ Renders the `bomb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bomb(assigns) do ~H""" """ end @doc """ Renders the `bone_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bone_off(assigns) do ~H""" """ end @doc """ Renders the `bone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bone(assigns) do ~H""" """ end @doc """ Renders the `bong_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bong_off(assigns) do ~H""" """ end @doc """ Renders the `bong` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bong(assigns) do ~H""" """ end @doc """ Renders the `book_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def book_2(assigns) do ~H""" """ end @doc """ Renders the `book_download` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def book_download(assigns) do ~H""" """ end @doc """ Renders the `book_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def book_filled(assigns) do ~H""" """ end @doc """ Renders the `book_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def book_off(assigns) do ~H""" """ end @doc """ Renders the `book_upload` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def book_upload(assigns) do ~H""" """ end @doc """ Renders the `book` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def book(assigns) do ~H""" """ end @doc """ Renders the `bookmark_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark_edit(assigns) do ~H""" """ end @doc """ Renders the `bookmark_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark_filled(assigns) do ~H""" """ end @doc """ Renders the `bookmark_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark_minus(assigns) do ~H""" """ end @doc """ Renders the `bookmark_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark_off(assigns) do ~H""" """ end @doc """ Renders the `bookmark_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark_plus(assigns) do ~H""" """ end @doc """ Renders the `bookmark_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark_question(assigns) do ~H""" """ end @doc """ Renders the `bookmark` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmark(assigns) do ~H""" """ end @doc """ Renders the `bookmarks_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmarks_filled(assigns) do ~H""" """ end @doc """ Renders the `bookmarks_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmarks_off(assigns) do ~H""" """ end @doc """ Renders the `bookmarks` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bookmarks(assigns) do ~H""" """ end @doc """ Renders the `books_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def books_off(assigns) do ~H""" """ end @doc """ Renders the `books` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def books(assigns) do ~H""" """ end @doc """ Renders the `border_all` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_all(assigns) do ~H""" """ end @doc """ Renders the `border_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_bottom(assigns) do ~H""" """ end @doc """ Renders the `border_corners` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_corners(assigns) do ~H""" """ end @doc """ Renders the `border_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_horizontal(assigns) do ~H""" """ end @doc """ Renders the `border_inner` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_inner(assigns) do ~H""" """ end @doc """ Renders the `border_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_left(assigns) do ~H""" """ end @doc """ Renders the `border_none` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_none(assigns) do ~H""" """ end @doc """ Renders the `border_outer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_outer(assigns) do ~H""" """ end @doc """ Renders the `border_radius` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_radius(assigns) do ~H""" """ end @doc """ Renders the `border_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_right(assigns) do ~H""" """ end @doc """ Renders the `border_sides` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_sides(assigns) do ~H""" """ end @doc """ Renders the `border_style_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_style_2(assigns) do ~H""" """ end @doc """ Renders the `border_style` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_style(assigns) do ~H""" """ end @doc """ Renders the `border_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_top(assigns) do ~H""" """ end @doc """ Renders the `border_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def border_vertical(assigns) do ~H""" """ end @doc """ Renders the `bottle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bottle_filled(assigns) do ~H""" """ end @doc """ Renders the `bottle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bottle_off(assigns) do ~H""" """ end @doc """ Renders the `bottle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bottle(assigns) do ~H""" """ end @doc """ Renders the `bounce_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bounce_left_filled(assigns) do ~H""" """ end @doc """ Renders the `bounce_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bounce_left(assigns) do ~H""" """ end @doc """ Renders the `bounce_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bounce_right_filled(assigns) do ~H""" """ end @doc """ Renders the `bounce_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bounce_right(assigns) do ~H""" """ end @doc """ Renders the `bow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bow(assigns) do ~H""" """ end @doc """ Renders the `bowl_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bowl_filled(assigns) do ~H""" """ end @doc """ Renders the `bowl` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bowl(assigns) do ~H""" """ end @doc """ Renders the `box_align_bottom_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_bottom_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_bottom_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_bottom_left_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_bottom_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_bottom_left(assigns) do ~H""" """ end @doc """ Renders the `box_align_bottom_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_bottom_right_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_bottom_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_bottom_right(assigns) do ~H""" """ end @doc """ Renders the `box_align_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_bottom(assigns) do ~H""" """ end @doc """ Renders the `box_align_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_left_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_left(assigns) do ~H""" """ end @doc """ Renders the `box_align_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_right_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_right(assigns) do ~H""" """ end @doc """ Renders the `box_align_top_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_top_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_top_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_top_left_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_top_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_top_left(assigns) do ~H""" """ end @doc """ Renders the `box_align_top_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_top_right_filled(assigns) do ~H""" """ end @doc """ Renders the `box_align_top_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_top_right(assigns) do ~H""" """ end @doc """ Renders the `box_align_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_align_top(assigns) do ~H""" """ end @doc """ Renders the `box_margin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_margin(assigns) do ~H""" """ end @doc """ Renders the `box_model_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_model_2_off(assigns) do ~H""" """ end @doc """ Renders the `box_model_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_model_2(assigns) do ~H""" """ end @doc """ Renders the `box_model_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_model_off(assigns) do ~H""" """ end @doc """ Renders the `box_model` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_model(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_0(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_1(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_2(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_3(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_4(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_5(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_6(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_7(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_8(assigns) do ~H""" """ end @doc """ Renders the `box_multiple_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple_9(assigns) do ~H""" """ end @doc """ Renders the `box_multiple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_multiple(assigns) do ~H""" """ end @doc """ Renders the `box_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_off(assigns) do ~H""" """ end @doc """ Renders the `box_padding` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_padding(assigns) do ~H""" """ end @doc """ Renders the `box_seam` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box_seam(assigns) do ~H""" """ end @doc """ Renders the `box` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def box(assigns) do ~H""" """ end @doc """ Renders the `braces_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def braces_off(assigns) do ~H""" """ end @doc """ Renders the `braces` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def braces(assigns) do ~H""" """ end @doc """ Renders the `brackets_contain_end` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brackets_contain_end(assigns) do ~H""" """ end @doc """ Renders the `brackets_contain_start` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brackets_contain_start(assigns) do ~H""" """ end @doc """ Renders the `brackets_contain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brackets_contain(assigns) do ~H""" """ end @doc """ Renders the `brackets_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brackets_off(assigns) do ~H""" """ end @doc """ Renders the `brackets` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brackets(assigns) do ~H""" """ end @doc """ Renders the `braille` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def braille(assigns) do ~H""" """ end @doc """ Renders the `brain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brain(assigns) do ~H""" """ end @doc """ Renders the `brand_4chan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_4chan(assigns) do ~H""" """ end @doc """ Renders the `brand_abstract` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_abstract(assigns) do ~H""" """ end @doc """ Renders the `brand_adobe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_adobe(assigns) do ~H""" """ end @doc """ Renders the `brand_adonis_js` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_adonis_js(assigns) do ~H""" """ end @doc """ Renders the `brand_airbnb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_airbnb(assigns) do ~H""" """ end @doc """ Renders the `brand_airtable` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_airtable(assigns) do ~H""" """ end @doc """ Renders the `brand_algolia` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_algolia(assigns) do ~H""" """ end @doc """ Renders the `brand_alipay` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_alipay(assigns) do ~H""" """ end @doc """ Renders the `brand_alpine_js` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_alpine_js(assigns) do ~H""" """ end @doc """ Renders the `brand_amazon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_amazon(assigns) do ~H""" """ end @doc """ Renders the `brand_amd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_amd(assigns) do ~H""" """ end @doc """ Renders the `brand_amigo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_amigo(assigns) do ~H""" """ end @doc """ Renders the `brand_among_us` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_among_us(assigns) do ~H""" """ end @doc """ Renders the `brand_android` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_android(assigns) do ~H""" """ end @doc """ Renders the `brand_angular` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_angular(assigns) do ~H""" """ end @doc """ Renders the `brand_ansible` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ansible(assigns) do ~H""" """ end @doc """ Renders the `brand_ao3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ao3(assigns) do ~H""" """ end @doc """ Renders the `brand_appgallery` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_appgallery(assigns) do ~H""" """ end @doc """ Renders the `brand_apple_arcade` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_apple_arcade(assigns) do ~H""" """ end @doc """ Renders the `brand_apple_podcast` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_apple_podcast(assigns) do ~H""" """ end @doc """ Renders the `brand_apple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_apple(assigns) do ~H""" """ end @doc """ Renders the `brand_appstore` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_appstore(assigns) do ~H""" """ end @doc """ Renders the `brand_asana` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_asana(assigns) do ~H""" """ end @doc """ Renders the `brand_aws` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_aws(assigns) do ~H""" """ end @doc """ Renders the `brand_azure` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_azure(assigns) do ~H""" """ end @doc """ Renders the `brand_backbone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_backbone(assigns) do ~H""" """ end @doc """ Renders the `brand_badoo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_badoo(assigns) do ~H""" """ end @doc """ Renders the `brand_baidu` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_baidu(assigns) do ~H""" """ end @doc """ Renders the `brand_bandcamp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bandcamp(assigns) do ~H""" """ end @doc """ Renders the `brand_bandlab` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bandlab(assigns) do ~H""" """ end @doc """ Renders the `brand_beats` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_beats(assigns) do ~H""" """ end @doc """ Renders the `brand_behance` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_behance(assigns) do ~H""" """ end @doc """ Renders the `brand_bilibili` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bilibili(assigns) do ~H""" """ end @doc """ Renders the `brand_binance` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_binance(assigns) do ~H""" """ end @doc """ Renders the `brand_bing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bing(assigns) do ~H""" """ end @doc """ Renders the `brand_bitbucket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bitbucket(assigns) do ~H""" """ end @doc """ Renders the `brand_blackberry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_blackberry(assigns) do ~H""" """ end @doc """ Renders the `brand_blender` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_blender(assigns) do ~H""" """ end @doc """ Renders the `brand_blogger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_blogger(assigns) do ~H""" """ end @doc """ Renders the `brand_booking` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_booking(assigns) do ~H""" """ end @doc """ Renders the `brand_bootstrap` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bootstrap(assigns) do ~H""" """ end @doc """ Renders the `brand_bulma` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bulma(assigns) do ~H""" """ end @doc """ Renders the `brand_bumble` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bumble(assigns) do ~H""" """ end @doc """ Renders the `brand_bunpo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_bunpo(assigns) do ~H""" """ end @doc """ Renders the `brand_c_sharp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_c_sharp(assigns) do ~H""" """ end @doc """ Renders the `brand_cake` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cake(assigns) do ~H""" """ end @doc """ Renders the `brand_cakephp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cakephp(assigns) do ~H""" """ end @doc """ Renders the `brand_campaignmonitor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_campaignmonitor(assigns) do ~H""" """ end @doc """ Renders the `brand_carbon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_carbon(assigns) do ~H""" """ end @doc """ Renders the `brand_cashapp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cashapp(assigns) do ~H""" """ end @doc """ Renders the `brand_chrome` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_chrome(assigns) do ~H""" """ end @doc """ Renders the `brand_cinema_4d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cinema_4d(assigns) do ~H""" """ end @doc """ Renders the `brand_citymapper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_citymapper(assigns) do ~H""" """ end @doc """ Renders the `brand_cloudflare` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cloudflare(assigns) do ~H""" """ end @doc """ Renders the `brand_codecov` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_codecov(assigns) do ~H""" """ end @doc """ Renders the `brand_codepen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_codepen(assigns) do ~H""" """ end @doc """ Renders the `brand_codesandbox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_codesandbox(assigns) do ~H""" """ end @doc """ Renders the `brand_cohost` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cohost(assigns) do ~H""" """ end @doc """ Renders the `brand_coinbase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_coinbase(assigns) do ~H""" """ end @doc """ Renders the `brand_comedy_central` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_comedy_central(assigns) do ~H""" """ end @doc """ Renders the `brand_coreos` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_coreos(assigns) do ~H""" """ end @doc """ Renders the `brand_couchdb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_couchdb(assigns) do ~H""" """ end @doc """ Renders the `brand_couchsurfing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_couchsurfing(assigns) do ~H""" """ end @doc """ Renders the `brand_cpp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cpp(assigns) do ~H""" """ end @doc """ Renders the `brand_craft` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_craft(assigns) do ~H""" """ end @doc """ Renders the `brand_crunchbase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_crunchbase(assigns) do ~H""" """ end @doc """ Renders the `brand_css3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_css3(assigns) do ~H""" """ end @doc """ Renders the `brand_ctemplar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ctemplar(assigns) do ~H""" """ end @doc """ Renders the `brand_cucumber` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cucumber(assigns) do ~H""" """ end @doc """ Renders the `brand_cupra` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cupra(assigns) do ~H""" """ end @doc """ Renders the `brand_cypress` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_cypress(assigns) do ~H""" """ end @doc """ Renders the `brand_d3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_d3(assigns) do ~H""" """ end @doc """ Renders the `brand_days_counter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_days_counter(assigns) do ~H""" """ end @doc """ Renders the `brand_dcos` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_dcos(assigns) do ~H""" """ end @doc """ Renders the `brand_debian` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_debian(assigns) do ~H""" """ end @doc """ Renders the `brand_deezer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_deezer(assigns) do ~H""" """ end @doc """ Renders the `brand_deliveroo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_deliveroo(assigns) do ~H""" """ end @doc """ Renders the `brand_deno` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_deno(assigns) do ~H""" """ end @doc """ Renders the `brand_denodo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_denodo(assigns) do ~H""" """ end @doc """ Renders the `brand_deviantart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_deviantart(assigns) do ~H""" """ end @doc """ Renders the `brand_digg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_digg(assigns) do ~H""" """ end @doc """ Renders the `brand_dingtalk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_dingtalk(assigns) do ~H""" """ end @doc """ Renders the `brand_discord_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_discord_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_discord` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_discord(assigns) do ~H""" """ end @doc """ Renders the `brand_disney` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_disney(assigns) do ~H""" """ end @doc """ Renders the `brand_disqus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_disqus(assigns) do ~H""" """ end @doc """ Renders the `brand_django` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_django(assigns) do ~H""" """ end @doc """ Renders the `brand_docker` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_docker(assigns) do ~H""" """ end @doc """ Renders the `brand_doctrine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_doctrine(assigns) do ~H""" """ end @doc """ Renders the `brand_dolby_digital` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_dolby_digital(assigns) do ~H""" """ end @doc """ Renders the `brand_douban` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_douban(assigns) do ~H""" """ end @doc """ Renders the `brand_dribbble_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_dribbble_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_dribbble` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_dribbble(assigns) do ~H""" """ end @doc """ Renders the `brand_drops` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_drops(assigns) do ~H""" """ end @doc """ Renders the `brand_drupal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_drupal(assigns) do ~H""" """ end @doc """ Renders the `brand_edge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_edge(assigns) do ~H""" """ end @doc """ Renders the `brand_elastic` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_elastic(assigns) do ~H""" """ end @doc """ Renders the `brand_electronic_arts` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_electronic_arts(assigns) do ~H""" """ end @doc """ Renders the `brand_ember` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ember(assigns) do ~H""" """ end @doc """ Renders the `brand_envato` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_envato(assigns) do ~H""" """ end @doc """ Renders the `brand_etsy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_etsy(assigns) do ~H""" """ end @doc """ Renders the `brand_evernote` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_evernote(assigns) do ~H""" """ end @doc """ Renders the `brand_facebook_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_facebook_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_facebook` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_facebook(assigns) do ~H""" """ end @doc """ Renders the `brand_feedly` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_feedly(assigns) do ~H""" """ end @doc """ Renders the `brand_figma` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_figma(assigns) do ~H""" """ end @doc """ Renders the `brand_filezilla` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_filezilla(assigns) do ~H""" """ end @doc """ Renders the `brand_finder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_finder(assigns) do ~H""" """ end @doc """ Renders the `brand_firebase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_firebase(assigns) do ~H""" """ end @doc """ Renders the `brand_firefox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_firefox(assigns) do ~H""" """ end @doc """ Renders the `brand_fiverr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_fiverr(assigns) do ~H""" """ end @doc """ Renders the `brand_flickr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_flickr(assigns) do ~H""" """ end @doc """ Renders the `brand_flightradar24` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_flightradar24(assigns) do ~H""" """ end @doc """ Renders the `brand_flipboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_flipboard(assigns) do ~H""" """ end @doc """ Renders the `brand_flutter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_flutter(assigns) do ~H""" """ end @doc """ Renders the `brand_fortnite` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_fortnite(assigns) do ~H""" """ end @doc """ Renders the `brand_foursquare` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_foursquare(assigns) do ~H""" """ end @doc """ Renders the `brand_framer_motion` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_framer_motion(assigns) do ~H""" """ end @doc """ Renders the `brand_framer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_framer(assigns) do ~H""" """ end @doc """ Renders the `brand_funimation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_funimation(assigns) do ~H""" """ end @doc """ Renders the `brand_gatsby` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_gatsby(assigns) do ~H""" """ end @doc """ Renders the `brand_git` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_git(assigns) do ~H""" """ end @doc """ Renders the `brand_github_copilot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_github_copilot(assigns) do ~H""" """ end @doc """ Renders the `brand_github_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_github_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_github` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_github(assigns) do ~H""" """ end @doc """ Renders the `brand_gitlab` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_gitlab(assigns) do ~H""" """ end @doc """ Renders the `brand_gmail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_gmail(assigns) do ~H""" """ end @doc """ Renders the `brand_golang` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_golang(assigns) do ~H""" """ end @doc """ Renders the `brand_google_analytics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_analytics(assigns) do ~H""" """ end @doc """ Renders the `brand_google_big_query` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_big_query(assigns) do ~H""" """ end @doc """ Renders the `brand_google_drive` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_drive(assigns) do ~H""" """ end @doc """ Renders the `brand_google_fit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_fit(assigns) do ~H""" """ end @doc """ Renders the `brand_google_home` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_home(assigns) do ~H""" """ end @doc """ Renders the `brand_google_maps` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_maps(assigns) do ~H""" """ end @doc """ Renders the `brand_google_one` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_one(assigns) do ~H""" """ end @doc """ Renders the `brand_google_photos` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_photos(assigns) do ~H""" """ end @doc """ Renders the `brand_google_play` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_play(assigns) do ~H""" """ end @doc """ Renders the `brand_google_podcasts` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google_podcasts(assigns) do ~H""" """ end @doc """ Renders the `brand_google` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_google(assigns) do ~H""" """ end @doc """ Renders the `brand_grammarly` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_grammarly(assigns) do ~H""" """ end @doc """ Renders the `brand_graphql` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_graphql(assigns) do ~H""" """ end @doc """ Renders the `brand_gravatar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_gravatar(assigns) do ~H""" """ end @doc """ Renders the `brand_grindr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_grindr(assigns) do ~H""" """ end @doc """ Renders the `brand_guardian` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_guardian(assigns) do ~H""" """ end @doc """ Renders the `brand_gumroad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_gumroad(assigns) do ~H""" """ end @doc """ Renders the `brand_hbo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_hbo(assigns) do ~H""" """ end @doc """ Renders the `brand_headlessui` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_headlessui(assigns) do ~H""" """ end @doc """ Renders the `brand_hexo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_hexo(assigns) do ~H""" """ end @doc """ Renders the `brand_hipchat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_hipchat(assigns) do ~H""" """ end @doc """ Renders the `brand_html5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_html5(assigns) do ~H""" """ end @doc """ Renders the `brand_inertia` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_inertia(assigns) do ~H""" """ end @doc """ Renders the `brand_instagram` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_instagram(assigns) do ~H""" """ end @doc """ Renders the `brand_intercom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_intercom(assigns) do ~H""" """ end @doc """ Renders the `brand_itch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_itch(assigns) do ~H""" """ end @doc """ Renders the `brand_javascript` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_javascript(assigns) do ~H""" """ end @doc """ Renders the `brand_juejin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_juejin(assigns) do ~H""" """ end @doc """ Renders the `brand_kbin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_kbin(assigns) do ~H""" """ end @doc """ Renders the `brand_kick` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_kick(assigns) do ~H""" """ end @doc """ Renders the `brand_kickstarter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_kickstarter(assigns) do ~H""" """ end @doc """ Renders the `brand_kotlin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_kotlin(assigns) do ~H""" """ end @doc """ Renders the `brand_laravel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_laravel(assigns) do ~H""" """ end @doc """ Renders the `brand_lastfm` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_lastfm(assigns) do ~H""" """ end @doc """ Renders the `brand_leetcode` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_leetcode(assigns) do ~H""" """ end @doc """ Renders the `brand_letterboxd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_letterboxd(assigns) do ~H""" """ end @doc """ Renders the `brand_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_line(assigns) do ~H""" """ end @doc """ Renders the `brand_linkedin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_linkedin(assigns) do ~H""" """ end @doc """ Renders the `brand_linktree` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_linktree(assigns) do ~H""" """ end @doc """ Renders the `brand_linqpad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_linqpad(assigns) do ~H""" """ end @doc """ Renders the `brand_loom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_loom(assigns) do ~H""" """ end @doc """ Renders the `brand_mailgun` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mailgun(assigns) do ~H""" """ end @doc """ Renders the `brand_mantine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mantine(assigns) do ~H""" """ end @doc """ Renders the `brand_mastercard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mastercard(assigns) do ~H""" """ end @doc """ Renders the `brand_mastodon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mastodon(assigns) do ~H""" """ end @doc """ Renders the `brand_matrix` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_matrix(assigns) do ~H""" """ end @doc """ Renders the `brand_mcdonalds` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mcdonalds(assigns) do ~H""" """ end @doc """ Renders the `brand_medium` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_medium(assigns) do ~H""" """ end @doc """ Renders the `brand_mercedes` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mercedes(assigns) do ~H""" """ end @doc """ Renders the `brand_messenger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_messenger(assigns) do ~H""" """ end @doc """ Renders the `brand_meta` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_meta(assigns) do ~H""" """ end @doc """ Renders the `brand_microsoft_teams` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_microsoft_teams(assigns) do ~H""" """ end @doc """ Renders the `brand_minecraft` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_minecraft(assigns) do ~H""" """ end @doc """ Renders the `brand_miniprogram` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_miniprogram(assigns) do ~H""" """ end @doc """ Renders the `brand_mixpanel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mixpanel(assigns) do ~H""" """ end @doc """ Renders the `brand_monday` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_monday(assigns) do ~H""" """ end @doc """ Renders the `brand_mongodb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mongodb(assigns) do ~H""" """ end @doc """ Renders the `brand_my_oppo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_my_oppo(assigns) do ~H""" """ end @doc """ Renders the `brand_mysql` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_mysql(assigns) do ~H""" """ end @doc """ Renders the `brand_national_geographic` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_national_geographic(assigns) do ~H""" """ end @doc """ Renders the `brand_nem` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nem(assigns) do ~H""" """ end @doc """ Renders the `brand_netbeans` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_netbeans(assigns) do ~H""" """ end @doc """ Renders the `brand_netease_music` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_netease_music(assigns) do ~H""" """ end @doc """ Renders the `brand_netflix` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_netflix(assigns) do ~H""" """ end @doc """ Renders the `brand_nexo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nexo(assigns) do ~H""" """ end @doc """ Renders the `brand_nextcloud` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nextcloud(assigns) do ~H""" """ end @doc """ Renders the `brand_nextjs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nextjs(assigns) do ~H""" """ end @doc """ Renders the `brand_nodejs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nodejs(assigns) do ~H""" """ end @doc """ Renders the `brand_nord_vpn` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nord_vpn(assigns) do ~H""" """ end @doc """ Renders the `brand_notion` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_notion(assigns) do ~H""" """ end @doc """ Renders the `brand_npm` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_npm(assigns) do ~H""" """ end @doc """ Renders the `brand_nuxt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nuxt(assigns) do ~H""" """ end @doc """ Renders the `brand_nytimes` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_nytimes(assigns) do ~H""" """ end @doc """ Renders the `brand_oauth` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_oauth(assigns) do ~H""" """ end @doc """ Renders the `brand_office` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_office(assigns) do ~H""" """ end @doc """ Renders the `brand_ok_ru` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ok_ru(assigns) do ~H""" """ end @doc """ Renders the `brand_onedrive` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_onedrive(assigns) do ~H""" """ end @doc """ Renders the `brand_onlyfans` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_onlyfans(assigns) do ~H""" """ end @doc """ Renders the `brand_open_source` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_open_source(assigns) do ~H""" """ end @doc """ Renders the `brand_openai` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_openai(assigns) do ~H""" """ end @doc """ Renders the `brand_openvpn` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_openvpn(assigns) do ~H""" """ end @doc """ Renders the `brand_opera` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_opera(assigns) do ~H""" """ end @doc """ Renders the `brand_pagekit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_pagekit(assigns) do ~H""" """ end @doc """ Renders the `brand_patreon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_patreon(assigns) do ~H""" """ end @doc """ Renders the `brand_paypal_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_paypal_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_paypal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_paypal(assigns) do ~H""" """ end @doc """ Renders the `brand_paypay` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_paypay(assigns) do ~H""" """ end @doc """ Renders the `brand_peanut` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_peanut(assigns) do ~H""" """ end @doc """ Renders the `brand_pepsi` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_pepsi(assigns) do ~H""" """ end @doc """ Renders the `brand_php` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_php(assigns) do ~H""" """ end @doc """ Renders the `brand_picsart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_picsart(assigns) do ~H""" """ end @doc """ Renders the `brand_pinterest` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_pinterest(assigns) do ~H""" """ end @doc """ Renders the `brand_planetscale` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_planetscale(assigns) do ~H""" """ end @doc """ Renders the `brand_pocket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_pocket(assigns) do ~H""" """ end @doc """ Renders the `brand_polymer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_polymer(assigns) do ~H""" """ end @doc """ Renders the `brand_powershell` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_powershell(assigns) do ~H""" """ end @doc """ Renders the `brand_prisma` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_prisma(assigns) do ~H""" """ end @doc """ Renders the `brand_producthunt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_producthunt(assigns) do ~H""" """ end @doc """ Renders the `brand_pushbullet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_pushbullet(assigns) do ~H""" """ end @doc """ Renders the `brand_pushover` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_pushover(assigns) do ~H""" """ end @doc """ Renders the `brand_python` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_python(assigns) do ~H""" """ end @doc """ Renders the `brand_qq` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_qq(assigns) do ~H""" """ end @doc """ Renders the `brand_radix_ui` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_radix_ui(assigns) do ~H""" """ end @doc """ Renders the `brand_react_native` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_react_native(assigns) do ~H""" """ end @doc """ Renders the `brand_react` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_react(assigns) do ~H""" """ end @doc """ Renders the `brand_reason` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_reason(assigns) do ~H""" """ end @doc """ Renders the `brand_reddit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_reddit(assigns) do ~H""" """ end @doc """ Renders the `brand_redhat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_redhat(assigns) do ~H""" """ end @doc """ Renders the `brand_redux` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_redux(assigns) do ~H""" """ end @doc """ Renders the `brand_revolut` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_revolut(assigns) do ~H""" """ end @doc """ Renders the `brand_rumble` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_rumble(assigns) do ~H""" """ end @doc """ Renders the `brand_rust` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_rust(assigns) do ~H""" """ end @doc """ Renders the `brand_safari` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_safari(assigns) do ~H""" """ end @doc """ Renders the `brand_samsungpass` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_samsungpass(assigns) do ~H""" """ end @doc """ Renders the `brand_sass` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_sass(assigns) do ~H""" """ end @doc """ Renders the `brand_sentry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_sentry(assigns) do ~H""" """ end @doc """ Renders the `brand_sharik` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_sharik(assigns) do ~H""" """ end @doc """ Renders the `brand_shazam` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_shazam(assigns) do ~H""" """ end @doc """ Renders the `brand_shopee` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_shopee(assigns) do ~H""" """ end @doc """ Renders the `brand_sketch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_sketch(assigns) do ~H""" """ end @doc """ Renders the `brand_skype` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_skype(assigns) do ~H""" """ end @doc """ Renders the `brand_slack` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_slack(assigns) do ~H""" """ end @doc """ Renders the `brand_snapchat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_snapchat(assigns) do ~H""" """ end @doc """ Renders the `brand_snapseed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_snapseed(assigns) do ~H""" """ end @doc """ Renders the `brand_snowflake` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_snowflake(assigns) do ~H""" """ end @doc """ Renders the `brand_socket_io` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_socket_io(assigns) do ~H""" """ end @doc """ Renders the `brand_solidjs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_solidjs(assigns) do ~H""" """ end @doc """ Renders the `brand_soundcloud` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_soundcloud(assigns) do ~H""" """ end @doc """ Renders the `brand_spacehey` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_spacehey(assigns) do ~H""" """ end @doc """ Renders the `brand_speedtest` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_speedtest(assigns) do ~H""" """ end @doc """ Renders the `brand_spotify` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_spotify(assigns) do ~H""" """ end @doc """ Renders the `brand_stackoverflow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_stackoverflow(assigns) do ~H""" """ end @doc """ Renders the `brand_stackshare` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_stackshare(assigns) do ~H""" """ end @doc """ Renders the `brand_steam` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_steam(assigns) do ~H""" """ end @doc """ Renders the `brand_storj` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_storj(assigns) do ~H""" """ end @doc """ Renders the `brand_storybook` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_storybook(assigns) do ~H""" """ end @doc """ Renders the `brand_storytel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_storytel(assigns) do ~H""" """ end @doc """ Renders the `brand_strava` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_strava(assigns) do ~H""" """ end @doc """ Renders the `brand_stripe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_stripe(assigns) do ~H""" """ end @doc """ Renders the `brand_sublime_text` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_sublime_text(assigns) do ~H""" """ end @doc """ Renders the `brand_sugarizer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_sugarizer(assigns) do ~H""" """ end @doc """ Renders the `brand_supabase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_supabase(assigns) do ~H""" """ end @doc """ Renders the `brand_superhuman` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_superhuman(assigns) do ~H""" """ end @doc """ Renders the `brand_supernova` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_supernova(assigns) do ~H""" """ end @doc """ Renders the `brand_surfshark` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_surfshark(assigns) do ~H""" """ end @doc """ Renders the `brand_svelte` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_svelte(assigns) do ~H""" """ end @doc """ Renders the `brand_swift` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_swift(assigns) do ~H""" """ end @doc """ Renders the `brand_symfony` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_symfony(assigns) do ~H""" """ end @doc """ Renders the `brand_tabler` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tabler(assigns) do ~H""" """ end @doc """ Renders the `brand_tailwind` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tailwind(assigns) do ~H""" """ end @doc """ Renders the `brand_taobao` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_taobao(assigns) do ~H""" """ end @doc """ Renders the `brand_ted` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ted(assigns) do ~H""" """ end @doc """ Renders the `brand_telegram` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_telegram(assigns) do ~H""" """ end @doc """ Renders the `brand_terraform` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_terraform(assigns) do ~H""" """ end @doc """ Renders the `brand_tether` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tether(assigns) do ~H""" """ end @doc """ Renders the `brand_threads` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_threads(assigns) do ~H""" """ end @doc """ Renders the `brand_threejs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_threejs(assigns) do ~H""" """ end @doc """ Renders the `brand_tidal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tidal(assigns) do ~H""" """ end @doc """ Renders the `brand_tikto_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tikto_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_tiktok` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tiktok(assigns) do ~H""" """ end @doc """ Renders the `brand_tinder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tinder(assigns) do ~H""" """ end @doc """ Renders the `brand_topbuzz` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_topbuzz(assigns) do ~H""" """ end @doc """ Renders the `brand_torchain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_torchain(assigns) do ~H""" """ end @doc """ Renders the `brand_toyota` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_toyota(assigns) do ~H""" """ end @doc """ Renders the `brand_trello` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_trello(assigns) do ~H""" """ end @doc """ Renders the `brand_tripadvisor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tripadvisor(assigns) do ~H""" """ end @doc """ Renders the `brand_tumblr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_tumblr(assigns) do ~H""" """ end @doc """ Renders the `brand_twilio` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_twilio(assigns) do ~H""" """ end @doc """ Renders the `brand_twitch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_twitch(assigns) do ~H""" """ end @doc """ Renders the `brand_twitter_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_twitter_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_twitter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_twitter(assigns) do ~H""" """ end @doc """ Renders the `brand_typescript` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_typescript(assigns) do ~H""" """ end @doc """ Renders the `brand_uber` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_uber(assigns) do ~H""" """ end @doc """ Renders the `brand_ubuntu` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ubuntu(assigns) do ~H""" """ end @doc """ Renders the `brand_unity` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_unity(assigns) do ~H""" """ end @doc """ Renders the `brand_unsplash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_unsplash(assigns) do ~H""" """ end @doc """ Renders the `brand_upwork` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_upwork(assigns) do ~H""" """ end @doc """ Renders the `brand_valorant` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_valorant(assigns) do ~H""" """ end @doc """ Renders the `brand_vercel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vercel(assigns) do ~H""" """ end @doc """ Renders the `brand_vimeo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vimeo(assigns) do ~H""" """ end @doc """ Renders the `brand_vinted` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vinted(assigns) do ~H""" """ end @doc """ Renders the `brand_visa` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_visa(assigns) do ~H""" """ end @doc """ Renders the `brand_visual_studio` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_visual_studio(assigns) do ~H""" """ end @doc """ Renders the `brand_vite` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vite(assigns) do ~H""" """ end @doc """ Renders the `brand_vivaldi` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vivaldi(assigns) do ~H""" """ end @doc """ Renders the `brand_vk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vk(assigns) do ~H""" """ end @doc """ Renders the `brand_vlc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vlc(assigns) do ~H""" """ end @doc """ Renders the `brand_volkswagen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_volkswagen(assigns) do ~H""" """ end @doc """ Renders the `brand_vsco` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vsco(assigns) do ~H""" """ end @doc """ Renders the `brand_vscode` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vscode(assigns) do ~H""" """ end @doc """ Renders the `brand_vue` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_vue(assigns) do ~H""" """ end @doc """ Renders the `brand_walmart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_walmart(assigns) do ~H""" """ end @doc """ Renders the `brand_waze` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_waze(assigns) do ~H""" """ end @doc """ Renders the `brand_webflow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_webflow(assigns) do ~H""" """ end @doc """ Renders the `brand_wechat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_wechat(assigns) do ~H""" """ end @doc """ Renders the `brand_weibo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_weibo(assigns) do ~H""" """ end @doc """ Renders the `brand_whatsapp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_whatsapp(assigns) do ~H""" """ end @doc """ Renders the `brand_wikipedia` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_wikipedia(assigns) do ~H""" """ end @doc """ Renders the `brand_windows` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_windows(assigns) do ~H""" """ end @doc """ Renders the `brand_windy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_windy(assigns) do ~H""" """ end @doc """ Renders the `brand_wish` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_wish(assigns) do ~H""" """ end @doc """ Renders the `brand_wix` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_wix(assigns) do ~H""" """ end @doc """ Renders the `brand_wordpress` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_wordpress(assigns) do ~H""" """ end @doc """ Renders the `brand_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_x_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_x(assigns) do ~H""" """ end @doc """ Renders the `brand_xamarin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_xamarin(assigns) do ~H""" """ end @doc """ Renders the `brand_xbox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_xbox(assigns) do ~H""" """ end @doc """ Renders the `brand_xdeep` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_xdeep(assigns) do ~H""" """ end @doc """ Renders the `brand_xing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_xing(assigns) do ~H""" """ end @doc """ Renders the `brand_yahoo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_yahoo(assigns) do ~H""" """ end @doc """ Renders the `brand_yandex` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_yandex(assigns) do ~H""" """ end @doc """ Renders the `brand_yatse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_yatse(assigns) do ~H""" """ end @doc """ Renders the `brand_ycombinator` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_ycombinator(assigns) do ~H""" """ end @doc """ Renders the `brand_youtube_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_youtube_filled(assigns) do ~H""" """ end @doc """ Renders the `brand_youtube_kids` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_youtube_kids(assigns) do ~H""" """ end @doc """ Renders the `brand_youtube` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_youtube(assigns) do ~H""" """ end @doc """ Renders the `brand_zalando` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zalando(assigns) do ~H""" """ end @doc """ Renders the `brand_zapier` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zapier(assigns) do ~H""" """ end @doc """ Renders the `brand_zeit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zeit(assigns) do ~H""" """ end @doc """ Renders the `brand_zhihu` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zhihu(assigns) do ~H""" """ end @doc """ Renders the `brand_zoom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zoom(assigns) do ~H""" """ end @doc """ Renders the `brand_zulip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zulip(assigns) do ~H""" """ end @doc """ Renders the `brand_zwift` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brand_zwift(assigns) do ~H""" """ end @doc """ Renders the `bread_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bread_off(assigns) do ~H""" """ end @doc """ Renders the `bread` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bread(assigns) do ~H""" """ end @doc """ Renders the `briefcase_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def briefcase_2(assigns) do ~H""" """ end @doc """ Renders the `briefcase_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def briefcase_off(assigns) do ~H""" """ end @doc """ Renders the `briefcase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def briefcase(assigns) do ~H""" """ end @doc """ Renders the `brightness_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_2(assigns) do ~H""" """ end @doc """ Renders the `brightness_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_down_filled(assigns) do ~H""" """ end @doc """ Renders the `brightness_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_down(assigns) do ~H""" """ end @doc """ Renders the `brightness_half` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_half(assigns) do ~H""" """ end @doc """ Renders the `brightness_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_off(assigns) do ~H""" """ end @doc """ Renders the `brightness_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_up_filled(assigns) do ~H""" """ end @doc """ Renders the `brightness_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness_up(assigns) do ~H""" """ end @doc """ Renders the `brightness` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brightness(assigns) do ~H""" """ end @doc """ Renders the `broadcast_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def broadcast_off(assigns) do ~H""" """ end @doc """ Renders the `broadcast` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def broadcast(assigns) do ~H""" """ end @doc """ Renders the `browser_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def browser_check(assigns) do ~H""" """ end @doc """ Renders the `browser_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def browser_off(assigns) do ~H""" """ end @doc """ Renders the `browser_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def browser_plus(assigns) do ~H""" """ end @doc """ Renders the `browser_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def browser_x(assigns) do ~H""" """ end @doc """ Renders the `browser` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def browser(assigns) do ~H""" """ end @doc """ Renders the `brush_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brush_off(assigns) do ~H""" """ end @doc """ Renders the `brush` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def brush(assigns) do ~H""" """ end @doc """ Renders the `bucket_droplet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bucket_droplet(assigns) do ~H""" """ end @doc """ Renders the `bucket_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bucket_off(assigns) do ~H""" """ end @doc """ Renders the `bucket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bucket(assigns) do ~H""" """ end @doc """ Renders the `bug_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bug_off(assigns) do ~H""" """ end @doc """ Renders the `bug` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bug(assigns) do ~H""" """ end @doc """ Renders the `building_arch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_arch(assigns) do ~H""" """ end @doc """ Renders the `building_bank` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_bank(assigns) do ~H""" """ end @doc """ Renders the `building_bridge_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_bridge_2(assigns) do ~H""" """ end @doc """ Renders the `building_bridge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_bridge(assigns) do ~H""" """ end @doc """ Renders the `building_broadcast_tower` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_broadcast_tower(assigns) do ~H""" """ end @doc """ Renders the `building_carousel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_carousel(assigns) do ~H""" """ end @doc """ Renders the `building_castle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_castle(assigns) do ~H""" """ end @doc """ Renders the `building_church` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_church(assigns) do ~H""" """ end @doc """ Renders the `building_circus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_circus(assigns) do ~H""" """ end @doc """ Renders the `building_community` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_community(assigns) do ~H""" """ end @doc """ Renders the `building_cottage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_cottage(assigns) do ~H""" """ end @doc """ Renders the `building_estate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_estate(assigns) do ~H""" """ end @doc """ Renders the `building_factory_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_factory_2(assigns) do ~H""" """ end @doc """ Renders the `building_factory` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_factory(assigns) do ~H""" """ end @doc """ Renders the `building_fortress` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_fortress(assigns) do ~H""" """ end @doc """ Renders the `building_hospital` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_hospital(assigns) do ~H""" """ end @doc """ Renders the `building_lighthouse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_lighthouse(assigns) do ~H""" """ end @doc """ Renders the `building_monument` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_monument(assigns) do ~H""" """ end @doc """ Renders the `building_mosque` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_mosque(assigns) do ~H""" """ end @doc """ Renders the `building_pavilion` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_pavilion(assigns) do ~H""" """ end @doc """ Renders the `building_skyscraper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_skyscraper(assigns) do ~H""" """ end @doc """ Renders the `building_stadium` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_stadium(assigns) do ~H""" """ end @doc """ Renders the `building_store` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_store(assigns) do ~H""" """ end @doc """ Renders the `building_tunnel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_tunnel(assigns) do ~H""" """ end @doc """ Renders the `building_warehouse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_warehouse(assigns) do ~H""" """ end @doc """ Renders the `building_wind_turbine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building_wind_turbine(assigns) do ~H""" """ end @doc """ Renders the `building` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def building(assigns) do ~H""" """ end @doc """ Renders the `bulb_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bulb_filled(assigns) do ~H""" """ end @doc """ Renders the `bulb_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bulb_off(assigns) do ~H""" """ end @doc """ Renders the `bulb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bulb(assigns) do ~H""" """ end @doc """ Renders the `bulldozer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bulldozer(assigns) do ~H""" """ end @doc """ Renders the `bus_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bus_off(assigns) do ~H""" """ end @doc """ Renders the `bus_stop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bus_stop(assigns) do ~H""" """ end @doc """ Renders the `bus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def bus(assigns) do ~H""" """ end @doc """ Renders the `businessplan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def businessplan(assigns) do ~H""" """ end @doc """ Renders the `butterfly` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def butterfly(assigns) do ~H""" """ end @doc """ Renders the `cactus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cactus_filled(assigns) do ~H""" """ end @doc """ Renders the `cactus_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cactus_off(assigns) do ~H""" """ end @doc """ Renders the `cactus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cactus(assigns) do ~H""" """ end @doc """ Renders the `cake_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cake_off(assigns) do ~H""" """ end @doc """ Renders the `cake` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cake(assigns) do ~H""" """ end @doc """ Renders the `calculator_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calculator_filled(assigns) do ~H""" """ end @doc """ Renders the `calculator_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calculator_off(assigns) do ~H""" """ end @doc """ Renders the `calculator` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calculator(assigns) do ~H""" """ end @doc """ Renders the `calendar_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_bolt(assigns) do ~H""" """ end @doc """ Renders the `calendar_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_cancel(assigns) do ~H""" """ end @doc """ Renders the `calendar_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_check(assigns) do ~H""" """ end @doc """ Renders the `calendar_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_code(assigns) do ~H""" """ end @doc """ Renders the `calendar_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_cog(assigns) do ~H""" """ end @doc """ Renders the `calendar_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_dollar(assigns) do ~H""" """ end @doc """ Renders the `calendar_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_down(assigns) do ~H""" """ end @doc """ Renders the `calendar_due` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_due(assigns) do ~H""" """ end @doc """ Renders the `calendar_event` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_event(assigns) do ~H""" """ end @doc """ Renders the `calendar_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_exclamation(assigns) do ~H""" """ end @doc """ Renders the `calendar_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_filled(assigns) do ~H""" """ end @doc """ Renders the `calendar_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_heart(assigns) do ~H""" """ end @doc """ Renders the `calendar_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_minus(assigns) do ~H""" """ end @doc """ Renders the `calendar_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_off(assigns) do ~H""" """ end @doc """ Renders the `calendar_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_pause(assigns) do ~H""" """ end @doc """ Renders the `calendar_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_pin(assigns) do ~H""" """ end @doc """ Renders the `calendar_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_plus(assigns) do ~H""" """ end @doc """ Renders the `calendar_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_question(assigns) do ~H""" """ end @doc """ Renders the `calendar_repeat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_repeat(assigns) do ~H""" """ end @doc """ Renders the `calendar_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_search(assigns) do ~H""" """ end @doc """ Renders the `calendar_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_share(assigns) do ~H""" """ end @doc """ Renders the `calendar_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_star(assigns) do ~H""" """ end @doc """ Renders the `calendar_stats` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_stats(assigns) do ~H""" """ end @doc """ Renders the `calendar_time` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_time(assigns) do ~H""" """ end @doc """ Renders the `calendar_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_up(assigns) do ~H""" """ end @doc """ Renders the `calendar_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar_x(assigns) do ~H""" """ end @doc """ Renders the `calendar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def calendar(assigns) do ~H""" """ end @doc """ Renders the `camera_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_bolt(assigns) do ~H""" """ end @doc """ Renders the `camera_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_cancel(assigns) do ~H""" """ end @doc """ Renders the `camera_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_check(assigns) do ~H""" """ end @doc """ Renders the `camera_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_code(assigns) do ~H""" """ end @doc """ Renders the `camera_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_cog(assigns) do ~H""" """ end @doc """ Renders the `camera_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_dollar(assigns) do ~H""" """ end @doc """ Renders the `camera_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_down(assigns) do ~H""" """ end @doc """ Renders the `camera_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_exclamation(assigns) do ~H""" """ end @doc """ Renders the `camera_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_filled(assigns) do ~H""" """ end @doc """ Renders the `camera_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_heart(assigns) do ~H""" """ end @doc """ Renders the `camera_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_minus(assigns) do ~H""" """ end @doc """ Renders the `camera_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_off(assigns) do ~H""" """ end @doc """ Renders the `camera_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_pause(assigns) do ~H""" """ end @doc """ Renders the `camera_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_pin(assigns) do ~H""" """ end @doc """ Renders the `camera_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_plus(assigns) do ~H""" """ end @doc """ Renders the `camera_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_question(assigns) do ~H""" """ end @doc """ Renders the `camera_rotate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_rotate(assigns) do ~H""" """ end @doc """ Renders the `camera_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_search(assigns) do ~H""" """ end @doc """ Renders the `camera_selfie` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_selfie(assigns) do ~H""" """ end @doc """ Renders the `camera_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_share(assigns) do ~H""" """ end @doc """ Renders the `camera_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_star(assigns) do ~H""" """ end @doc """ Renders the `camera_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_up(assigns) do ~H""" """ end @doc """ Renders the `camera_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera_x(assigns) do ~H""" """ end @doc """ Renders the `camera` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camera(assigns) do ~H""" """ end @doc """ Renders the `camper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def camper(assigns) do ~H""" """ end @doc """ Renders the `campfire_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def campfire_filled(assigns) do ~H""" """ end @doc """ Renders the `campfire` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def campfire(assigns) do ~H""" """ end @doc """ Renders the `candle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def candle_filled(assigns) do ~H""" """ end @doc """ Renders the `candle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def candle(assigns) do ~H""" """ end @doc """ Renders the `candy_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def candy_off(assigns) do ~H""" """ end @doc """ Renders the `candy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def candy(assigns) do ~H""" """ end @doc """ Renders the `cane` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cane(assigns) do ~H""" """ end @doc """ Renders the `cannabis` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cannabis(assigns) do ~H""" """ end @doc """ Renders the `capsule_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capsule_filled(assigns) do ~H""" """ end @doc """ Renders the `capsule_horizontal_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capsule_horizontal_filled(assigns) do ~H""" """ end @doc """ Renders the `capsule_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capsule_horizontal(assigns) do ~H""" """ end @doc """ Renders the `capsule` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capsule(assigns) do ~H""" """ end @doc """ Renders the `capture_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capture_filled(assigns) do ~H""" """ end @doc """ Renders the `capture_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capture_off(assigns) do ~H""" """ end @doc """ Renders the `capture` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def capture(assigns) do ~H""" """ end @doc """ Renders the `car_crane` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def car_crane(assigns) do ~H""" """ end @doc """ Renders the `car_crash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def car_crash(assigns) do ~H""" """ end @doc """ Renders the `car_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def car_off(assigns) do ~H""" """ end @doc """ Renders the `car_turbine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def car_turbine(assigns) do ~H""" """ end @doc """ Renders the `car` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def car(assigns) do ~H""" """ end @doc """ Renders the `caravan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caravan(assigns) do ~H""" """ end @doc """ Renders the `cardboards_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cardboards_off(assigns) do ~H""" """ end @doc """ Renders the `cardboards` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cardboards(assigns) do ~H""" """ end @doc """ Renders the `cards_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cards_filled(assigns) do ~H""" """ end @doc """ Renders the `cards` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cards(assigns) do ~H""" """ end @doc """ Renders the `caret_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_down_filled(assigns) do ~H""" """ end @doc """ Renders the `caret_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_down(assigns) do ~H""" """ end @doc """ Renders the `caret_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_left_filled(assigns) do ~H""" """ end @doc """ Renders the `caret_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_left(assigns) do ~H""" """ end @doc """ Renders the `caret_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_right_filled(assigns) do ~H""" """ end @doc """ Renders the `caret_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_right(assigns) do ~H""" """ end @doc """ Renders the `caret_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_up_filled(assigns) do ~H""" """ end @doc """ Renders the `caret_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def caret_up(assigns) do ~H""" """ end @doc """ Renders the `carousel_horizontal_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def carousel_horizontal_filled(assigns) do ~H""" """ end @doc """ Renders the `carousel_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def carousel_horizontal(assigns) do ~H""" """ end @doc """ Renders the `carousel_vertical_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def carousel_vertical_filled(assigns) do ~H""" """ end @doc """ Renders the `carousel_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def carousel_vertical(assigns) do ~H""" """ end @doc """ Renders the `carrot_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def carrot_off(assigns) do ~H""" """ end @doc """ Renders the `carrot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def carrot(assigns) do ~H""" """ end @doc """ Renders the `cash_banknote_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cash_banknote_off(assigns) do ~H""" """ end @doc """ Renders the `cash_banknote` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cash_banknote(assigns) do ~H""" """ end @doc """ Renders the `cash_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cash_off(assigns) do ~H""" """ end @doc """ Renders the `cash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cash(assigns) do ~H""" """ end @doc """ Renders the `cast_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cast_off(assigns) do ~H""" """ end @doc """ Renders the `cast` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cast(assigns) do ~H""" """ end @doc """ Renders the `cat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cat(assigns) do ~H""" """ end @doc """ Renders the `category_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def category_2(assigns) do ~H""" """ end @doc """ Renders the `category_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def category_filled(assigns) do ~H""" """ end @doc """ Renders the `category` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def category(assigns) do ~H""" """ end @doc """ Renders the `ce_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ce_off(assigns) do ~H""" """ end @doc """ Renders the `ce` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ce(assigns) do ~H""" """ end @doc """ Renders the `cell_signal_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell_signal_1(assigns) do ~H""" """ end @doc """ Renders the `cell_signal_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell_signal_2(assigns) do ~H""" """ end @doc """ Renders the `cell_signal_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell_signal_3(assigns) do ~H""" """ end @doc """ Renders the `cell_signal_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell_signal_4(assigns) do ~H""" """ end @doc """ Renders the `cell_signal_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell_signal_5(assigns) do ~H""" """ end @doc """ Renders the `cell_signal_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell_signal_off(assigns) do ~H""" """ end @doc """ Renders the `cell` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cell(assigns) do ~H""" """ end @doc """ Renders the `certificate_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def certificate_2_off(assigns) do ~H""" """ end @doc """ Renders the `certificate_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def certificate_2(assigns) do ~H""" """ end @doc """ Renders the `certificate_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def certificate_off(assigns) do ~H""" """ end @doc """ Renders the `certificate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def certificate(assigns) do ~H""" """ end @doc """ Renders the `chair_director` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chair_director(assigns) do ~H""" """ end @doc """ Renders the `chalkboard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chalkboard_off(assigns) do ~H""" """ end @doc """ Renders the `chalkboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chalkboard(assigns) do ~H""" """ end @doc """ Renders the `charging_pile` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def charging_pile(assigns) do ~H""" """ end @doc """ Renders the `chart_arcs_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_arcs_3(assigns) do ~H""" """ end @doc """ Renders the `chart_arcs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_arcs(assigns) do ~H""" """ end @doc """ Renders the `chart_area_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_area_filled(assigns) do ~H""" """ end @doc """ Renders the `chart_area_line_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_area_line_filled(assigns) do ~H""" """ end @doc """ Renders the `chart_area_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_area_line(assigns) do ~H""" """ end @doc """ Renders the `chart_area` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_area(assigns) do ~H""" """ end @doc """ Renders the `chart_arrows_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_arrows_vertical(assigns) do ~H""" """ end @doc """ Renders the `chart_arrows` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_arrows(assigns) do ~H""" """ end @doc """ Renders the `chart_bar_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_bar_off(assigns) do ~H""" """ end @doc """ Renders the `chart_bar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_bar(assigns) do ~H""" """ end @doc """ Renders the `chart_bubble_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_bubble_filled(assigns) do ~H""" """ end @doc """ Renders the `chart_bubble` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_bubble(assigns) do ~H""" """ end @doc """ Renders the `chart_candle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_candle_filled(assigns) do ~H""" """ end @doc """ Renders the `chart_candle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_candle(assigns) do ~H""" """ end @doc """ Renders the `chart_circles` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_circles(assigns) do ~H""" """ end @doc """ Renders the `chart_donut_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_donut_2(assigns) do ~H""" """ end @doc """ Renders the `chart_donut_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_donut_3(assigns) do ~H""" """ end @doc """ Renders the `chart_donut_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_donut_4(assigns) do ~H""" """ end @doc """ Renders the `chart_donut_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_donut_filled(assigns) do ~H""" """ end @doc """ Renders the `chart_donut` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_donut(assigns) do ~H""" """ end @doc """ Renders the `chart_dots_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_dots_2(assigns) do ~H""" """ end @doc """ Renders the `chart_dots_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_dots_3(assigns) do ~H""" """ end @doc """ Renders the `chart_dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_dots(assigns) do ~H""" """ end @doc """ Renders the `chart_grid_dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_grid_dots(assigns) do ~H""" """ end @doc """ Renders the `chart_histogram` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_histogram(assigns) do ~H""" """ end @doc """ Renders the `chart_infographic` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_infographic(assigns) do ~H""" """ end @doc """ Renders the `chart_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_line(assigns) do ~H""" """ end @doc """ Renders the `chart_pie_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_pie_2(assigns) do ~H""" """ end @doc """ Renders the `chart_pie_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_pie_3(assigns) do ~H""" """ end @doc """ Renders the `chart_pie_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_pie_4(assigns) do ~H""" """ end @doc """ Renders the `chart_pie_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_pie_filled(assigns) do ~H""" """ end @doc """ Renders the `chart_pie_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_pie_off(assigns) do ~H""" """ end @doc """ Renders the `chart_pie` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_pie(assigns) do ~H""" """ end @doc """ Renders the `chart_ppf` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_ppf(assigns) do ~H""" """ end @doc """ Renders the `chart_radar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_radar(assigns) do ~H""" """ end @doc """ Renders the `chart_sankey` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_sankey(assigns) do ~H""" """ end @doc """ Renders the `chart_treemap` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chart_treemap(assigns) do ~H""" """ end @doc """ Renders the `check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def check(assigns) do ~H""" """ end @doc """ Renders the `checkbox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def checkbox(assigns) do ~H""" """ end @doc """ Renders the `checklist` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def checklist(assigns) do ~H""" """ end @doc """ Renders the `checks` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def checks(assigns) do ~H""" """ end @doc """ Renders the `checkup_list` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def checkup_list(assigns) do ~H""" """ end @doc """ Renders the `cheese` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cheese(assigns) do ~H""" """ end @doc """ Renders the `chef_hat_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chef_hat_off(assigns) do ~H""" """ end @doc """ Renders the `chef_hat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chef_hat(assigns) do ~H""" """ end @doc """ Renders the `cherry_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cherry_filled(assigns) do ~H""" """ end @doc """ Renders the `cherry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cherry(assigns) do ~H""" """ end @doc """ Renders the `chess_bishop_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_bishop_filled(assigns) do ~H""" """ end @doc """ Renders the `chess_bishop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_bishop(assigns) do ~H""" """ end @doc """ Renders the `chess_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_filled(assigns) do ~H""" """ end @doc """ Renders the `chess_king_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_king_filled(assigns) do ~H""" """ end @doc """ Renders the `chess_king` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_king(assigns) do ~H""" """ end @doc """ Renders the `chess_knight_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_knight_filled(assigns) do ~H""" """ end @doc """ Renders the `chess_knight` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_knight(assigns) do ~H""" """ end @doc """ Renders the `chess_queen_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_queen_filled(assigns) do ~H""" """ end @doc """ Renders the `chess_queen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_queen(assigns) do ~H""" """ end @doc """ Renders the `chess_rook_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_rook_filled(assigns) do ~H""" """ end @doc """ Renders the `chess_rook` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess_rook(assigns) do ~H""" """ end @doc """ Renders the `chess` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chess(assigns) do ~H""" """ end @doc """ Renders the `chevron_compact_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_compact_down(assigns) do ~H""" """ end @doc """ Renders the `chevron_compact_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_compact_left(assigns) do ~H""" """ end @doc """ Renders the `chevron_compact_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_compact_right(assigns) do ~H""" """ end @doc """ Renders the `chevron_compact_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_compact_up(assigns) do ~H""" """ end @doc """ Renders the `chevron_down_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_down_left(assigns) do ~H""" """ end @doc """ Renders the `chevron_down_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_down_right(assigns) do ~H""" """ end @doc """ Renders the `chevron_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_down(assigns) do ~H""" """ end @doc """ Renders the `chevron_left_pipe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_left_pipe(assigns) do ~H""" """ end @doc """ Renders the `chevron_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_left(assigns) do ~H""" """ end @doc """ Renders the `chevron_right_pipe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_right_pipe(assigns) do ~H""" """ end @doc """ Renders the `chevron_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_right(assigns) do ~H""" """ end @doc """ Renders the `chevron_up_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_up_left(assigns) do ~H""" """ end @doc """ Renders the `chevron_up_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_up_right(assigns) do ~H""" """ end @doc """ Renders the `chevron_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevron_up(assigns) do ~H""" """ end @doc """ Renders the `chevrons_down_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_down_left(assigns) do ~H""" """ end @doc """ Renders the `chevrons_down_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_down_right(assigns) do ~H""" """ end @doc """ Renders the `chevrons_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_down(assigns) do ~H""" """ end @doc """ Renders the `chevrons_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_left(assigns) do ~H""" """ end @doc """ Renders the `chevrons_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_right(assigns) do ~H""" """ end @doc """ Renders the `chevrons_up_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_up_left(assigns) do ~H""" """ end @doc """ Renders the `chevrons_up_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_up_right(assigns) do ~H""" """ end @doc """ Renders the `chevrons_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chevrons_up(assigns) do ~H""" """ end @doc """ Renders the `chisel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def chisel(assigns) do ~H""" """ end @doc """ Renders the `christmas_tree_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def christmas_tree_off(assigns) do ~H""" """ end @doc """ Renders the `christmas_tree` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def christmas_tree(assigns) do ~H""" """ end @doc """ Renders the `circle_0_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_0_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_1_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_2_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_3_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_4_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_5_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_5_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_6_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_6_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_7_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_7_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_8_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_8_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_9_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_9_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_down_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_down_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_down_left_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_down_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_down_left(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_down_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_down_right_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_down_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_down_right(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_down(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_left_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_left(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_right_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_right(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_up_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_up_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_up_left_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_up_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_up_left(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_up_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_up_right_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_up_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_up_right(assigns) do ~H""" """ end @doc """ Renders the `circle_arrow_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_arrow_up(assigns) do ~H""" """ end @doc """ Renders the `circle_caret_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_caret_down(assigns) do ~H""" """ end @doc """ Renders the `circle_caret_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_caret_left(assigns) do ~H""" """ end @doc """ Renders the `circle_caret_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_caret_right(assigns) do ~H""" """ end @doc """ Renders the `circle_caret_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_caret_up(assigns) do ~H""" """ end @doc """ Renders the `circle_check_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_check_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_check(assigns) do ~H""" """ end @doc """ Renders the `circle_chevron_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevron_down(assigns) do ~H""" """ end @doc """ Renders the `circle_chevron_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevron_left(assigns) do ~H""" """ end @doc """ Renders the `circle_chevron_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevron_right(assigns) do ~H""" """ end @doc """ Renders the `circle_chevron_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevron_up(assigns) do ~H""" """ end @doc """ Renders the `circle_chevrons_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevrons_down(assigns) do ~H""" """ end @doc """ Renders the `circle_chevrons_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevrons_left(assigns) do ~H""" """ end @doc """ Renders the `circle_chevrons_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevrons_right(assigns) do ~H""" """ end @doc """ Renders the `circle_chevrons_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_chevrons_up(assigns) do ~H""" """ end @doc """ Renders the `circle_dashed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_dashed(assigns) do ~H""" """ end @doc """ Renders the `circle_dot_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_dot_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_dot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_dot(assigns) do ~H""" """ end @doc """ Renders the `circle_dotted` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_dotted(assigns) do ~H""" """ end @doc """ Renders the `circle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_half_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_half_2(assigns) do ~H""" """ end @doc """ Renders the `circle_half_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_half_vertical(assigns) do ~H""" """ end @doc """ Renders the `circle_half` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_half(assigns) do ~H""" """ end @doc """ Renders the `circle_key_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_key_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_key` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_key(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_a(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_b(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_c` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_c(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_d(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_e` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_e(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_f` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_f(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_g(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_h` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_h(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_i` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_i(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_j` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_j(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_k(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_l` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_l(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_m` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_m(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_n` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_n(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_o` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_o(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_p` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_p(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_q` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_q(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_r` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_r(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_s` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_s(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_t` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_t(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_u` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_u(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_v` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_v(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_w` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_w(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_x(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_y(assigns) do ~H""" """ end @doc """ Renders the `circle_letter_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_letter_z(assigns) do ~H""" """ end @doc """ Renders the `circle_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_minus(assigns) do ~H""" """ end @doc """ Renders the `circle_number_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_0(assigns) do ~H""" """ end @doc """ Renders the `circle_number_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_1(assigns) do ~H""" """ end @doc """ Renders the `circle_number_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_2(assigns) do ~H""" """ end @doc """ Renders the `circle_number_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_3(assigns) do ~H""" """ end @doc """ Renders the `circle_number_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_4(assigns) do ~H""" """ end @doc """ Renders the `circle_number_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_5(assigns) do ~H""" """ end @doc """ Renders the `circle_number_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_6(assigns) do ~H""" """ end @doc """ Renders the `circle_number_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_7(assigns) do ~H""" """ end @doc """ Renders the `circle_number_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_8(assigns) do ~H""" """ end @doc """ Renders the `circle_number_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_number_9(assigns) do ~H""" """ end @doc """ Renders the `circle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_off(assigns) do ~H""" """ end @doc """ Renders the `circle_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_plus(assigns) do ~H""" """ end @doc """ Renders the `circle_rectangle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_rectangle_off(assigns) do ~H""" """ end @doc """ Renders the `circle_rectangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_rectangle(assigns) do ~H""" """ end @doc """ Renders the `circle_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_square(assigns) do ~H""" """ end @doc """ Renders the `circle_triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_triangle(assigns) do ~H""" """ end @doc """ Renders the `circle_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_x_filled(assigns) do ~H""" """ end @doc """ Renders the `circle_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle_x(assigns) do ~H""" """ end @doc """ Renders the `circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circle(assigns) do ~H""" """ end @doc """ Renders the `circles_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circles_filled(assigns) do ~H""" """ end @doc """ Renders the `circles_relation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circles_relation(assigns) do ~H""" """ end @doc """ Renders the `circles` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circles(assigns) do ~H""" """ end @doc """ Renders the `circuit_ammeter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_ammeter(assigns) do ~H""" """ end @doc """ Renders the `circuit_battery` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_battery(assigns) do ~H""" """ end @doc """ Renders the `circuit_bulb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_bulb(assigns) do ~H""" """ end @doc """ Renders the `circuit_capacitor_polarized` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_capacitor_polarized(assigns) do ~H""" """ end @doc """ Renders the `circuit_capacitor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_capacitor(assigns) do ~H""" """ end @doc """ Renders the `circuit_cell_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_cell_plus(assigns) do ~H""" """ end @doc """ Renders the `circuit_cell` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_cell(assigns) do ~H""" """ end @doc """ Renders the `circuit_changeover` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_changeover(assigns) do ~H""" """ end @doc """ Renders the `circuit_diode_zener` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_diode_zener(assigns) do ~H""" """ end @doc """ Renders the `circuit_diode` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_diode(assigns) do ~H""" """ end @doc """ Renders the `circuit_ground_digital` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_ground_digital(assigns) do ~H""" """ end @doc """ Renders the `circuit_ground` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_ground(assigns) do ~H""" """ end @doc """ Renders the `circuit_inductor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_inductor(assigns) do ~H""" """ end @doc """ Renders the `circuit_motor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_motor(assigns) do ~H""" """ end @doc """ Renders the `circuit_pushbutton` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_pushbutton(assigns) do ~H""" """ end @doc """ Renders the `circuit_resistor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_resistor(assigns) do ~H""" """ end @doc """ Renders the `circuit_switch_closed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_switch_closed(assigns) do ~H""" """ end @doc """ Renders the `circuit_switch_open` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_switch_open(assigns) do ~H""" """ end @doc """ Renders the `circuit_voltmeter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def circuit_voltmeter(assigns) do ~H""" """ end @doc """ Renders the `clear_all` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clear_all(assigns) do ~H""" """ end @doc """ Renders the `clear_formatting` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clear_formatting(assigns) do ~H""" """ end @doc """ Renders the `click` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def click(assigns) do ~H""" """ end @doc """ Renders the `clipboard_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_check(assigns) do ~H""" """ end @doc """ Renders the `clipboard_copy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_copy(assigns) do ~H""" """ end @doc """ Renders the `clipboard_data` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_data(assigns) do ~H""" """ end @doc """ Renders the `clipboard_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_heart(assigns) do ~H""" """ end @doc """ Renders the `clipboard_list` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_list(assigns) do ~H""" """ end @doc """ Renders the `clipboard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_off(assigns) do ~H""" """ end @doc """ Renders the `clipboard_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_plus(assigns) do ~H""" """ end @doc """ Renders the `clipboard_text` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_text(assigns) do ~H""" """ end @doc """ Renders the `clipboard_typography` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_typography(assigns) do ~H""" """ end @doc """ Renders the `clipboard_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard_x(assigns) do ~H""" """ end @doc """ Renders the `clipboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clipboard(assigns) do ~H""" """ end @doc """ Renders the `clock_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_2(assigns) do ~H""" """ end @doc """ Renders the `clock_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_bolt(assigns) do ~H""" """ end @doc """ Renders the `clock_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_cancel(assigns) do ~H""" """ end @doc """ Renders the `clock_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_check(assigns) do ~H""" """ end @doc """ Renders the `clock_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_code(assigns) do ~H""" """ end @doc """ Renders the `clock_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_cog(assigns) do ~H""" """ end @doc """ Renders the `clock_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_dollar(assigns) do ~H""" """ end @doc """ Renders the `clock_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_down(assigns) do ~H""" """ end @doc """ Renders the `clock_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_edit(assigns) do ~H""" """ end @doc """ Renders the `clock_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_exclamation(assigns) do ~H""" """ end @doc """ Renders the `clock_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_filled(assigns) do ~H""" """ end @doc """ Renders the `clock_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_heart(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_1(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_10` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_10(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_11` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_11(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_12` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_12(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_2(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_3(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_4(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_5(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_6(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_7(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_8(assigns) do ~H""" """ end @doc """ Renders the `clock_hour_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_hour_9(assigns) do ~H""" """ end @doc """ Renders the `clock_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_minus(assigns) do ~H""" """ end @doc """ Renders the `clock_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_off(assigns) do ~H""" """ end @doc """ Renders the `clock_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_pause(assigns) do ~H""" """ end @doc """ Renders the `clock_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_pin(assigns) do ~H""" """ end @doc """ Renders the `clock_play` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_play(assigns) do ~H""" """ end @doc """ Renders the `clock_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_plus(assigns) do ~H""" """ end @doc """ Renders the `clock_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_question(assigns) do ~H""" """ end @doc """ Renders the `clock_record` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_record(assigns) do ~H""" """ end @doc """ Renders the `clock_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_search(assigns) do ~H""" """ end @doc """ Renders the `clock_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_share(assigns) do ~H""" """ end @doc """ Renders the `clock_shield` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_shield(assigns) do ~H""" """ end @doc """ Renders the `clock_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_star(assigns) do ~H""" """ end @doc """ Renders the `clock_stop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_stop(assigns) do ~H""" """ end @doc """ Renders the `clock_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_up(assigns) do ~H""" """ end @doc """ Renders the `clock_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock_x(assigns) do ~H""" """ end @doc """ Renders the `clock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clock(assigns) do ~H""" """ end @doc """ Renders the `clothes_rack_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clothes_rack_off(assigns) do ~H""" """ end @doc """ Renders the `clothes_rack` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clothes_rack(assigns) do ~H""" """ end @doc """ Renders the `cloud_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_bolt(assigns) do ~H""" """ end @doc """ Renders the `cloud_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_cancel(assigns) do ~H""" """ end @doc """ Renders the `cloud_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_check(assigns) do ~H""" """ end @doc """ Renders the `cloud_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_code(assigns) do ~H""" """ end @doc """ Renders the `cloud_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_cog(assigns) do ~H""" """ end @doc """ Renders the `cloud_computing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_computing(assigns) do ~H""" """ end @doc """ Renders the `cloud_data_connection` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_data_connection(assigns) do ~H""" """ end @doc """ Renders the `cloud_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_dollar(assigns) do ~H""" """ end @doc """ Renders the `cloud_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_down(assigns) do ~H""" """ end @doc """ Renders the `cloud_download` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_download(assigns) do ~H""" """ end @doc """ Renders the `cloud_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_exclamation(assigns) do ~H""" """ end @doc """ Renders the `cloud_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_filled(assigns) do ~H""" """ end @doc """ Renders the `cloud_fog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_fog(assigns) do ~H""" """ end @doc """ Renders the `cloud_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_heart(assigns) do ~H""" """ end @doc """ Renders the `cloud_lock_open` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_lock_open(assigns) do ~H""" """ end @doc """ Renders the `cloud_lock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_lock(assigns) do ~H""" """ end @doc """ Renders the `cloud_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_minus(assigns) do ~H""" """ end @doc """ Renders the `cloud_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_off(assigns) do ~H""" """ end @doc """ Renders the `cloud_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_pause(assigns) do ~H""" """ end @doc """ Renders the `cloud_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_pin(assigns) do ~H""" """ end @doc """ Renders the `cloud_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_plus(assigns) do ~H""" """ end @doc """ Renders the `cloud_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_question(assigns) do ~H""" """ end @doc """ Renders the `cloud_rain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_rain(assigns) do ~H""" """ end @doc """ Renders the `cloud_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_search(assigns) do ~H""" """ end @doc """ Renders the `cloud_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_share(assigns) do ~H""" """ end @doc """ Renders the `cloud_snow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_snow(assigns) do ~H""" """ end @doc """ Renders the `cloud_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_star(assigns) do ~H""" """ end @doc """ Renders the `cloud_storm` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_storm(assigns) do ~H""" """ end @doc """ Renders the `cloud_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_up(assigns) do ~H""" """ end @doc """ Renders the `cloud_upload` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_upload(assigns) do ~H""" """ end @doc """ Renders the `cloud_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud_x(assigns) do ~H""" """ end @doc """ Renders the `cloud` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cloud(assigns) do ~H""" """ end @doc """ Renders the `clover_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clover_2(assigns) do ~H""" """ end @doc """ Renders the `clover` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clover(assigns) do ~H""" """ end @doc """ Renders the `clubs_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clubs_filled(assigns) do ~H""" """ end @doc """ Renders the `clubs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def clubs(assigns) do ~H""" """ end @doc """ Renders the `code_asterix` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_asterix(assigns) do ~H""" """ end @doc """ Renders the `code_circle_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_circle_2(assigns) do ~H""" """ end @doc """ Renders the `code_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_circle(assigns) do ~H""" """ end @doc """ Renders the `code_dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_dots(assigns) do ~H""" """ end @doc """ Renders the `code_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_minus(assigns) do ~H""" """ end @doc """ Renders the `code_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_off(assigns) do ~H""" """ end @doc """ Renders the `code_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code_plus(assigns) do ~H""" """ end @doc """ Renders the `code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def code(assigns) do ~H""" """ end @doc """ Renders the `coffee_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coffee_off(assigns) do ~H""" """ end @doc """ Renders the `coffee` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coffee(assigns) do ~H""" """ end @doc """ Renders the `coffin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coffin(assigns) do ~H""" """ end @doc """ Renders the `coin_bitcoin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_bitcoin(assigns) do ~H""" """ end @doc """ Renders the `coin_euro` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_euro(assigns) do ~H""" """ end @doc """ Renders the `coin_monero` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_monero(assigns) do ~H""" """ end @doc """ Renders the `coin_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_off(assigns) do ~H""" """ end @doc """ Renders the `coin_pound` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_pound(assigns) do ~H""" """ end @doc """ Renders the `coin_rupee` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_rupee(assigns) do ~H""" """ end @doc """ Renders the `coin_yen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_yen(assigns) do ~H""" """ end @doc """ Renders the `coin_yuan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin_yuan(assigns) do ~H""" """ end @doc """ Renders the `coin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coin(assigns) do ~H""" """ end @doc """ Renders the `coins` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def coins(assigns) do ~H""" """ end @doc """ Renders the `color_filter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def color_filter(assigns) do ~H""" """ end @doc """ Renders the `color_picker_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def color_picker_off(assigns) do ~H""" """ end @doc """ Renders the `color_picker` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def color_picker(assigns) do ~H""" """ end @doc """ Renders the `color_swatch_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def color_swatch_off(assigns) do ~H""" """ end @doc """ Renders the `color_swatch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def color_swatch(assigns) do ~H""" """ end @doc """ Renders the `column_insert_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def column_insert_left(assigns) do ~H""" """ end @doc """ Renders the `column_insert_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def column_insert_right(assigns) do ~H""" """ end @doc """ Renders the `column_remove` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def column_remove(assigns) do ~H""" """ end @doc """ Renders the `columns_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def columns_1(assigns) do ~H""" """ end @doc """ Renders the `columns_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def columns_2(assigns) do ~H""" """ end @doc """ Renders the `columns_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def columns_3(assigns) do ~H""" """ end @doc """ Renders the `columns_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def columns_off(assigns) do ~H""" """ end @doc """ Renders the `columns` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def columns(assigns) do ~H""" """ end @doc """ Renders the `comet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def comet(assigns) do ~H""" """ end @doc """ Renders the `command_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def command_off(assigns) do ~H""" """ end @doc """ Renders the `command` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def command(assigns) do ~H""" """ end @doc """ Renders the `compass_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def compass_off(assigns) do ~H""" """ end @doc """ Renders the `compass` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def compass(assigns) do ~H""" """ end @doc """ Renders the `components_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def components_off(assigns) do ~H""" """ end @doc """ Renders the `components` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def components(assigns) do ~H""" """ end @doc """ Renders the `cone_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cone_2(assigns) do ~H""" """ end @doc """ Renders the `cone_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cone_off(assigns) do ~H""" """ end @doc """ Renders the `cone_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cone_plus(assigns) do ~H""" """ end @doc """ Renders the `cone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cone(assigns) do ~H""" """ end @doc """ Renders the `confetti_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def confetti_off(assigns) do ~H""" """ end @doc """ Renders the `confetti` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def confetti(assigns) do ~H""" """ end @doc """ Renders the `confucius` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def confucius(assigns) do ~H""" """ end @doc """ Renders the `container_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def container_off(assigns) do ~H""" """ end @doc """ Renders the `container` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def container(assigns) do ~H""" """ end @doc """ Renders the `contrast_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def contrast_2_off(assigns) do ~H""" """ end @doc """ Renders the `contrast_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def contrast_2(assigns) do ~H""" """ end @doc """ Renders the `contrast_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def contrast_off(assigns) do ~H""" """ end @doc """ Renders the `contrast` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def contrast(assigns) do ~H""" """ end @doc """ Renders the `cooker` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cooker(assigns) do ~H""" """ end @doc """ Renders the `cookie_man` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cookie_man(assigns) do ~H""" """ end @doc """ Renders the `cookie_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cookie_off(assigns) do ~H""" """ end @doc """ Renders the `cookie` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cookie(assigns) do ~H""" """ end @doc """ Renders the `copy_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copy_off(assigns) do ~H""" """ end @doc """ Renders the `copy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copy(assigns) do ~H""" """ end @doc """ Renders the `copyleft_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copyleft_filled(assigns) do ~H""" """ end @doc """ Renders the `copyleft_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copyleft_off(assigns) do ~H""" """ end @doc """ Renders the `copyleft` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copyleft(assigns) do ~H""" """ end @doc """ Renders the `copyright_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copyright_filled(assigns) do ~H""" """ end @doc """ Renders the `copyright_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copyright_off(assigns) do ~H""" """ end @doc """ Renders the `copyright` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def copyright(assigns) do ~H""" """ end @doc """ Renders the `corner_down_left_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_down_left_double(assigns) do ~H""" """ end @doc """ Renders the `corner_down_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_down_left(assigns) do ~H""" """ end @doc """ Renders the `corner_down_right_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_down_right_double(assigns) do ~H""" """ end @doc """ Renders the `corner_down_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_down_right(assigns) do ~H""" """ end @doc """ Renders the `corner_left_down_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_left_down_double(assigns) do ~H""" """ end @doc """ Renders the `corner_left_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_left_down(assigns) do ~H""" """ end @doc """ Renders the `corner_left_up_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_left_up_double(assigns) do ~H""" """ end @doc """ Renders the `corner_left_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_left_up(assigns) do ~H""" """ end @doc """ Renders the `corner_right_down_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_right_down_double(assigns) do ~H""" """ end @doc """ Renders the `corner_right_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_right_down(assigns) do ~H""" """ end @doc """ Renders the `corner_right_up_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_right_up_double(assigns) do ~H""" """ end @doc """ Renders the `corner_right_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_right_up(assigns) do ~H""" """ end @doc """ Renders the `corner_up_left_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_up_left_double(assigns) do ~H""" """ end @doc """ Renders the `corner_up_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_up_left(assigns) do ~H""" """ end @doc """ Renders the `corner_up_right_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_up_right_double(assigns) do ~H""" """ end @doc """ Renders the `corner_up_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def corner_up_right(assigns) do ~H""" """ end @doc """ Renders the `cpu_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cpu_2(assigns) do ~H""" """ end @doc """ Renders the `cpu_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cpu_off(assigns) do ~H""" """ end @doc """ Renders the `cpu` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cpu(assigns) do ~H""" """ end @doc """ Renders the `crane_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crane_off(assigns) do ~H""" """ end @doc """ Renders the `crane` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crane(assigns) do ~H""" """ end @doc """ Renders the `creative_commons_by` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons_by(assigns) do ~H""" """ end @doc """ Renders the `creative_commons_nc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons_nc(assigns) do ~H""" """ end @doc """ Renders the `creative_commons_nd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons_nd(assigns) do ~H""" """ end @doc """ Renders the `creative_commons_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons_off(assigns) do ~H""" """ end @doc """ Renders the `creative_commons_sa` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons_sa(assigns) do ~H""" """ end @doc """ Renders the `creative_commons_zero` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons_zero(assigns) do ~H""" """ end @doc """ Renders the `creative_commons` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def creative_commons(assigns) do ~H""" """ end @doc """ Renders the `credit_card_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def credit_card_off(assigns) do ~H""" """ end @doc """ Renders the `credit_card` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def credit_card(assigns) do ~H""" """ end @doc """ Renders the `cricket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cricket(assigns) do ~H""" """ end @doc """ Renders the `crop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crop(assigns) do ~H""" """ end @doc """ Renders the `cross_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cross_filled(assigns) do ~H""" """ end @doc """ Renders the `cross_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cross_off(assigns) do ~H""" """ end @doc """ Renders the `cross` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cross(assigns) do ~H""" """ end @doc """ Renders the `crosshair` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crosshair(assigns) do ~H""" """ end @doc """ Renders the `crown_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crown_off(assigns) do ~H""" """ end @doc """ Renders the `crown` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crown(assigns) do ~H""" """ end @doc """ Renders the `crutches_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crutches_off(assigns) do ~H""" """ end @doc """ Renders the `crutches` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crutches(assigns) do ~H""" """ end @doc """ Renders the `crystal_ball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def crystal_ball(assigns) do ~H""" """ end @doc """ Renders the `csv` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def csv(assigns) do ~H""" """ end @doc """ Renders the `cube_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cube_off(assigns) do ~H""" """ end @doc """ Renders the `cube_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cube_plus(assigns) do ~H""" """ end @doc """ Renders the `cube_send` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cube_send(assigns) do ~H""" """ end @doc """ Renders the `cube_unfolded` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cube_unfolded(assigns) do ~H""" """ end @doc """ Renders the `cube` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cube(assigns) do ~H""" """ end @doc """ Renders the `cup_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cup_off(assigns) do ~H""" """ end @doc """ Renders the `cup` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cup(assigns) do ~H""" """ end @doc """ Renders the `curling` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def curling(assigns) do ~H""" """ end @doc """ Renders the `curly_loop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def curly_loop(assigns) do ~H""" """ end @doc """ Renders the `currency_afghani` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_afghani(assigns) do ~H""" """ end @doc """ Renders the `currency_bahraini` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_bahraini(assigns) do ~H""" """ end @doc """ Renders the `currency_baht` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_baht(assigns) do ~H""" """ end @doc """ Renders the `currency_bitcoin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_bitcoin(assigns) do ~H""" """ end @doc """ Renders the `currency_cent` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_cent(assigns) do ~H""" """ end @doc """ Renders the `currency_dinar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dinar(assigns) do ~H""" """ end @doc """ Renders the `currency_dirham` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dirham(assigns) do ~H""" """ end @doc """ Renders the `currency_dogecoin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dogecoin(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_australian` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_australian(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_brunei` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_brunei(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_canadian` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_canadian(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_guyanese` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_guyanese(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_off(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_singapore` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_singapore(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar_zimbabwean` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar_zimbabwean(assigns) do ~H""" """ end @doc """ Renders the `currency_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dollar(assigns) do ~H""" """ end @doc """ Renders the `currency_dong` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dong(assigns) do ~H""" """ end @doc """ Renders the `currency_dram` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_dram(assigns) do ~H""" """ end @doc """ Renders the `currency_ethereum` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_ethereum(assigns) do ~H""" """ end @doc """ Renders the `currency_euro_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_euro_off(assigns) do ~H""" """ end @doc """ Renders the `currency_euro` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_euro(assigns) do ~H""" """ end @doc """ Renders the `currency_florin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_florin(assigns) do ~H""" """ end @doc """ Renders the `currency_forint` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_forint(assigns) do ~H""" """ end @doc """ Renders the `currency_frank` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_frank(assigns) do ~H""" """ end @doc """ Renders the `currency_guarani` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_guarani(assigns) do ~H""" """ end @doc """ Renders the `currency_hryvnia` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_hryvnia(assigns) do ~H""" """ end @doc """ Renders the `currency_iranian_rial` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_iranian_rial(assigns) do ~H""" """ end @doc """ Renders the `currency_kip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_kip(assigns) do ~H""" """ end @doc """ Renders the `currency_krone_czech` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_krone_czech(assigns) do ~H""" """ end @doc """ Renders the `currency_krone_danish` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_krone_danish(assigns) do ~H""" """ end @doc """ Renders the `currency_krone_swedish` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_krone_swedish(assigns) do ~H""" """ end @doc """ Renders the `currency_lari` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_lari(assigns) do ~H""" """ end @doc """ Renders the `currency_leu` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_leu(assigns) do ~H""" """ end @doc """ Renders the `currency_lira` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_lira(assigns) do ~H""" """ end @doc """ Renders the `currency_litecoin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_litecoin(assigns) do ~H""" """ end @doc """ Renders the `currency_lyd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_lyd(assigns) do ~H""" """ end @doc """ Renders the `currency_manat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_manat(assigns) do ~H""" """ end @doc """ Renders the `currency_monero` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_monero(assigns) do ~H""" """ end @doc """ Renders the `currency_naira` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_naira(assigns) do ~H""" """ end @doc """ Renders the `currency_nano` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_nano(assigns) do ~H""" """ end @doc """ Renders the `currency_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_off(assigns) do ~H""" """ end @doc """ Renders the `currency_paanga` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_paanga(assigns) do ~H""" """ end @doc """ Renders the `currency_peso` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_peso(assigns) do ~H""" """ end @doc """ Renders the `currency_pound_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_pound_off(assigns) do ~H""" """ end @doc """ Renders the `currency_pound` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_pound(assigns) do ~H""" """ end @doc """ Renders the `currency_quetzal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_quetzal(assigns) do ~H""" """ end @doc """ Renders the `currency_real` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_real(assigns) do ~H""" """ end @doc """ Renders the `currency_renminbi` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_renminbi(assigns) do ~H""" """ end @doc """ Renders the `currency_ripple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_ripple(assigns) do ~H""" """ end @doc """ Renders the `currency_riyal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_riyal(assigns) do ~H""" """ end @doc """ Renders the `currency_rubel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_rubel(assigns) do ~H""" """ end @doc """ Renders the `currency_rufiyaa` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_rufiyaa(assigns) do ~H""" """ end @doc """ Renders the `currency_rupee_nepalese` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_rupee_nepalese(assigns) do ~H""" """ end @doc """ Renders the `currency_rupee` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_rupee(assigns) do ~H""" """ end @doc """ Renders the `currency_shekel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_shekel(assigns) do ~H""" """ end @doc """ Renders the `currency_solana` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_solana(assigns) do ~H""" """ end @doc """ Renders the `currency_som` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_som(assigns) do ~H""" """ end @doc """ Renders the `currency_taka` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_taka(assigns) do ~H""" """ end @doc """ Renders the `currency_tenge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_tenge(assigns) do ~H""" """ end @doc """ Renders the `currency_tugrik` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_tugrik(assigns) do ~H""" """ end @doc """ Renders the `currency_won` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_won(assigns) do ~H""" """ end @doc """ Renders the `currency_yen_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_yen_off(assigns) do ~H""" """ end @doc """ Renders the `currency_yen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_yen(assigns) do ~H""" """ end @doc """ Renders the `currency_yuan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_yuan(assigns) do ~H""" """ end @doc """ Renders the `currency_zloty` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency_zloty(assigns) do ~H""" """ end @doc """ Renders the `currency` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def currency(assigns) do ~H""" """ end @doc """ Renders the `current_location_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def current_location_off(assigns) do ~H""" """ end @doc """ Renders the `current_location` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def current_location(assigns) do ~H""" """ end @doc """ Renders the `cursor_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cursor_off(assigns) do ~H""" """ end @doc """ Renders the `cursor_text` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cursor_text(assigns) do ~H""" """ end @doc """ Renders the `cut` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cut(assigns) do ~H""" """ end @doc """ Renders the `cylinder_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cylinder_off(assigns) do ~H""" """ end @doc """ Renders the `cylinder_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cylinder_plus(assigns) do ~H""" """ end @doc """ Renders the `cylinder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def cylinder(assigns) do ~H""" """ end @doc """ Renders the `dashboard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dashboard_off(assigns) do ~H""" """ end @doc """ Renders the `dashboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dashboard(assigns) do ~H""" """ end @doc """ Renders the `database_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_cog(assigns) do ~H""" """ end @doc """ Renders the `database_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_dollar(assigns) do ~H""" """ end @doc """ Renders the `database_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_edit(assigns) do ~H""" """ end @doc """ Renders the `database_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_exclamation(assigns) do ~H""" """ end @doc """ Renders the `database_export` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_export(assigns) do ~H""" """ end @doc """ Renders the `database_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_heart(assigns) do ~H""" """ end @doc """ Renders the `database_import` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_import(assigns) do ~H""" """ end @doc """ Renders the `database_leak` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_leak(assigns) do ~H""" """ end @doc """ Renders the `database_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_minus(assigns) do ~H""" """ end @doc """ Renders the `database_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_off(assigns) do ~H""" """ end @doc """ Renders the `database_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_plus(assigns) do ~H""" """ end @doc """ Renders the `database_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_search(assigns) do ~H""" """ end @doc """ Renders the `database_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_share(assigns) do ~H""" """ end @doc """ Renders the `database_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_star(assigns) do ~H""" """ end @doc """ Renders the `database_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database_x(assigns) do ~H""" """ end @doc """ Renders the `database` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def database(assigns) do ~H""" """ end @doc """ Renders the `decimal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def decimal(assigns) do ~H""" """ end @doc """ Renders the `deer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def deer(assigns) do ~H""" """ end @doc """ Renders the `delta` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def delta(assigns) do ~H""" """ end @doc """ Renders the `dental_broken` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dental_broken(assigns) do ~H""" """ end @doc """ Renders the `dental_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dental_off(assigns) do ~H""" """ end @doc """ Renders the `dental` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dental(assigns) do ~H""" """ end @doc """ Renders the `deselect` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def deselect(assigns) do ~H""" """ end @doc """ Renders the `details_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def details_off(assigns) do ~H""" """ end @doc """ Renders the `details` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def details(assigns) do ~H""" """ end @doc """ Renders the `device_airpods_case` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_airpods_case(assigns) do ~H""" """ end @doc """ Renders the `device_airpods` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_airpods(assigns) do ~H""" """ end @doc """ Renders the `device_airtag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_airtag(assigns) do ~H""" """ end @doc """ Renders the `device_analytics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_analytics(assigns) do ~H""" """ end @doc """ Renders the `device_audio_tape` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_audio_tape(assigns) do ~H""" """ end @doc """ Renders the `device_camera_phone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_camera_phone(assigns) do ~H""" """ end @doc """ Renders the `device_cctv_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_cctv_off(assigns) do ~H""" """ end @doc """ Renders the `device_cctv` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_cctv(assigns) do ~H""" """ end @doc """ Renders the `device_computer_camera_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_computer_camera_off(assigns) do ~H""" """ end @doc """ Renders the `device_computer_camera` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_computer_camera(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_analytics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_analytics(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_check(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_code(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_cog(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_down(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_heart(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_minus(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_off(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_pause(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_pin(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_plus(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_question(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_search(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_share(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_star(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_up(assigns) do ~H""" """ end @doc """ Renders the `device_desktop_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop_x(assigns) do ~H""" """ end @doc """ Renders the `device_desktop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_desktop(assigns) do ~H""" """ end @doc """ Renders the `device_floppy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_floppy(assigns) do ~H""" """ end @doc """ Renders the `device_gamepad_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_gamepad_2(assigns) do ~H""" """ end @doc """ Renders the `device_gamepad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_gamepad(assigns) do ~H""" """ end @doc """ Renders the `device_heart_monitor_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_heart_monitor_filled(assigns) do ~H""" """ end @doc """ Renders the `device_heart_monitor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_heart_monitor(assigns) do ~H""" """ end @doc """ Renders the `device_imac_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_imac_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_imac_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_check(assigns) do ~H""" """ end @doc """ Renders the `device_imac_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_code(assigns) do ~H""" """ end @doc """ Renders the `device_imac_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_cog(assigns) do ~H""" """ end @doc """ Renders the `device_imac_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_imac_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_down(assigns) do ~H""" """ end @doc """ Renders the `device_imac_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_imac_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_heart(assigns) do ~H""" """ end @doc """ Renders the `device_imac_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_minus(assigns) do ~H""" """ end @doc """ Renders the `device_imac_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_off(assigns) do ~H""" """ end @doc """ Renders the `device_imac_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_pause(assigns) do ~H""" """ end @doc """ Renders the `device_imac_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_pin(assigns) do ~H""" """ end @doc """ Renders the `device_imac_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_plus(assigns) do ~H""" """ end @doc """ Renders the `device_imac_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_question(assigns) do ~H""" """ end @doc """ Renders the `device_imac_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_search(assigns) do ~H""" """ end @doc """ Renders the `device_imac_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_share(assigns) do ~H""" """ end @doc """ Renders the `device_imac_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_star(assigns) do ~H""" """ end @doc """ Renders the `device_imac_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_up(assigns) do ~H""" """ end @doc """ Renders the `device_imac_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac_x(assigns) do ~H""" """ end @doc """ Renders the `device_imac` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_imac(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_check(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_code(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_cog(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_down(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_heart(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_check(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_code(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_cog(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_down(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_heart(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_minus(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_off(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_pause(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_pin(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_plus(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_question(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_search(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_share(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_star(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_up(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal_x(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_horizontal(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_minus(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_off(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_pause(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_pin(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_plus(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_question(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_search(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_share(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_star(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_up(assigns) do ~H""" """ end @doc """ Renders the `device_ipad_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad_x(assigns) do ~H""" """ end @doc """ Renders the `device_ipad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_ipad(assigns) do ~H""" """ end @doc """ Renders the `device_landline_phone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_landline_phone(assigns) do ~H""" """ end @doc """ Renders the `device_laptop_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_laptop_off(assigns) do ~H""" """ end @doc """ Renders the `device_laptop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_laptop(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_charging` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_charging(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_check(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_code(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_cog(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_down(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_filled(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_heart(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_message` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_message(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_minus(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_off(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_pause(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_pin(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_plus(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_question(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_rotated` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_rotated(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_search(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_share(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_star(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_up(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_vibration` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_vibration(assigns) do ~H""" """ end @doc """ Renders the `device_mobile_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile_x(assigns) do ~H""" """ end @doc """ Renders the `device_mobile` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_mobile(assigns) do ~H""" """ end @doc """ Renders the `device_nintendo_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_nintendo_off(assigns) do ~H""" """ end @doc """ Renders the `device_nintendo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_nintendo(assigns) do ~H""" """ end @doc """ Renders the `device_projector` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_projector(assigns) do ~H""" """ end @doc """ Renders the `device_remote` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_remote(assigns) do ~H""" """ end @doc """ Renders the `device_sd_card` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_sd_card(assigns) do ~H""" """ end @doc """ Renders the `device_sim_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_sim_1(assigns) do ~H""" """ end @doc """ Renders the `device_sim_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_sim_2(assigns) do ~H""" """ end @doc """ Renders the `device_sim_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_sim_3(assigns) do ~H""" """ end @doc """ Renders the `device_sim` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_sim(assigns) do ~H""" """ end @doc """ Renders the `device_speaker_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_speaker_off(assigns) do ~H""" """ end @doc """ Renders the `device_speaker` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_speaker(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_check(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_code(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_cog(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_down(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_filled(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_heart(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_minus(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_off(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_pause(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_pin(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_plus(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_question(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_search(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_share(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_star(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_up(assigns) do ~H""" """ end @doc """ Renders the `device_tablet_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet_x(assigns) do ~H""" """ end @doc """ Renders the `device_tablet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tablet(assigns) do ~H""" """ end @doc """ Renders the `device_tv_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tv_off(assigns) do ~H""" """ end @doc """ Renders the `device_tv_old` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tv_old(assigns) do ~H""" """ end @doc """ Renders the `device_tv` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_tv(assigns) do ~H""" """ end @doc """ Renders the `device_vision_pro` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_vision_pro(assigns) do ~H""" """ end @doc """ Renders the `device_watch_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_bolt(assigns) do ~H""" """ end @doc """ Renders the `device_watch_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_cancel(assigns) do ~H""" """ end @doc """ Renders the `device_watch_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_check(assigns) do ~H""" """ end @doc """ Renders the `device_watch_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_code(assigns) do ~H""" """ end @doc """ Renders the `device_watch_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_cog(assigns) do ~H""" """ end @doc """ Renders the `device_watch_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_dollar(assigns) do ~H""" """ end @doc """ Renders the `device_watch_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_down(assigns) do ~H""" """ end @doc """ Renders the `device_watch_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_exclamation(assigns) do ~H""" """ end @doc """ Renders the `device_watch_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_heart(assigns) do ~H""" """ end @doc """ Renders the `device_watch_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_minus(assigns) do ~H""" """ end @doc """ Renders the `device_watch_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_off(assigns) do ~H""" """ end @doc """ Renders the `device_watch_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_pause(assigns) do ~H""" """ end @doc """ Renders the `device_watch_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_pin(assigns) do ~H""" """ end @doc """ Renders the `device_watch_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_plus(assigns) do ~H""" """ end @doc """ Renders the `device_watch_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_question(assigns) do ~H""" """ end @doc """ Renders the `device_watch_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_search(assigns) do ~H""" """ end @doc """ Renders the `device_watch_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_share(assigns) do ~H""" """ end @doc """ Renders the `device_watch_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_star(assigns) do ~H""" """ end @doc """ Renders the `device_watch_stats_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_stats_2(assigns) do ~H""" """ end @doc """ Renders the `device_watch_stats` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_stats(assigns) do ~H""" """ end @doc """ Renders the `device_watch_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_up(assigns) do ~H""" """ end @doc """ Renders the `device_watch_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch_x(assigns) do ~H""" """ end @doc """ Renders the `device_watch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def device_watch(assigns) do ~H""" """ end @doc """ Renders the `devices_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_2(assigns) do ~H""" """ end @doc """ Renders the `devices_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_bolt(assigns) do ~H""" """ end @doc """ Renders the `devices_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_cancel(assigns) do ~H""" """ end @doc """ Renders the `devices_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_check(assigns) do ~H""" """ end @doc """ Renders the `devices_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_code(assigns) do ~H""" """ end @doc """ Renders the `devices_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_cog(assigns) do ~H""" """ end @doc """ Renders the `devices_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_dollar(assigns) do ~H""" """ end @doc """ Renders the `devices_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_down(assigns) do ~H""" """ end @doc """ Renders the `devices_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_exclamation(assigns) do ~H""" """ end @doc """ Renders the `devices_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_heart(assigns) do ~H""" """ end @doc """ Renders the `devices_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_minus(assigns) do ~H""" """ end @doc """ Renders the `devices_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_off(assigns) do ~H""" """ end @doc """ Renders the `devices_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_pause(assigns) do ~H""" """ end @doc """ Renders the `devices_pc_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_pc_off(assigns) do ~H""" """ end @doc """ Renders the `devices_pc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_pc(assigns) do ~H""" """ end @doc """ Renders the `devices_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_pin(assigns) do ~H""" """ end @doc """ Renders the `devices_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_plus(assigns) do ~H""" """ end @doc """ Renders the `devices_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_question(assigns) do ~H""" """ end @doc """ Renders the `devices_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_search(assigns) do ~H""" """ end @doc """ Renders the `devices_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_share(assigns) do ~H""" """ end @doc """ Renders the `devices_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_star(assigns) do ~H""" """ end @doc """ Renders the `devices_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_up(assigns) do ~H""" """ end @doc """ Renders the `devices_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices_x(assigns) do ~H""" """ end @doc """ Renders the `devices` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def devices(assigns) do ~H""" """ end @doc """ Renders the `diabolo_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diabolo_off(assigns) do ~H""" """ end @doc """ Renders the `diabolo_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diabolo_plus(assigns) do ~H""" """ end @doc """ Renders the `diabolo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diabolo(assigns) do ~H""" """ end @doc """ Renders the `dialpad_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dialpad_filled(assigns) do ~H""" """ end @doc """ Renders the `dialpad_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dialpad_off(assigns) do ~H""" """ end @doc """ Renders the `dialpad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dialpad(assigns) do ~H""" """ end @doc """ Renders the `diamond_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diamond_filled(assigns) do ~H""" """ end @doc """ Renders the `diamond_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diamond_off(assigns) do ~H""" """ end @doc """ Renders the `diamond` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diamond(assigns) do ~H""" """ end @doc """ Renders the `diamonds_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diamonds_filled(assigns) do ~H""" """ end @doc """ Renders the `diamonds` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def diamonds(assigns) do ~H""" """ end @doc """ Renders the `dice_1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_1_filled(assigns) do ~H""" """ end @doc """ Renders the `dice_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_1(assigns) do ~H""" """ end @doc """ Renders the `dice_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_2_filled(assigns) do ~H""" """ end @doc """ Renders the `dice_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_2(assigns) do ~H""" """ end @doc """ Renders the `dice_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_3_filled(assigns) do ~H""" """ end @doc """ Renders the `dice_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_3(assigns) do ~H""" """ end @doc """ Renders the `dice_4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_4_filled(assigns) do ~H""" """ end @doc """ Renders the `dice_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_4(assigns) do ~H""" """ end @doc """ Renders the `dice_5_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_5_filled(assigns) do ~H""" """ end @doc """ Renders the `dice_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_5(assigns) do ~H""" """ end @doc """ Renders the `dice_6_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_6_filled(assigns) do ~H""" """ end @doc """ Renders the `dice_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_6(assigns) do ~H""" """ end @doc """ Renders the `dice_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice_filled(assigns) do ~H""" """ end @doc """ Renders the `dice` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dice(assigns) do ~H""" """ end @doc """ Renders the `dimensions` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dimensions(assigns) do ~H""" """ end @doc """ Renders the `direction_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def direction_horizontal(assigns) do ~H""" """ end @doc """ Renders the `direction_sign_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def direction_sign_filled(assigns) do ~H""" """ end @doc """ Renders the `direction_sign_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def direction_sign_off(assigns) do ~H""" """ end @doc """ Renders the `direction_sign` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def direction_sign(assigns) do ~H""" """ end @doc """ Renders the `direction` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def direction(assigns) do ~H""" """ end @doc """ Renders the `directions_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def directions_off(assigns) do ~H""" """ end @doc """ Renders the `directions` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def directions(assigns) do ~H""" """ end @doc """ Renders the `disabled_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def disabled_2(assigns) do ~H""" """ end @doc """ Renders the `disabled_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def disabled_off(assigns) do ~H""" """ end @doc """ Renders the `disabled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def disabled(assigns) do ~H""" """ end @doc """ Renders the `disc_golf` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def disc_golf(assigns) do ~H""" """ end @doc """ Renders the `disc_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def disc_off(assigns) do ~H""" """ end @doc """ Renders the `disc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def disc(assigns) do ~H""" """ end @doc """ Renders the `discount_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def discount_2_off(assigns) do ~H""" """ end @doc """ Renders the `discount_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def discount_2(assigns) do ~H""" """ end @doc """ Renders the `discount_check_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def discount_check_filled(assigns) do ~H""" """ end @doc """ Renders the `discount_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def discount_check(assigns) do ~H""" """ end @doc """ Renders the `discount_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def discount_off(assigns) do ~H""" """ end @doc """ Renders the `discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def discount(assigns) do ~H""" """ end @doc """ Renders the `divide` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def divide(assigns) do ~H""" """ end @doc """ Renders the `dna_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dna_2_off(assigns) do ~H""" """ end @doc """ Renders the `dna_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dna_2(assigns) do ~H""" """ end @doc """ Renders the `dna_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dna_off(assigns) do ~H""" """ end @doc """ Renders the `dna` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dna(assigns) do ~H""" """ end @doc """ Renders the `dog_bowl` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dog_bowl(assigns) do ~H""" """ end @doc """ Renders the `dog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dog(assigns) do ~H""" """ end @doc """ Renders the `door_enter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def door_enter(assigns) do ~H""" """ end @doc """ Renders the `door_exit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def door_exit(assigns) do ~H""" """ end @doc """ Renders the `door_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def door_off(assigns) do ~H""" """ end @doc """ Renders the `door` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def door(assigns) do ~H""" """ end @doc """ Renders the `dots_circle_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dots_circle_horizontal(assigns) do ~H""" """ end @doc """ Renders the `dots_diagonal_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dots_diagonal_2(assigns) do ~H""" """ end @doc """ Renders the `dots_diagonal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dots_diagonal(assigns) do ~H""" """ end @doc """ Renders the `dots_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dots_vertical(assigns) do ~H""" """ end @doc """ Renders the `dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dots(assigns) do ~H""" """ end @doc """ Renders the `download_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def download_off(assigns) do ~H""" """ end @doc """ Renders the `download` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def download(assigns) do ~H""" """ end @doc """ Renders the `drag_drop_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def drag_drop_2(assigns) do ~H""" """ end @doc """ Renders the `drag_drop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def drag_drop(assigns) do ~H""" """ end @doc """ Renders the `drone_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def drone_off(assigns) do ~H""" """ end @doc """ Renders the `drone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def drone(assigns) do ~H""" """ end @doc """ Renders the `drop_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def drop_circle(assigns) do ~H""" """ end @doc """ Renders the `droplet_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_bolt(assigns) do ~H""" """ end @doc """ Renders the `droplet_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_cancel(assigns) do ~H""" """ end @doc """ Renders the `droplet_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_check(assigns) do ~H""" """ end @doc """ Renders the `droplet_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_code(assigns) do ~H""" """ end @doc """ Renders the `droplet_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_cog(assigns) do ~H""" """ end @doc """ Renders the `droplet_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_dollar(assigns) do ~H""" """ end @doc """ Renders the `droplet_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_down(assigns) do ~H""" """ end @doc """ Renders the `droplet_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_exclamation(assigns) do ~H""" """ end @doc """ Renders the `droplet_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_filled(assigns) do ~H""" """ end @doc """ Renders the `droplet_half_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_half_2_filled(assigns) do ~H""" """ end @doc """ Renders the `droplet_half_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_half_2(assigns) do ~H""" """ end @doc """ Renders the `droplet_half_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_half_filled(assigns) do ~H""" """ end @doc """ Renders the `droplet_half` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_half(assigns) do ~H""" """ end @doc """ Renders the `droplet_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_heart(assigns) do ~H""" """ end @doc """ Renders the `droplet_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_minus(assigns) do ~H""" """ end @doc """ Renders the `droplet_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_off(assigns) do ~H""" """ end @doc """ Renders the `droplet_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_pause(assigns) do ~H""" """ end @doc """ Renders the `droplet_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_pin(assigns) do ~H""" """ end @doc """ Renders the `droplet_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_plus(assigns) do ~H""" """ end @doc """ Renders the `droplet_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_question(assigns) do ~H""" """ end @doc """ Renders the `droplet_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_search(assigns) do ~H""" """ end @doc """ Renders the `droplet_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_share(assigns) do ~H""" """ end @doc """ Renders the `droplet_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_star(assigns) do ~H""" """ end @doc """ Renders the `droplet_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_up(assigns) do ~H""" """ end @doc """ Renders the `droplet_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet_x(assigns) do ~H""" """ end @doc """ Renders the `droplet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplet(assigns) do ~H""" """ end @doc """ Renders the `droplets` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def droplets(assigns) do ~H""" """ end @doc """ Renders the `dual_screen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def dual_screen(assigns) do ~H""" """ end @doc """ Renders the `e_passport` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def e_passport(assigns) do ~H""" """ end @doc """ Renders the `ear_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ear_off(assigns) do ~H""" """ end @doc """ Renders the `ear` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ear(assigns) do ~H""" """ end @doc """ Renders the `ease_in_control_point` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ease_in_control_point(assigns) do ~H""" """ end @doc """ Renders the `ease_in_out_control_points` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ease_in_out_control_points(assigns) do ~H""" """ end @doc """ Renders the `ease_in_out` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ease_in_out(assigns) do ~H""" """ end @doc """ Renders the `ease_in` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ease_in(assigns) do ~H""" """ end @doc """ Renders the `ease_out_control_point` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ease_out_control_point(assigns) do ~H""" """ end @doc """ Renders the `ease_out` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ease_out(assigns) do ~H""" """ end @doc """ Renders the `edit_circle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def edit_circle_off(assigns) do ~H""" """ end @doc """ Renders the `edit_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def edit_circle(assigns) do ~H""" """ end @doc """ Renders the `edit_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def edit_off(assigns) do ~H""" """ end @doc """ Renders the `edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def edit(assigns) do ~H""" """ end @doc """ Renders the `egg_cracked` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def egg_cracked(assigns) do ~H""" """ end @doc """ Renders the `egg_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def egg_filled(assigns) do ~H""" """ end @doc """ Renders the `egg_fried` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def egg_fried(assigns) do ~H""" """ end @doc """ Renders the `egg_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def egg_off(assigns) do ~H""" """ end @doc """ Renders the `egg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def egg(assigns) do ~H""" """ end @doc """ Renders the `eggs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eggs(assigns) do ~H""" """ end @doc """ Renders the `elevator_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def elevator_off(assigns) do ~H""" """ end @doc """ Renders the `elevator` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def elevator(assigns) do ~H""" """ end @doc """ Renders the `emergency_bed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def emergency_bed(assigns) do ~H""" """ end @doc """ Renders the `empathize_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def empathize_off(assigns) do ~H""" """ end @doc """ Renders the `empathize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def empathize(assigns) do ~H""" """ end @doc """ Renders the `emphasis` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def emphasis(assigns) do ~H""" """ end @doc """ Renders the `engine_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def engine_off(assigns) do ~H""" """ end @doc """ Renders the `engine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def engine(assigns) do ~H""" """ end @doc """ Renders the `equal_double` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def equal_double(assigns) do ~H""" """ end @doc """ Renders the `equal_not` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def equal_not(assigns) do ~H""" """ end @doc """ Renders the `equal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def equal(assigns) do ~H""" """ end @doc """ Renders the `eraser_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eraser_off(assigns) do ~H""" """ end @doc """ Renders the `eraser` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eraser(assigns) do ~H""" """ end @doc """ Renders the `error_404_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def error_404_off(assigns) do ~H""" """ end @doc """ Renders the `error_404` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def error_404(assigns) do ~H""" """ end @doc """ Renders the `escalator_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def escalator_down(assigns) do ~H""" """ end @doc """ Renders the `escalator_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def escalator_up(assigns) do ~H""" """ end @doc """ Renders the `escalator` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def escalator(assigns) do ~H""" """ end @doc """ Renders the `exchange_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exchange_off(assigns) do ~H""" """ end @doc """ Renders the `exchange` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exchange(assigns) do ~H""" """ end @doc """ Renders the `exclamation_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exclamation_circle(assigns) do ~H""" """ end @doc """ Renders the `exclamation_mark_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exclamation_mark_off(assigns) do ~H""" """ end @doc """ Renders the `exclamation_mark` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exclamation_mark(assigns) do ~H""" """ end @doc """ Renders the `explicit_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def explicit_off(assigns) do ~H""" """ end @doc """ Renders the `explicit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def explicit(assigns) do ~H""" """ end @doc """ Renders the `exposure_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure_0(assigns) do ~H""" """ end @doc """ Renders the `exposure_minus_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure_minus_1(assigns) do ~H""" """ end @doc """ Renders the `exposure_minus_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure_minus_2(assigns) do ~H""" """ end @doc """ Renders the `exposure_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure_off(assigns) do ~H""" """ end @doc """ Renders the `exposure_plus_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure_plus_1(assigns) do ~H""" """ end @doc """ Renders the `exposure_plus_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure_plus_2(assigns) do ~H""" """ end @doc """ Renders the `exposure` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def exposure(assigns) do ~H""" """ end @doc """ Renders the `external_link_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def external_link_off(assigns) do ~H""" """ end @doc """ Renders the `external_link` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def external_link(assigns) do ~H""" """ end @doc """ Renders the `eye_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_bolt(assigns) do ~H""" """ end @doc """ Renders the `eye_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_cancel(assigns) do ~H""" """ end @doc """ Renders the `eye_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_check(assigns) do ~H""" """ end @doc """ Renders the `eye_closed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_closed(assigns) do ~H""" """ end @doc """ Renders the `eye_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_code(assigns) do ~H""" """ end @doc """ Renders the `eye_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_cog(assigns) do ~H""" """ end @doc """ Renders the `eye_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_discount(assigns) do ~H""" """ end @doc """ Renders the `eye_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_dollar(assigns) do ~H""" """ end @doc """ Renders the `eye_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_down(assigns) do ~H""" """ end @doc """ Renders the `eye_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_edit(assigns) do ~H""" """ end @doc """ Renders the `eye_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_exclamation(assigns) do ~H""" """ end @doc """ Renders the `eye_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_filled(assigns) do ~H""" """ end @doc """ Renders the `eye_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_heart(assigns) do ~H""" """ end @doc """ Renders the `eye_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_minus(assigns) do ~H""" """ end @doc """ Renders the `eye_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_off(assigns) do ~H""" """ end @doc """ Renders the `eye_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_pause(assigns) do ~H""" """ end @doc """ Renders the `eye_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_pin(assigns) do ~H""" """ end @doc """ Renders the `eye_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_plus(assigns) do ~H""" """ end @doc """ Renders the `eye_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_question(assigns) do ~H""" """ end @doc """ Renders the `eye_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_search(assigns) do ~H""" """ end @doc """ Renders the `eye_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_share(assigns) do ~H""" """ end @doc """ Renders the `eye_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_star(assigns) do ~H""" """ end @doc """ Renders the `eye_table` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_table(assigns) do ~H""" """ end @doc """ Renders the `eye_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_up(assigns) do ~H""" """ end @doc """ Renders the `eye_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye_x(assigns) do ~H""" """ end @doc """ Renders the `eye` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eye(assigns) do ~H""" """ end @doc """ Renders the `eyeglass_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eyeglass_2(assigns) do ~H""" """ end @doc """ Renders the `eyeglass_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eyeglass_off(assigns) do ~H""" """ end @doc """ Renders the `eyeglass` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def eyeglass(assigns) do ~H""" """ end @doc """ Renders the `face_id_error` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def face_id_error(assigns) do ~H""" """ end @doc """ Renders the `face_id` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def face_id(assigns) do ~H""" """ end @doc """ Renders the `face_mask_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def face_mask_off(assigns) do ~H""" """ end @doc """ Renders the `face_mask` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def face_mask(assigns) do ~H""" """ end @doc """ Renders the `fall` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fall(assigns) do ~H""" """ end @doc """ Renders the `feather_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def feather_off(assigns) do ~H""" """ end @doc """ Renders the `feather` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def feather(assigns) do ~H""" """ end @doc """ Renders the `fence_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fence_off(assigns) do ~H""" """ end @doc """ Renders the `fence` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fence(assigns) do ~H""" """ end @doc """ Renders the `fidget_spinner` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fidget_spinner(assigns) do ~H""" """ end @doc """ Renders the `file_3d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_3d(assigns) do ~H""" """ end @doc """ Renders the `file_alert` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_alert(assigns) do ~H""" """ end @doc """ Renders the `file_analytics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_analytics(assigns) do ~H""" """ end @doc """ Renders the `file_arrow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_arrow_left(assigns) do ~H""" """ end @doc """ Renders the `file_arrow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_arrow_right(assigns) do ~H""" """ end @doc """ Renders the `file_barcode` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_barcode(assigns) do ~H""" """ end @doc """ Renders the `file_broken` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_broken(assigns) do ~H""" """ end @doc """ Renders the `file_certificate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_certificate(assigns) do ~H""" """ end @doc """ Renders the `file_chart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_chart(assigns) do ~H""" """ end @doc """ Renders the `file_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_check(assigns) do ~H""" """ end @doc """ Renders the `file_code_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_code_2(assigns) do ~H""" """ end @doc """ Renders the `file_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_code(assigns) do ~H""" """ end @doc """ Renders the `file_cv` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_cv(assigns) do ~H""" """ end @doc """ Renders the `file_database` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_database(assigns) do ~H""" """ end @doc """ Renders the `file_delta` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_delta(assigns) do ~H""" """ end @doc """ Renders the `file_description` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_description(assigns) do ~H""" """ end @doc """ Renders the `file_diff` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_diff(assigns) do ~H""" """ end @doc """ Renders the `file_digit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_digit(assigns) do ~H""" """ end @doc """ Renders the `file_dislike` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_dislike(assigns) do ~H""" """ end @doc """ Renders the `file_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_dollar(assigns) do ~H""" """ end @doc """ Renders the `file_dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_dots(assigns) do ~H""" """ end @doc """ Renders the `file_download` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_download(assigns) do ~H""" """ end @doc """ Renders the `file_euro` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_euro(assigns) do ~H""" """ end @doc """ Renders the `file_export` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_export(assigns) do ~H""" """ end @doc """ Renders the `file_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_filled(assigns) do ~H""" """ end @doc """ Renders the `file_function` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_function(assigns) do ~H""" """ end @doc """ Renders the `file_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_horizontal(assigns) do ~H""" """ end @doc """ Renders the `file_import` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_import(assigns) do ~H""" """ end @doc """ Renders the `file_infinity` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_infinity(assigns) do ~H""" """ end @doc """ Renders the `file_info` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_info(assigns) do ~H""" """ end @doc """ Renders the `file_invoice` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_invoice(assigns) do ~H""" """ end @doc """ Renders the `file_lambda` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_lambda(assigns) do ~H""" """ end @doc """ Renders the `file_like` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_like(assigns) do ~H""" """ end @doc """ Renders the `file_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_minus(assigns) do ~H""" """ end @doc """ Renders the `file_music` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_music(assigns) do ~H""" """ end @doc """ Renders the `file_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_off(assigns) do ~H""" """ end @doc """ Renders the `file_orientation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_orientation(assigns) do ~H""" """ end @doc """ Renders the `file_pencil` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_pencil(assigns) do ~H""" """ end @doc """ Renders the `file_percent` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_percent(assigns) do ~H""" """ end @doc """ Renders the `file_phone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_phone(assigns) do ~H""" """ end @doc """ Renders the `file_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_plus(assigns) do ~H""" """ end @doc """ Renders the `file_power` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_power(assigns) do ~H""" """ end @doc """ Renders the `file_report` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_report(assigns) do ~H""" """ end @doc """ Renders the `file_rss` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_rss(assigns) do ~H""" """ end @doc """ Renders the `file_scissors` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_scissors(assigns) do ~H""" """ end @doc """ Renders the `file_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_search(assigns) do ~H""" """ end @doc """ Renders the `file_settings` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_settings(assigns) do ~H""" """ end @doc """ Renders the `file_shredder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_shredder(assigns) do ~H""" """ end @doc """ Renders the `file_signal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_signal(assigns) do ~H""" """ end @doc """ Renders the `file_spreadsheet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_spreadsheet(assigns) do ~H""" """ end @doc """ Renders the `file_stack` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_stack(assigns) do ~H""" """ end @doc """ Renders the `file_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_star(assigns) do ~H""" """ end @doc """ Renders the `file_symlink` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_symlink(assigns) do ~H""" """ end @doc """ Renders the `file_text_ai` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_text_ai(assigns) do ~H""" """ end @doc """ Renders the `file_text` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_text(assigns) do ~H""" """ end @doc """ Renders the `file_time` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_time(assigns) do ~H""" """ end @doc """ Renders the `file_type_bmp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_bmp(assigns) do ~H""" """ end @doc """ Renders the `file_type_css` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_css(assigns) do ~H""" """ end @doc """ Renders the `file_type_csv` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_csv(assigns) do ~H""" """ end @doc """ Renders the `file_type_doc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_doc(assigns) do ~H""" """ end @doc """ Renders the `file_type_docx` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_docx(assigns) do ~H""" """ end @doc """ Renders the `file_type_html` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_html(assigns) do ~H""" """ end @doc """ Renders the `file_type_jpg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_jpg(assigns) do ~H""" """ end @doc """ Renders the `file_type_js` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_js(assigns) do ~H""" """ end @doc """ Renders the `file_type_jsx` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_jsx(assigns) do ~H""" """ end @doc """ Renders the `file_type_pdf` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_pdf(assigns) do ~H""" """ end @doc """ Renders the `file_type_php` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_php(assigns) do ~H""" """ end @doc """ Renders the `file_type_png` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_png(assigns) do ~H""" """ end @doc """ Renders the `file_type_ppt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_ppt(assigns) do ~H""" """ end @doc """ Renders the `file_type_rs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_rs(assigns) do ~H""" """ end @doc """ Renders the `file_type_sql` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_sql(assigns) do ~H""" """ end @doc """ Renders the `file_type_svg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_svg(assigns) do ~H""" """ end @doc """ Renders the `file_type_ts` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_ts(assigns) do ~H""" """ end @doc """ Renders the `file_type_tsx` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_tsx(assigns) do ~H""" """ end @doc """ Renders the `file_type_txt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_txt(assigns) do ~H""" """ end @doc """ Renders the `file_type_vue` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_vue(assigns) do ~H""" """ end @doc """ Renders the `file_type_xls` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_xls(assigns) do ~H""" """ end @doc """ Renders the `file_type_xml` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_xml(assigns) do ~H""" """ end @doc """ Renders the `file_type_zip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_type_zip(assigns) do ~H""" """ end @doc """ Renders the `file_typography` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_typography(assigns) do ~H""" """ end @doc """ Renders the `file_unknown` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_unknown(assigns) do ~H""" """ end @doc """ Renders the `file_upload` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_upload(assigns) do ~H""" """ end @doc """ Renders the `file_vector` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_vector(assigns) do ~H""" """ end @doc """ Renders the `file_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_x_filled(assigns) do ~H""" """ end @doc """ Renders the `file_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_x(assigns) do ~H""" """ end @doc """ Renders the `file_zip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file_zip(assigns) do ~H""" """ end @doc """ Renders the `file` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def file(assigns) do ~H""" """ end @doc """ Renders the `files_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def files_off(assigns) do ~H""" """ end @doc """ Renders the `files` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def files(assigns) do ~H""" """ end @doc """ Renders the `filter_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_bolt(assigns) do ~H""" """ end @doc """ Renders the `filter_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_cancel(assigns) do ~H""" """ end @doc """ Renders the `filter_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_check(assigns) do ~H""" """ end @doc """ Renders the `filter_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_code(assigns) do ~H""" """ end @doc """ Renders the `filter_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_cog(assigns) do ~H""" """ end @doc """ Renders the `filter_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_discount(assigns) do ~H""" """ end @doc """ Renders the `filter_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_dollar(assigns) do ~H""" """ end @doc """ Renders the `filter_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_down(assigns) do ~H""" """ end @doc """ Renders the `filter_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_edit(assigns) do ~H""" """ end @doc """ Renders the `filter_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_exclamation(assigns) do ~H""" """ end @doc """ Renders the `filter_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_filled(assigns) do ~H""" """ end @doc """ Renders the `filter_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_heart(assigns) do ~H""" """ end @doc """ Renders the `filter_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_minus(assigns) do ~H""" """ end @doc """ Renders the `filter_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_off(assigns) do ~H""" """ end @doc """ Renders the `filter_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_pause(assigns) do ~H""" """ end @doc """ Renders the `filter_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_pin(assigns) do ~H""" """ end @doc """ Renders the `filter_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_plus(assigns) do ~H""" """ end @doc """ Renders the `filter_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_question(assigns) do ~H""" """ end @doc """ Renders the `filter_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_search(assigns) do ~H""" """ end @doc """ Renders the `filter_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_share(assigns) do ~H""" """ end @doc """ Renders the `filter_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_star(assigns) do ~H""" """ end @doc """ Renders the `filter_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_up(assigns) do ~H""" """ end @doc """ Renders the `filter_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter_x(assigns) do ~H""" """ end @doc """ Renders the `filter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filter(assigns) do ~H""" """ end @doc """ Renders the `filters` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def filters(assigns) do ~H""" """ end @doc """ Renders the `fingerprint_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fingerprint_off(assigns) do ~H""" """ end @doc """ Renders the `fingerprint` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fingerprint(assigns) do ~H""" """ end @doc """ Renders the `fire_extinguisher` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fire_extinguisher(assigns) do ~H""" """ end @doc """ Renders the `fire_hydrant_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fire_hydrant_off(assigns) do ~H""" """ end @doc """ Renders the `fire_hydrant` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fire_hydrant(assigns) do ~H""" """ end @doc """ Renders the `firetruck` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def firetruck(assigns) do ~H""" """ end @doc """ Renders the `first_aid_kit_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def first_aid_kit_off(assigns) do ~H""" """ end @doc """ Renders the `first_aid_kit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def first_aid_kit(assigns) do ~H""" """ end @doc """ Renders the `fish_bone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fish_bone(assigns) do ~H""" """ end @doc """ Renders the `fish_christianity` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fish_christianity(assigns) do ~H""" """ end @doc """ Renders the `fish_hook_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fish_hook_off(assigns) do ~H""" """ end @doc """ Renders the `fish_hook` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fish_hook(assigns) do ~H""" """ end @doc """ Renders the `fish_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fish_off(assigns) do ~H""" """ end @doc """ Renders the `fish` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fish(assigns) do ~H""" """ end @doc """ Renders the `flag_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_2_filled(assigns) do ~H""" """ end @doc """ Renders the `flag_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_2_off(assigns) do ~H""" """ end @doc """ Renders the `flag_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_2(assigns) do ~H""" """ end @doc """ Renders the `flag_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_3_filled(assigns) do ~H""" """ end @doc """ Renders the `flag_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_3(assigns) do ~H""" """ end @doc """ Renders the `flag_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_bolt(assigns) do ~H""" """ end @doc """ Renders the `flag_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_cancel(assigns) do ~H""" """ end @doc """ Renders the `flag_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_check(assigns) do ~H""" """ end @doc """ Renders the `flag_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_code(assigns) do ~H""" """ end @doc """ Renders the `flag_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_cog(assigns) do ~H""" """ end @doc """ Renders the `flag_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_discount(assigns) do ~H""" """ end @doc """ Renders the `flag_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_dollar(assigns) do ~H""" """ end @doc """ Renders the `flag_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_down(assigns) do ~H""" """ end @doc """ Renders the `flag_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_exclamation(assigns) do ~H""" """ end @doc """ Renders the `flag_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_filled(assigns) do ~H""" """ end @doc """ Renders the `flag_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_heart(assigns) do ~H""" """ end @doc """ Renders the `flag_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_minus(assigns) do ~H""" """ end @doc """ Renders the `flag_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_off(assigns) do ~H""" """ end @doc """ Renders the `flag_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_pause(assigns) do ~H""" """ end @doc """ Renders the `flag_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_pin(assigns) do ~H""" """ end @doc """ Renders the `flag_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_plus(assigns) do ~H""" """ end @doc """ Renders the `flag_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_question(assigns) do ~H""" """ end @doc """ Renders the `flag_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_search(assigns) do ~H""" """ end @doc """ Renders the `flag_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_share(assigns) do ~H""" """ end @doc """ Renders the `flag_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_star(assigns) do ~H""" """ end @doc """ Renders the `flag_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_up(assigns) do ~H""" """ end @doc """ Renders the `flag_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag_x(assigns) do ~H""" """ end @doc """ Renders the `flag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flag(assigns) do ~H""" """ end @doc """ Renders the `flame_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flame_off(assigns) do ~H""" """ end @doc """ Renders the `flame` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flame(assigns) do ~H""" """ end @doc """ Renders the `flare` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flare(assigns) do ~H""" """ end @doc """ Renders the `flask_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flask_2_off(assigns) do ~H""" """ end @doc """ Renders the `flask_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flask_2(assigns) do ~H""" """ end @doc """ Renders the `flask_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flask_off(assigns) do ~H""" """ end @doc """ Renders the `flask` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flask(assigns) do ~H""" """ end @doc """ Renders the `flip_flops` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flip_flops(assigns) do ~H""" """ end @doc """ Renders the `flip_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flip_horizontal(assigns) do ~H""" """ end @doc """ Renders the `flip_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flip_vertical(assigns) do ~H""" """ end @doc """ Renders the `float_center` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def float_center(assigns) do ~H""" """ end @doc """ Renders the `float_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def float_left(assigns) do ~H""" """ end @doc """ Renders the `float_none` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def float_none(assigns) do ~H""" """ end @doc """ Renders the `float_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def float_right(assigns) do ~H""" """ end @doc """ Renders the `flower_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flower_off(assigns) do ~H""" """ end @doc """ Renders the `flower` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def flower(assigns) do ~H""" """ end @doc """ Renders the `focus_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def focus_2(assigns) do ~H""" """ end @doc """ Renders the `focus_auto` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def focus_auto(assigns) do ~H""" """ end @doc """ Renders the `focus_centered` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def focus_centered(assigns) do ~H""" """ end @doc """ Renders the `focus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def focus(assigns) do ~H""" """ end @doc """ Renders the `fold_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fold_down(assigns) do ~H""" """ end @doc """ Renders the `fold_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fold_up(assigns) do ~H""" """ end @doc """ Renders the `fold` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fold(assigns) do ~H""" """ end @doc """ Renders the `folder_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_bolt(assigns) do ~H""" """ end @doc """ Renders the `folder_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_cancel(assigns) do ~H""" """ end @doc """ Renders the `folder_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_check(assigns) do ~H""" """ end @doc """ Renders the `folder_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_code(assigns) do ~H""" """ end @doc """ Renders the `folder_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_cog(assigns) do ~H""" """ end @doc """ Renders the `folder_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_dollar(assigns) do ~H""" """ end @doc """ Renders the `folder_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_down(assigns) do ~H""" """ end @doc """ Renders the `folder_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_exclamation(assigns) do ~H""" """ end @doc """ Renders the `folder_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_filled(assigns) do ~H""" """ end @doc """ Renders the `folder_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_heart(assigns) do ~H""" """ end @doc """ Renders the `folder_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_minus(assigns) do ~H""" """ end @doc """ Renders the `folder_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_off(assigns) do ~H""" """ end @doc """ Renders the `folder_open` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_open(assigns) do ~H""" """ end @doc """ Renders the `folder_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_pause(assigns) do ~H""" """ end @doc """ Renders the `folder_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_pin(assigns) do ~H""" """ end @doc """ Renders the `folder_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_plus(assigns) do ~H""" """ end @doc """ Renders the `folder_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_question(assigns) do ~H""" """ end @doc """ Renders the `folder_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_search(assigns) do ~H""" """ end @doc """ Renders the `folder_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_share(assigns) do ~H""" """ end @doc """ Renders the `folder_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_star(assigns) do ~H""" """ end @doc """ Renders the `folder_symlink` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_symlink(assigns) do ~H""" """ end @doc """ Renders the `folder_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_up(assigns) do ~H""" """ end @doc """ Renders the `folder_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder_x(assigns) do ~H""" """ end @doc """ Renders the `folder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folder(assigns) do ~H""" """ end @doc """ Renders the `folders_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folders_off(assigns) do ~H""" """ end @doc """ Renders the `folders` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def folders(assigns) do ~H""" """ end @doc """ Renders the `forbid_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def forbid_2_filled(assigns) do ~H""" """ end @doc """ Renders the `forbid_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def forbid_2(assigns) do ~H""" """ end @doc """ Renders the `forbid_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def forbid_filled(assigns) do ~H""" """ end @doc """ Renders the `forbid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def forbid(assigns) do ~H""" """ end @doc """ Renders the `forklift` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def forklift(assigns) do ~H""" """ end @doc """ Renders the `forms` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def forms(assigns) do ~H""" """ end @doc """ Renders the `fountain_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fountain_filled(assigns) do ~H""" """ end @doc """ Renders the `fountain_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fountain_off(assigns) do ~H""" """ end @doc """ Renders the `fountain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fountain(assigns) do ~H""" """ end @doc """ Renders the `frame_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def frame_off(assigns) do ~H""" """ end @doc """ Renders the `frame` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def frame(assigns) do ~H""" """ end @doc """ Renders the `free_rights` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def free_rights(assigns) do ~H""" """ end @doc """ Renders the `freeze_column` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def freeze_column(assigns) do ~H""" """ end @doc """ Renders the `freeze_row_column` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def freeze_row_column(assigns) do ~H""" """ end @doc """ Renders the `freeze_row` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def freeze_row(assigns) do ~H""" """ end @doc """ Renders the `fridge_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fridge_off(assigns) do ~H""" """ end @doc """ Renders the `fridge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def fridge(assigns) do ~H""" """ end @doc """ Renders the `friends_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def friends_off(assigns) do ~H""" """ end @doc """ Renders the `friends` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def friends(assigns) do ~H""" """ end @doc """ Renders the `frustum_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def frustum_off(assigns) do ~H""" """ end @doc """ Renders the `frustum_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def frustum_plus(assigns) do ~H""" """ end @doc """ Renders the `frustum` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def frustum(assigns) do ~H""" """ end @doc """ Renders the `function_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def function_filled(assigns) do ~H""" """ end @doc """ Renders the `function_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def function_off(assigns) do ~H""" """ end @doc """ Renders the `function` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def function(assigns) do ~H""" """ end @doc """ Renders the `garden_cart_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def garden_cart_off(assigns) do ~H""" """ end @doc """ Renders the `garden_cart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def garden_cart(assigns) do ~H""" """ end @doc """ Renders the `gas_station_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gas_station_off(assigns) do ~H""" """ end @doc """ Renders the `gas_station` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gas_station(assigns) do ~H""" """ end @doc """ Renders the `gauge_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gauge_filled(assigns) do ~H""" """ end @doc """ Renders the `gauge_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gauge_off(assigns) do ~H""" """ end @doc """ Renders the `gauge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gauge(assigns) do ~H""" """ end @doc """ Renders the `gavel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gavel(assigns) do ~H""" """ end @doc """ Renders the `gender_agender` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_agender(assigns) do ~H""" """ end @doc """ Renders the `gender_androgyne` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_androgyne(assigns) do ~H""" """ end @doc """ Renders the `gender_bigender` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_bigender(assigns) do ~H""" """ end @doc """ Renders the `gender_demiboy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_demiboy(assigns) do ~H""" """ end @doc """ Renders the `gender_demigirl` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_demigirl(assigns) do ~H""" """ end @doc """ Renders the `gender_epicene` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_epicene(assigns) do ~H""" """ end @doc """ Renders the `gender_female` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_female(assigns) do ~H""" """ end @doc """ Renders the `gender_femme` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_femme(assigns) do ~H""" """ end @doc """ Renders the `gender_genderfluid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_genderfluid(assigns) do ~H""" """ end @doc """ Renders the `gender_genderless` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_genderless(assigns) do ~H""" """ end @doc """ Renders the `gender_genderqueer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_genderqueer(assigns) do ~H""" """ end @doc """ Renders the `gender_hermaphrodite` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_hermaphrodite(assigns) do ~H""" """ end @doc """ Renders the `gender_intergender` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_intergender(assigns) do ~H""" """ end @doc """ Renders the `gender_male` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_male(assigns) do ~H""" """ end @doc """ Renders the `gender_neutrois` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_neutrois(assigns) do ~H""" """ end @doc """ Renders the `gender_third` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_third(assigns) do ~H""" """ end @doc """ Renders the `gender_transgender` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_transgender(assigns) do ~H""" """ end @doc """ Renders the `gender_trasvesti` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gender_trasvesti(assigns) do ~H""" """ end @doc """ Renders the `geometry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def geometry(assigns) do ~H""" """ end @doc """ Renders the `ghost_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ghost_2_filled(assigns) do ~H""" """ end @doc """ Renders the `ghost_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ghost_2(assigns) do ~H""" """ end @doc """ Renders the `ghost_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ghost_3(assigns) do ~H""" """ end @doc """ Renders the `ghost_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ghost_filled(assigns) do ~H""" """ end @doc """ Renders the `ghost_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ghost_off(assigns) do ~H""" """ end @doc """ Renders the `ghost` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ghost(assigns) do ~H""" """ end @doc """ Renders the `gif` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gif(assigns) do ~H""" """ end @doc """ Renders the `gift_card_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gift_card_filled(assigns) do ~H""" """ end @doc """ Renders the `gift_card` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gift_card(assigns) do ~H""" """ end @doc """ Renders the `gift_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gift_off(assigns) do ~H""" """ end @doc """ Renders the `gift` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gift(assigns) do ~H""" """ end @doc """ Renders the `git_branch_deleted` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_branch_deleted(assigns) do ~H""" """ end @doc """ Renders the `git_branch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_branch(assigns) do ~H""" """ end @doc """ Renders the `git_cherry_pick` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_cherry_pick(assigns) do ~H""" """ end @doc """ Renders the `git_commit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_commit(assigns) do ~H""" """ end @doc """ Renders the `git_compare` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_compare(assigns) do ~H""" """ end @doc """ Renders the `git_fork` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_fork(assigns) do ~H""" """ end @doc """ Renders the `git_merge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_merge(assigns) do ~H""" """ end @doc """ Renders the `git_pull_request_closed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_pull_request_closed(assigns) do ~H""" """ end @doc """ Renders the `git_pull_request_draft` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_pull_request_draft(assigns) do ~H""" """ end @doc """ Renders the `git_pull_request` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def git_pull_request(assigns) do ~H""" """ end @doc """ Renders the `gizmo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gizmo(assigns) do ~H""" """ end @doc """ Renders the `glass_full_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def glass_full_filled(assigns) do ~H""" """ end @doc """ Renders the `glass_full` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def glass_full(assigns) do ~H""" """ end @doc """ Renders the `glass_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def glass_off(assigns) do ~H""" """ end @doc """ Renders the `glass` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def glass(assigns) do ~H""" """ end @doc """ Renders the `globe_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def globe_filled(assigns) do ~H""" """ end @doc """ Renders the `globe_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def globe_off(assigns) do ~H""" """ end @doc """ Renders the `globe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def globe(assigns) do ~H""" """ end @doc """ Renders the `go_game` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def go_game(assigns) do ~H""" """ end @doc """ Renders the `golf_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def golf_off(assigns) do ~H""" """ end @doc """ Renders the `golf` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def golf(assigns) do ~H""" """ end @doc """ Renders the `gps` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gps(assigns) do ~H""" """ end @doc """ Renders the `gradienter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def gradienter(assigns) do ~H""" """ end @doc """ Renders the `grain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grain(assigns) do ~H""" """ end @doc """ Renders the `graph_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def graph_off(assigns) do ~H""" """ end @doc """ Renders the `graph` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def graph(assigns) do ~H""" """ end @doc """ Renders the `grave_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grave_2(assigns) do ~H""" """ end @doc """ Renders the `grave` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grave(assigns) do ~H""" """ end @doc """ Renders the `grid_dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grid_dots(assigns) do ~H""" """ end @doc """ Renders the `grid_pattern` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grid_pattern(assigns) do ~H""" """ end @doc """ Renders the `grill_fork` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grill_fork(assigns) do ~H""" """ end @doc """ Renders the `grill_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grill_off(assigns) do ~H""" """ end @doc """ Renders the `grill_spatula` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grill_spatula(assigns) do ~H""" """ end @doc """ Renders the `grill` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grill(assigns) do ~H""" """ end @doc """ Renders the `grip_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grip_horizontal(assigns) do ~H""" """ end @doc """ Renders the `grip_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def grip_vertical(assigns) do ~H""" """ end @doc """ Renders the `growth` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def growth(assigns) do ~H""" """ end @doc """ Renders the `guitar_pick_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def guitar_pick_filled(assigns) do ~H""" """ end @doc """ Renders the `guitar_pick` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def guitar_pick(assigns) do ~H""" """ end @doc """ Renders the `h_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def h_1(assigns) do ~H""" """ end @doc """ Renders the `h_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def h_2(assigns) do ~H""" """ end @doc """ Renders the `h_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def h_3(assigns) do ~H""" """ end @doc """ Renders the `h_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def h_4(assigns) do ~H""" """ end @doc """ Renders the `h_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def h_5(assigns) do ~H""" """ end @doc """ Renders the `h_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def h_6(assigns) do ~H""" """ end @doc """ Renders the `hammer_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hammer_off(assigns) do ~H""" """ end @doc """ Renders the `hammer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hammer(assigns) do ~H""" """ end @doc """ Renders the `hand_click` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_click(assigns) do ~H""" """ end @doc """ Renders the `hand_finger_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_finger_off(assigns) do ~H""" """ end @doc """ Renders the `hand_finger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_finger(assigns) do ~H""" """ end @doc """ Renders the `hand_grab` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_grab(assigns) do ~H""" """ end @doc """ Renders the `hand_little_finger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_little_finger(assigns) do ~H""" """ end @doc """ Renders the `hand_middle_finger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_middle_finger(assigns) do ~H""" """ end @doc """ Renders the `hand_move` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_move(assigns) do ~H""" """ end @doc """ Renders the `hand_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_off(assigns) do ~H""" """ end @doc """ Renders the `hand_ring_finger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_ring_finger(assigns) do ~H""" """ end @doc """ Renders the `hand_rock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_rock(assigns) do ~H""" """ end @doc """ Renders the `hand_sanitizer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_sanitizer(assigns) do ~H""" """ end @doc """ Renders the `hand_stop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_stop(assigns) do ~H""" """ end @doc """ Renders the `hand_three_fingers` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_three_fingers(assigns) do ~H""" """ end @doc """ Renders the `hand_two_fingers` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hand_two_fingers(assigns) do ~H""" """ end @doc """ Renders the `hanger_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hanger_2(assigns) do ~H""" """ end @doc """ Renders the `hanger_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hanger_off(assigns) do ~H""" """ end @doc """ Renders the `hanger` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hanger(assigns) do ~H""" """ end @doc """ Renders the `hash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hash(assigns) do ~H""" """ end @doc """ Renders the `haze_moon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def haze_moon(assigns) do ~H""" """ end @doc """ Renders the `haze` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def haze(assigns) do ~H""" """ end @doc """ Renders the `hdr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hdr(assigns) do ~H""" """ end @doc """ Renders the `heading_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heading_off(assigns) do ~H""" """ end @doc """ Renders the `heading` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heading(assigns) do ~H""" """ end @doc """ Renders the `headphones_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def headphones_filled(assigns) do ~H""" """ end @doc """ Renders the `headphones_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def headphones_off(assigns) do ~H""" """ end @doc """ Renders the `headphones` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def headphones(assigns) do ~H""" """ end @doc """ Renders the `headset_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def headset_off(assigns) do ~H""" """ end @doc """ Renders the `headset` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def headset(assigns) do ~H""" """ end @doc """ Renders the `health_recognition` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def health_recognition(assigns) do ~H""" """ end @doc """ Renders the `heart_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_bolt(assigns) do ~H""" """ end @doc """ Renders the `heart_broken` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_broken(assigns) do ~H""" """ end @doc """ Renders the `heart_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_cancel(assigns) do ~H""" """ end @doc """ Renders the `heart_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_check(assigns) do ~H""" """ end @doc """ Renders the `heart_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_code(assigns) do ~H""" """ end @doc """ Renders the `heart_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_cog(assigns) do ~H""" """ end @doc """ Renders the `heart_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_discount(assigns) do ~H""" """ end @doc """ Renders the `heart_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_dollar(assigns) do ~H""" """ end @doc """ Renders the `heart_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_down(assigns) do ~H""" """ end @doc """ Renders the `heart_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_exclamation(assigns) do ~H""" """ end @doc """ Renders the `heart_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_filled(assigns) do ~H""" """ end @doc """ Renders the `heart_handshake` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_handshake(assigns) do ~H""" """ end @doc """ Renders the `heart_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_minus(assigns) do ~H""" """ end @doc """ Renders the `heart_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_off(assigns) do ~H""" """ end @doc """ Renders the `heart_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_pause(assigns) do ~H""" """ end @doc """ Renders the `heart_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_pin(assigns) do ~H""" """ end @doc """ Renders the `heart_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_plus(assigns) do ~H""" """ end @doc """ Renders the `heart_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_question(assigns) do ~H""" """ end @doc """ Renders the `heart_rate_monitor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_rate_monitor(assigns) do ~H""" """ end @doc """ Renders the `heart_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_search(assigns) do ~H""" """ end @doc """ Renders the `heart_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_share(assigns) do ~H""" """ end @doc """ Renders the `heart_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_star(assigns) do ~H""" """ end @doc """ Renders the `heart_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_up(assigns) do ~H""" """ end @doc """ Renders the `heart_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart_x(assigns) do ~H""" """ end @doc """ Renders the `heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heart(assigns) do ~H""" """ end @doc """ Renders the `heartbeat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def heartbeat(assigns) do ~H""" """ end @doc """ Renders the `hearts_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hearts_off(assigns) do ~H""" """ end @doc """ Renders the `hearts` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hearts(assigns) do ~H""" """ end @doc """ Renders the `helicopter_landing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def helicopter_landing(assigns) do ~H""" """ end @doc """ Renders the `helicopter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def helicopter(assigns) do ~H""" """ end @doc """ Renders the `helmet_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def helmet_off(assigns) do ~H""" """ end @doc """ Renders the `helmet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def helmet(assigns) do ~H""" """ end @doc """ Renders the `help_circle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_circle_filled(assigns) do ~H""" """ end @doc """ Renders the `help_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_circle(assigns) do ~H""" """ end @doc """ Renders the `help_hexagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_hexagon_filled(assigns) do ~H""" """ end @doc """ Renders the `help_hexagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_hexagon(assigns) do ~H""" """ end @doc """ Renders the `help_octagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_octagon_filled(assigns) do ~H""" """ end @doc """ Renders the `help_octagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_octagon(assigns) do ~H""" """ end @doc """ Renders the `help_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_off(assigns) do ~H""" """ end @doc """ Renders the `help_small` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_small(assigns) do ~H""" """ end @doc """ Renders the `help_square_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_square_filled(assigns) do ~H""" """ end @doc """ Renders the `help_square_rounded_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_square_rounded_filled(assigns) do ~H""" """ end @doc """ Renders the `help_square_rounded` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_square_rounded(assigns) do ~H""" """ end @doc """ Renders the `help_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_square(assigns) do ~H""" """ end @doc """ Renders the `help_triangle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_triangle_filled(assigns) do ~H""" """ end @doc """ Renders the `help_triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help_triangle(assigns) do ~H""" """ end @doc """ Renders the `help` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def help(assigns) do ~H""" """ end @doc """ Renders the `hemisphere_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hemisphere_off(assigns) do ~H""" """ end @doc """ Renders the `hemisphere_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hemisphere_plus(assigns) do ~H""" """ end @doc """ Renders the `hemisphere` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hemisphere(assigns) do ~H""" """ end @doc """ Renders the `hexagon_0_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_0_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_1_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_2_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_3_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_3d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_3d(assigns) do ~H""" """ end @doc """ Renders the `hexagon_4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_4_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_5_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_5_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_6_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_6_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_7_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_7_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_8_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_8_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_9_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_9_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_filled(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_a(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_b(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_c` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_c(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_d(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_e` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_e(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_f` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_f(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_g(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_h` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_h(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_i` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_i(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_j` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_j(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_k(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_l` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_l(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_m` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_m(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_n` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_n(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_o` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_o(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_p` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_p(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_q` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_q(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_r` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_r(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_s` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_s(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_t` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_t(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_u` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_u(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_v` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_v(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_w` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_w(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_x(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_y(assigns) do ~H""" """ end @doc """ Renders the `hexagon_letter_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_letter_z(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_0(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_1(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_2(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_3(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_4(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_5(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_6(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_7(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_8(assigns) do ~H""" """ end @doc """ Renders the `hexagon_number_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_number_9(assigns) do ~H""" """ end @doc """ Renders the `hexagon_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon_off(assigns) do ~H""" """ end @doc """ Renders the `hexagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagon(assigns) do ~H""" """ end @doc """ Renders the `hexagonal_prism_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagonal_prism_off(assigns) do ~H""" """ end @doc """ Renders the `hexagonal_prism_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagonal_prism_plus(assigns) do ~H""" """ end @doc """ Renders the `hexagonal_prism` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagonal_prism(assigns) do ~H""" """ end @doc """ Renders the `hexagonal_pyramid_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagonal_pyramid_off(assigns) do ~H""" """ end @doc """ Renders the `hexagonal_pyramid_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagonal_pyramid_plus(assigns) do ~H""" """ end @doc """ Renders the `hexagonal_pyramid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagonal_pyramid(assigns) do ~H""" """ end @doc """ Renders the `hexagons_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagons_off(assigns) do ~H""" """ end @doc """ Renders the `hexagons` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hexagons(assigns) do ~H""" """ end @doc """ Renders the `hierarchy_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hierarchy_2(assigns) do ~H""" """ end @doc """ Renders the `hierarchy_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hierarchy_3(assigns) do ~H""" """ end @doc """ Renders the `hierarchy_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hierarchy_off(assigns) do ~H""" """ end @doc """ Renders the `hierarchy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hierarchy(assigns) do ~H""" """ end @doc """ Renders the `highlight_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def highlight_off(assigns) do ~H""" """ end @doc """ Renders the `highlight` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def highlight(assigns) do ~H""" """ end @doc """ Renders the `history_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def history_off(assigns) do ~H""" """ end @doc """ Renders the `history_toggle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def history_toggle(assigns) do ~H""" """ end @doc """ Renders the `history` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def history(assigns) do ~H""" """ end @doc """ Renders the `home_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_2(assigns) do ~H""" """ end @doc """ Renders the `home_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_bolt(assigns) do ~H""" """ end @doc """ Renders the `home_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_cancel(assigns) do ~H""" """ end @doc """ Renders the `home_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_check(assigns) do ~H""" """ end @doc """ Renders the `home_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_cog(assigns) do ~H""" """ end @doc """ Renders the `home_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_dollar(assigns) do ~H""" """ end @doc """ Renders the `home_dot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_dot(assigns) do ~H""" """ end @doc """ Renders the `home_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_down(assigns) do ~H""" """ end @doc """ Renders the `home_eco` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_eco(assigns) do ~H""" """ end @doc """ Renders the `home_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_edit(assigns) do ~H""" """ end @doc """ Renders the `home_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_exclamation(assigns) do ~H""" """ end @doc """ Renders the `home_hand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_hand(assigns) do ~H""" """ end @doc """ Renders the `home_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_heart(assigns) do ~H""" """ end @doc """ Renders the `home_infinity` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_infinity(assigns) do ~H""" """ end @doc """ Renders the `home_link` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_link(assigns) do ~H""" """ end @doc """ Renders the `home_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_minus(assigns) do ~H""" """ end @doc """ Renders the `home_move` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_move(assigns) do ~H""" """ end @doc """ Renders the `home_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_off(assigns) do ~H""" """ end @doc """ Renders the `home_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_plus(assigns) do ~H""" """ end @doc """ Renders the `home_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_question(assigns) do ~H""" """ end @doc """ Renders the `home_ribbon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_ribbon(assigns) do ~H""" """ end @doc """ Renders the `home_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_search(assigns) do ~H""" """ end @doc """ Renders the `home_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_share(assigns) do ~H""" """ end @doc """ Renders the `home_shield` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_shield(assigns) do ~H""" """ end @doc """ Renders the `home_signal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_signal(assigns) do ~H""" """ end @doc """ Renders the `home_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_star(assigns) do ~H""" """ end @doc """ Renders the `home_stats` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_stats(assigns) do ~H""" """ end @doc """ Renders the `home_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_up(assigns) do ~H""" """ end @doc """ Renders the `home_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home_x(assigns) do ~H""" """ end @doc """ Renders the `home` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def home(assigns) do ~H""" """ end @doc """ Renders the `horse_toy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def horse_toy(assigns) do ~H""" """ end @doc """ Renders the `hotel_service` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hotel_service(assigns) do ~H""" """ end @doc """ Renders the `hourglass_empty` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hourglass_empty(assigns) do ~H""" """ end @doc """ Renders the `hourglass_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hourglass_filled(assigns) do ~H""" """ end @doc """ Renders the `hourglass_high` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hourglass_high(assigns) do ~H""" """ end @doc """ Renders the `hourglass_low` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hourglass_low(assigns) do ~H""" """ end @doc """ Renders the `hourglass_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hourglass_off(assigns) do ~H""" """ end @doc """ Renders the `hourglass` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def hourglass(assigns) do ~H""" """ end @doc """ Renders the `html` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def html(assigns) do ~H""" """ end @doc """ Renders the `http_connect` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_connect(assigns) do ~H""" """ end @doc """ Renders the `http_delete` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_delete(assigns) do ~H""" """ end @doc """ Renders the `http_get` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_get(assigns) do ~H""" """ end @doc """ Renders the `http_head` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_head(assigns) do ~H""" """ end @doc """ Renders the `http_options` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_options(assigns) do ~H""" """ end @doc """ Renders the `http_patch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_patch(assigns) do ~H""" """ end @doc """ Renders the `http_post` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_post(assigns) do ~H""" """ end @doc """ Renders the `http_put` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_put(assigns) do ~H""" """ end @doc """ Renders the `http_que` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_que(assigns) do ~H""" """ end @doc """ Renders the `http_trace` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def http_trace(assigns) do ~H""" """ end @doc """ Renders the `ice_cream_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ice_cream_2(assigns) do ~H""" """ end @doc """ Renders the `ice_cream_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ice_cream_off(assigns) do ~H""" """ end @doc """ Renders the `ice_cream` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ice_cream(assigns) do ~H""" """ end @doc """ Renders the `ice_skating` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ice_skating(assigns) do ~H""" """ end @doc """ Renders the `icons_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def icons_off(assigns) do ~H""" """ end @doc """ Renders the `icons` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def icons(assigns) do ~H""" """ end @doc """ Renders the `id_badge_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def id_badge_2(assigns) do ~H""" """ end @doc """ Renders the `id_badge_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def id_badge_off(assigns) do ~H""" """ end @doc """ Renders the `id_badge` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def id_badge(assigns) do ~H""" """ end @doc """ Renders the `id_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def id_off(assigns) do ~H""" """ end @doc """ Renders the `id` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def id(assigns) do ~H""" """ end @doc """ Renders the `inbox_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inbox_off(assigns) do ~H""" """ end @doc """ Renders the `inbox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inbox(assigns) do ~H""" """ end @doc """ Renders the `indent_decrease` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def indent_decrease(assigns) do ~H""" """ end @doc """ Renders the `indent_increase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def indent_increase(assigns) do ~H""" """ end @doc """ Renders the `infinity_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def infinity_off(assigns) do ~H""" """ end @doc """ Renders the `infinity` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def infinity(assigns) do ~H""" """ end @doc """ Renders the `info_circle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_circle_filled(assigns) do ~H""" """ end @doc """ Renders the `info_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_circle(assigns) do ~H""" """ end @doc """ Renders the `info_hexagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_hexagon_filled(assigns) do ~H""" """ end @doc """ Renders the `info_hexagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_hexagon(assigns) do ~H""" """ end @doc """ Renders the `info_octagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_octagon_filled(assigns) do ~H""" """ end @doc """ Renders the `info_octagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_octagon(assigns) do ~H""" """ end @doc """ Renders the `info_small` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_small(assigns) do ~H""" """ end @doc """ Renders the `info_square_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_square_filled(assigns) do ~H""" """ end @doc """ Renders the `info_square_rounded_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_square_rounded_filled(assigns) do ~H""" """ end @doc """ Renders the `info_square_rounded` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_square_rounded(assigns) do ~H""" """ end @doc """ Renders the `info_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_square(assigns) do ~H""" """ end @doc """ Renders the `info_triangle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_triangle_filled(assigns) do ~H""" """ end @doc """ Renders the `info_triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def info_triangle(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_bottom_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_bottom_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_bottom_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_bottom_left_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_bottom_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_bottom_left(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_bottom_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_bottom_right_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_bottom_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_bottom_right(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_bottom(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_left_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_left(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_right_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_right(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_top_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_top_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_top_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_top_left_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_top_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_top_left(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_top_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_top_right_filled(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_top_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_top_right(assigns) do ~H""" """ end @doc """ Renders the `inner_shadow_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def inner_shadow_top(assigns) do ~H""" """ end @doc """ Renders the `input_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def input_search(assigns) do ~H""" """ end @doc """ Renders the `ironing_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing_1(assigns) do ~H""" """ end @doc """ Renders the `ironing_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing_2(assigns) do ~H""" """ end @doc """ Renders the `ironing_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing_3(assigns) do ~H""" """ end @doc """ Renders the `ironing_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing_off(assigns) do ~H""" """ end @doc """ Renders the `ironing_steam_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing_steam_off(assigns) do ~H""" """ end @doc """ Renders the `ironing_steam` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing_steam(assigns) do ~H""" """ end @doc """ Renders the `ironing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ironing(assigns) do ~H""" """ end @doc """ Renders the `irregular_polyhedron_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def irregular_polyhedron_off(assigns) do ~H""" """ end @doc """ Renders the `irregular_polyhedron_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def irregular_polyhedron_plus(assigns) do ~H""" """ end @doc """ Renders the `irregular_polyhedron` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def irregular_polyhedron(assigns) do ~H""" """ end @doc """ Renders the `italic` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def italic(assigns) do ~H""" """ end @doc """ Renders the `jacket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def jacket(assigns) do ~H""" """ end @doc """ Renders the `jetpack` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def jetpack(assigns) do ~H""" """ end @doc """ Renders the `jewish_star_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def jewish_star_filled(assigns) do ~H""" """ end @doc """ Renders the `jewish_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def jewish_star(assigns) do ~H""" """ end @doc """ Renders the `jpg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def jpg(assigns) do ~H""" """ end @doc """ Renders the `json` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def json(assigns) do ~H""" """ end @doc """ Renders the `jump_rope` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def jump_rope(assigns) do ~H""" """ end @doc """ Renders the `karate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def karate(assigns) do ~H""" """ end @doc """ Renders the `kayak` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def kayak(assigns) do ~H""" """ end @doc """ Renders the `kering` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def kering(assigns) do ~H""" """ end @doc """ Renders the `key_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def key_off(assigns) do ~H""" """ end @doc """ Renders the `key` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def key(assigns) do ~H""" """ end @doc """ Renders the `keyboard_hide` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyboard_hide(assigns) do ~H""" """ end @doc """ Renders the `keyboard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyboard_off(assigns) do ~H""" """ end @doc """ Renders the `keyboard_show` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyboard_show(assigns) do ~H""" """ end @doc """ Renders the `keyboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyboard(assigns) do ~H""" """ end @doc """ Renders the `keyframe_align_center_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_align_center_filled(assigns) do ~H""" """ end @doc """ Renders the `keyframe_align_center` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_align_center(assigns) do ~H""" """ end @doc """ Renders the `keyframe_align_horizontal_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_align_horizontal_filled(assigns) do ~H""" """ end @doc """ Renders the `keyframe_align_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_align_horizontal(assigns) do ~H""" """ end @doc """ Renders the `keyframe_align_vertical_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_align_vertical_filled(assigns) do ~H""" """ end @doc """ Renders the `keyframe_align_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_align_vertical(assigns) do ~H""" """ end @doc """ Renders the `keyframe_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe_filled(assigns) do ~H""" """ end @doc """ Renders the `keyframe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframe(assigns) do ~H""" """ end @doc """ Renders the `keyframes_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframes_filled(assigns) do ~H""" """ end @doc """ Renders the `keyframes` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def keyframes(assigns) do ~H""" """ end @doc """ Renders the `ladder_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ladder_off(assigns) do ~H""" """ end @doc """ Renders the `ladder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ladder(assigns) do ~H""" """ end @doc """ Renders the `ladle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ladle(assigns) do ~H""" """ end @doc """ Renders the `lambda` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lambda(assigns) do ~H""" """ end @doc """ Renders the `lamp_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lamp_2(assigns) do ~H""" """ end @doc """ Renders the `lamp_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lamp_off(assigns) do ~H""" """ end @doc """ Renders the `lamp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lamp(assigns) do ~H""" """ end @doc """ Renders the `lane` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lane(assigns) do ~H""" """ end @doc """ Renders the `language_hiragana` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def language_hiragana(assigns) do ~H""" """ end @doc """ Renders the `language_katakana` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def language_katakana(assigns) do ~H""" """ end @doc """ Renders the `language_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def language_off(assigns) do ~H""" """ end @doc """ Renders the `language` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def language(assigns) do ~H""" """ end @doc """ Renders the `lasso_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lasso_off(assigns) do ~H""" """ end @doc """ Renders the `lasso_polygon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lasso_polygon(assigns) do ~H""" """ end @doc """ Renders the `lasso` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lasso(assigns) do ~H""" """ end @doc """ Renders the `layers_difference` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_difference(assigns) do ~H""" """ end @doc """ Renders the `layers_intersect_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_intersect_2(assigns) do ~H""" """ end @doc """ Renders the `layers_intersect` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_intersect(assigns) do ~H""" """ end @doc """ Renders the `layers_linked` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_linked(assigns) do ~H""" """ end @doc """ Renders the `layers_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_off(assigns) do ~H""" """ end @doc """ Renders the `layers_subtract` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_subtract(assigns) do ~H""" """ end @doc """ Renders the `layers_union` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layers_union(assigns) do ~H""" """ end @doc """ Renders the `layout_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_2(assigns) do ~H""" """ end @doc """ Renders the `layout_align_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_align_bottom(assigns) do ~H""" """ end @doc """ Renders the `layout_align_center` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_align_center(assigns) do ~H""" """ end @doc """ Renders the `layout_align_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_align_left(assigns) do ~H""" """ end @doc """ Renders the `layout_align_middle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_align_middle(assigns) do ~H""" """ end @doc """ Renders the `layout_align_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_align_right(assigns) do ~H""" """ end @doc """ Renders the `layout_align_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_align_top(assigns) do ~H""" """ end @doc """ Renders the `layout_board_split` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_board_split(assigns) do ~H""" """ end @doc """ Renders the `layout_board` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_board(assigns) do ~H""" """ end @doc """ Renders the `layout_bottombar_collapse_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_bottombar_collapse_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_bottombar_collapse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_bottombar_collapse(assigns) do ~H""" """ end @doc """ Renders the `layout_bottombar_expand_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_bottombar_expand_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_bottombar_expand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_bottombar_expand(assigns) do ~H""" """ end @doc """ Renders the `layout_bottombar_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_bottombar_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_bottombar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_bottombar(assigns) do ~H""" """ end @doc """ Renders the `layout_cards` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_cards(assigns) do ~H""" """ end @doc """ Renders the `layout_collage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_collage(assigns) do ~H""" """ end @doc """ Renders the `layout_columns` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_columns(assigns) do ~H""" """ end @doc """ Renders the `layout_dashboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_dashboard(assigns) do ~H""" """ end @doc """ Renders the `layout_distribute_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_distribute_horizontal(assigns) do ~H""" """ end @doc """ Renders the `layout_distribute_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_distribute_vertical(assigns) do ~H""" """ end @doc """ Renders the `layout_grid_add` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_grid_add(assigns) do ~H""" """ end @doc """ Renders the `layout_grid_remove` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_grid_remove(assigns) do ~H""" """ end @doc """ Renders the `layout_grid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_grid(assigns) do ~H""" """ end @doc """ Renders the `layout_kanban` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_kanban(assigns) do ~H""" """ end @doc """ Renders the `layout_list` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_list(assigns) do ~H""" """ end @doc """ Renders the `layout_navbar_collapse_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_navbar_collapse_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_navbar_collapse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_navbar_collapse(assigns) do ~H""" """ end @doc """ Renders the `layout_navbar_expand_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_navbar_expand_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_navbar_expand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_navbar_expand(assigns) do ~H""" """ end @doc """ Renders the `layout_navbar_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_navbar_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_navbar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_navbar(assigns) do ~H""" """ end @doc """ Renders the `layout_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_off(assigns) do ~H""" """ end @doc """ Renders the `layout_rows` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_rows(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_left_collapse_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_left_collapse_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_left_collapse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_left_collapse(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_left_expand_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_left_expand_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_left_expand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_left_expand(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_right_collapse_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_right_collapse_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_right_collapse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_right_collapse(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_right_expand_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_right_expand_filled(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_right_expand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_right_expand(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar_right(assigns) do ~H""" """ end @doc """ Renders the `layout_sidebar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout_sidebar(assigns) do ~H""" """ end @doc """ Renders the `layout` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def layout(assigns) do ~H""" """ end @doc """ Renders the `leaf_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def leaf_off(assigns) do ~H""" """ end @doc """ Renders the `leaf` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def leaf(assigns) do ~H""" """ end @doc """ Renders the `lego_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lego_off(assigns) do ~H""" """ end @doc """ Renders the `lego` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lego(assigns) do ~H""" """ end @doc """ Renders the `lemon_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lemon_2(assigns) do ~H""" """ end @doc """ Renders the `lemon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lemon(assigns) do ~H""" """ end @doc """ Renders the `letter_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_a(assigns) do ~H""" """ end @doc """ Renders the `letter_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_b(assigns) do ~H""" """ end @doc """ Renders the `letter_c` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_c(assigns) do ~H""" """ end @doc """ Renders the `letter_case_lower` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_case_lower(assigns) do ~H""" """ end @doc """ Renders the `letter_case_toggle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_case_toggle(assigns) do ~H""" """ end @doc """ Renders the `letter_case_upper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_case_upper(assigns) do ~H""" """ end @doc """ Renders the `letter_case` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_case(assigns) do ~H""" """ end @doc """ Renders the `letter_d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_d(assigns) do ~H""" """ end @doc """ Renders the `letter_e` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_e(assigns) do ~H""" """ end @doc """ Renders the `letter_f` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_f(assigns) do ~H""" """ end @doc """ Renders the `letter_g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_g(assigns) do ~H""" """ end @doc """ Renders the `letter_h` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_h(assigns) do ~H""" """ end @doc """ Renders the `letter_i` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_i(assigns) do ~H""" """ end @doc """ Renders the `letter_j` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_j(assigns) do ~H""" """ end @doc """ Renders the `letter_k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_k(assigns) do ~H""" """ end @doc """ Renders the `letter_l` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_l(assigns) do ~H""" """ end @doc """ Renders the `letter_m` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_m(assigns) do ~H""" """ end @doc """ Renders the `letter_n` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_n(assigns) do ~H""" """ end @doc """ Renders the `letter_o` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_o(assigns) do ~H""" """ end @doc """ Renders the `letter_p` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_p(assigns) do ~H""" """ end @doc """ Renders the `letter_q` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_q(assigns) do ~H""" """ end @doc """ Renders the `letter_r` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_r(assigns) do ~H""" """ end @doc """ Renders the `letter_s` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_s(assigns) do ~H""" """ end @doc """ Renders the `letter_spacing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_spacing(assigns) do ~H""" """ end @doc """ Renders the `letter_t` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_t(assigns) do ~H""" """ end @doc """ Renders the `letter_u` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_u(assigns) do ~H""" """ end @doc """ Renders the `letter_v` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_v(assigns) do ~H""" """ end @doc """ Renders the `letter_w` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_w(assigns) do ~H""" """ end @doc """ Renders the `letter_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_x(assigns) do ~H""" """ end @doc """ Renders the `letter_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_y(assigns) do ~H""" """ end @doc """ Renders the `letter_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def letter_z(assigns) do ~H""" """ end @doc """ Renders the `license_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def license_off(assigns) do ~H""" """ end @doc """ Renders the `license` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def license(assigns) do ~H""" """ end @doc """ Renders the `lifebuoy_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lifebuoy_off(assigns) do ~H""" """ end @doc """ Renders the `lifebuoy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lifebuoy(assigns) do ~H""" """ end @doc """ Renders the `lighter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lighter(assigns) do ~H""" """ end @doc """ Renders the `line_dashed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def line_dashed(assigns) do ~H""" """ end @doc """ Renders the `line_dotted` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def line_dotted(assigns) do ~H""" """ end @doc """ Renders the `line_height` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def line_height(assigns) do ~H""" """ end @doc """ Renders the `line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def line(assigns) do ~H""" """ end @doc """ Renders the `link_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def link_off(assigns) do ~H""" """ end @doc """ Renders the `link` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def link(assigns) do ~H""" """ end @doc """ Renders the `list_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def list_check(assigns) do ~H""" """ end @doc """ Renders the `list_details` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def list_details(assigns) do ~H""" """ end @doc """ Renders the `list_numbers` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def list_numbers(assigns) do ~H""" """ end @doc """ Renders the `list_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def list_search(assigns) do ~H""" """ end @doc """ Renders the `list_tree` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def list_tree(assigns) do ~H""" """ end @doc """ Renders the `list` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def list(assigns) do ~H""" """ end @doc """ Renders the `live_photo_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def live_photo_off(assigns) do ~H""" """ end @doc """ Renders the `live_photo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def live_photo(assigns) do ~H""" """ end @doc """ Renders the `live_view` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def live_view(assigns) do ~H""" """ end @doc """ Renders the `load_balancer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def load_balancer(assigns) do ~H""" """ end @doc """ Renders the `loader_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def loader_2(assigns) do ~H""" """ end @doc """ Renders the `loader_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def loader_3(assigns) do ~H""" """ end @doc """ Renders the `loader_quarter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def loader_quarter(assigns) do ~H""" """ end @doc """ Renders the `loader` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def loader(assigns) do ~H""" """ end @doc """ Renders the `location_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_bolt(assigns) do ~H""" """ end @doc """ Renders the `location_broken` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_broken(assigns) do ~H""" """ end @doc """ Renders the `location_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_cancel(assigns) do ~H""" """ end @doc """ Renders the `location_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_check(assigns) do ~H""" """ end @doc """ Renders the `location_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_code(assigns) do ~H""" """ end @doc """ Renders the `location_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_cog(assigns) do ~H""" """ end @doc """ Renders the `location_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_discount(assigns) do ~H""" """ end @doc """ Renders the `location_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_dollar(assigns) do ~H""" """ end @doc """ Renders the `location_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_down(assigns) do ~H""" """ end @doc """ Renders the `location_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_exclamation(assigns) do ~H""" """ end @doc """ Renders the `location_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_filled(assigns) do ~H""" """ end @doc """ Renders the `location_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_heart(assigns) do ~H""" """ end @doc """ Renders the `location_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_minus(assigns) do ~H""" """ end @doc """ Renders the `location_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_off(assigns) do ~H""" """ end @doc """ Renders the `location_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_pause(assigns) do ~H""" """ end @doc """ Renders the `location_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_pin(assigns) do ~H""" """ end @doc """ Renders the `location_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_plus(assigns) do ~H""" """ end @doc """ Renders the `location_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_question(assigns) do ~H""" """ end @doc """ Renders the `location_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_search(assigns) do ~H""" """ end @doc """ Renders the `location_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_share(assigns) do ~H""" """ end @doc """ Renders the `location_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_star(assigns) do ~H""" """ end @doc """ Renders the `location_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_up(assigns) do ~H""" """ end @doc """ Renders the `location_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location_x(assigns) do ~H""" """ end @doc """ Renders the `location` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def location(assigns) do ~H""" """ end @doc """ Renders the `lock_access_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_access_off(assigns) do ~H""" """ end @doc """ Renders the `lock_access` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_access(assigns) do ~H""" """ end @doc """ Renders the `lock_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_bolt(assigns) do ~H""" """ end @doc """ Renders the `lock_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_cancel(assigns) do ~H""" """ end @doc """ Renders the `lock_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_check(assigns) do ~H""" """ end @doc """ Renders the `lock_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_code(assigns) do ~H""" """ end @doc """ Renders the `lock_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_cog(assigns) do ~H""" """ end @doc """ Renders the `lock_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_dollar(assigns) do ~H""" """ end @doc """ Renders the `lock_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_down(assigns) do ~H""" """ end @doc """ Renders the `lock_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_exclamation(assigns) do ~H""" """ end @doc """ Renders the `lock_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_heart(assigns) do ~H""" """ end @doc """ Renders the `lock_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_minus(assigns) do ~H""" """ end @doc """ Renders the `lock_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_off(assigns) do ~H""" """ end @doc """ Renders the `lock_open_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_open_off(assigns) do ~H""" """ end @doc """ Renders the `lock_open` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_open(assigns) do ~H""" """ end @doc """ Renders the `lock_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_pause(assigns) do ~H""" """ end @doc """ Renders the `lock_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_pin(assigns) do ~H""" """ end @doc """ Renders the `lock_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_plus(assigns) do ~H""" """ end @doc """ Renders the `lock_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_question(assigns) do ~H""" """ end @doc """ Renders the `lock_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_search(assigns) do ~H""" """ end @doc """ Renders the `lock_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_share(assigns) do ~H""" """ end @doc """ Renders the `lock_square_rounded_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_square_rounded_filled(assigns) do ~H""" """ end @doc """ Renders the `lock_square_rounded` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_square_rounded(assigns) do ~H""" """ end @doc """ Renders the `lock_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_square(assigns) do ~H""" """ end @doc """ Renders the `lock_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_star(assigns) do ~H""" """ end @doc """ Renders the `lock_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_up(assigns) do ~H""" """ end @doc """ Renders the `lock_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock_x(assigns) do ~H""" """ end @doc """ Renders the `lock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lock(assigns) do ~H""" """ end @doc """ Renders the `logic_and` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_and(assigns) do ~H""" """ end @doc """ Renders the `logic_buffer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_buffer(assigns) do ~H""" """ end @doc """ Renders the `logic_nand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_nand(assigns) do ~H""" """ end @doc """ Renders the `logic_nor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_nor(assigns) do ~H""" """ end @doc """ Renders the `logic_not` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_not(assigns) do ~H""" """ end @doc """ Renders the `logic_or` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_or(assigns) do ~H""" """ end @doc """ Renders the `logic_xnor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_xnor(assigns) do ~H""" """ end @doc """ Renders the `logic_xor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logic_xor(assigns) do ~H""" """ end @doc """ Renders the `login` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def login(assigns) do ~H""" """ end @doc """ Renders the `logout_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logout_2(assigns) do ~H""" """ end @doc """ Renders the `logout` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def logout(assigns) do ~H""" """ end @doc """ Renders the `lollipop_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lollipop_off(assigns) do ~H""" """ end @doc """ Renders the `lollipop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lollipop(assigns) do ~H""" """ end @doc """ Renders the `luggage_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def luggage_off(assigns) do ~H""" """ end @doc """ Renders the `luggage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def luggage(assigns) do ~H""" """ end @doc """ Renders the `lungs_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lungs_off(assigns) do ~H""" """ end @doc """ Renders the `lungs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def lungs(assigns) do ~H""" """ end @doc """ Renders the `macro_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def macro_off(assigns) do ~H""" """ end @doc """ Renders the `macro` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def macro(assigns) do ~H""" """ end @doc """ Renders the `magnet_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def magnet_off(assigns) do ~H""" """ end @doc """ Renders the `magnet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def magnet(assigns) do ~H""" """ end @doc """ Renders the `mail_ai` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_ai(assigns) do ~H""" """ end @doc """ Renders the `mail_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_bolt(assigns) do ~H""" """ end @doc """ Renders the `mail_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_cancel(assigns) do ~H""" """ end @doc """ Renders the `mail_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_check(assigns) do ~H""" """ end @doc """ Renders the `mail_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_code(assigns) do ~H""" """ end @doc """ Renders the `mail_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_cog(assigns) do ~H""" """ end @doc """ Renders the `mail_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_dollar(assigns) do ~H""" """ end @doc """ Renders the `mail_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_down(assigns) do ~H""" """ end @doc """ Renders the `mail_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_exclamation(assigns) do ~H""" """ end @doc """ Renders the `mail_fast` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_fast(assigns) do ~H""" """ end @doc """ Renders the `mail_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_filled(assigns) do ~H""" """ end @doc """ Renders the `mail_forward` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_forward(assigns) do ~H""" """ end @doc """ Renders the `mail_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_heart(assigns) do ~H""" """ end @doc """ Renders the `mail_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_minus(assigns) do ~H""" """ end @doc """ Renders the `mail_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_off(assigns) do ~H""" """ end @doc """ Renders the `mail_opened_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_opened_filled(assigns) do ~H""" """ end @doc """ Renders the `mail_opened` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_opened(assigns) do ~H""" """ end @doc """ Renders the `mail_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_pause(assigns) do ~H""" """ end @doc """ Renders the `mail_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_pin(assigns) do ~H""" """ end @doc """ Renders the `mail_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_plus(assigns) do ~H""" """ end @doc """ Renders the `mail_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_question(assigns) do ~H""" """ end @doc """ Renders the `mail_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_search(assigns) do ~H""" """ end @doc """ Renders the `mail_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_share(assigns) do ~H""" """ end @doc """ Renders the `mail_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_star(assigns) do ~H""" """ end @doc """ Renders the `mail_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_up(assigns) do ~H""" """ end @doc """ Renders the `mail_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail_x(assigns) do ~H""" """ end @doc """ Renders the `mail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mail(assigns) do ~H""" """ end @doc """ Renders the `mailbox_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mailbox_off(assigns) do ~H""" """ end @doc """ Renders the `mailbox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mailbox(assigns) do ~H""" """ end @doc """ Renders the `man` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def man(assigns) do ~H""" """ end @doc """ Renders the `manual_gearbox` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def manual_gearbox(assigns) do ~H""" """ end @doc """ Renders the `map_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_2(assigns) do ~H""" """ end @doc """ Renders the `map_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_bolt(assigns) do ~H""" """ end @doc """ Renders the `map_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_cancel(assigns) do ~H""" """ end @doc """ Renders the `map_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_check(assigns) do ~H""" """ end @doc """ Renders the `map_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_code(assigns) do ~H""" """ end @doc """ Renders the `map_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_cog(assigns) do ~H""" """ end @doc """ Renders the `map_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_discount(assigns) do ~H""" """ end @doc """ Renders the `map_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_dollar(assigns) do ~H""" """ end @doc """ Renders the `map_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_down(assigns) do ~H""" """ end @doc """ Renders the `map_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_exclamation(assigns) do ~H""" """ end @doc """ Renders the `map_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_heart(assigns) do ~H""" """ end @doc """ Renders the `map_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_minus(assigns) do ~H""" """ end @doc """ Renders the `map_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_off(assigns) do ~H""" """ end @doc """ Renders the `map_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pause(assigns) do ~H""" """ end @doc """ Renders the `map_pin_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_bolt(assigns) do ~H""" """ end @doc """ Renders the `map_pin_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_cancel(assigns) do ~H""" """ end @doc """ Renders the `map_pin_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_check(assigns) do ~H""" """ end @doc """ Renders the `map_pin_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_code(assigns) do ~H""" """ end @doc """ Renders the `map_pin_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_cog(assigns) do ~H""" """ end @doc """ Renders the `map_pin_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_dollar(assigns) do ~H""" """ end @doc """ Renders the `map_pin_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_down(assigns) do ~H""" """ end @doc """ Renders the `map_pin_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_exclamation(assigns) do ~H""" """ end @doc """ Renders the `map_pin_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_filled(assigns) do ~H""" """ end @doc """ Renders the `map_pin_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_heart(assigns) do ~H""" """ end @doc """ Renders the `map_pin_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_minus(assigns) do ~H""" """ end @doc """ Renders the `map_pin_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_off(assigns) do ~H""" """ end @doc """ Renders the `map_pin_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_pause(assigns) do ~H""" """ end @doc """ Renders the `map_pin_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_pin(assigns) do ~H""" """ end @doc """ Renders the `map_pin_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_plus(assigns) do ~H""" """ end @doc """ Renders the `map_pin_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_question(assigns) do ~H""" """ end @doc """ Renders the `map_pin_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_search(assigns) do ~H""" """ end @doc """ Renders the `map_pin_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_share(assigns) do ~H""" """ end @doc """ Renders the `map_pin_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_star(assigns) do ~H""" """ end @doc """ Renders the `map_pin_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_up(assigns) do ~H""" """ end @doc """ Renders the `map_pin_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin_x(assigns) do ~H""" """ end @doc """ Renders the `map_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pin(assigns) do ~H""" """ end @doc """ Renders the `map_pins` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_pins(assigns) do ~H""" """ end @doc """ Renders the `map_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_plus(assigns) do ~H""" """ end @doc """ Renders the `map_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_question(assigns) do ~H""" """ end @doc """ Renders the `map_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_search(assigns) do ~H""" """ end @doc """ Renders the `map_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_share(assigns) do ~H""" """ end @doc """ Renders the `map_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_star(assigns) do ~H""" """ end @doc """ Renders the `map_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_up(assigns) do ~H""" """ end @doc """ Renders the `map_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map_x(assigns) do ~H""" """ end @doc """ Renders the `map` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def map(assigns) do ~H""" """ end @doc """ Renders the `markdown_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def markdown_off(assigns) do ~H""" """ end @doc """ Renders the `markdown` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def markdown(assigns) do ~H""" """ end @doc """ Renders the `marquee_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def marquee_2(assigns) do ~H""" """ end @doc """ Renders the `marquee_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def marquee_off(assigns) do ~H""" """ end @doc """ Renders the `marquee` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def marquee(assigns) do ~H""" """ end @doc """ Renders the `mars` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mars(assigns) do ~H""" """ end @doc """ Renders the `mask_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mask_off(assigns) do ~H""" """ end @doc """ Renders the `mask` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mask(assigns) do ~H""" """ end @doc """ Renders the `masks_theater_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def masks_theater_off(assigns) do ~H""" """ end @doc """ Renders the `masks_theater` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def masks_theater(assigns) do ~H""" """ end @doc """ Renders the `massage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def massage(assigns) do ~H""" """ end @doc """ Renders the `matchstick` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def matchstick(assigns) do ~H""" """ end @doc """ Renders the `math_1_divide_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_1_divide_2(assigns) do ~H""" """ end @doc """ Renders the `math_1_divide_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_1_divide_3(assigns) do ~H""" """ end @doc """ Renders the `math_avg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_avg(assigns) do ~H""" """ end @doc """ Renders the `math_equal_greater` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_equal_greater(assigns) do ~H""" """ end @doc """ Renders the `math_equal_lower` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_equal_lower(assigns) do ~H""" """ end @doc """ Renders the `math_function_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_function_off(assigns) do ~H""" """ end @doc """ Renders the `math_function_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_function_y(assigns) do ~H""" """ end @doc """ Renders the `math_function` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_function(assigns) do ~H""" """ end @doc """ Renders the `math_greater` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_greater(assigns) do ~H""" """ end @doc """ Renders the `math_integral_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_integral_x(assigns) do ~H""" """ end @doc """ Renders the `math_integral` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_integral(assigns) do ~H""" """ end @doc """ Renders the `math_integrals` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_integrals(assigns) do ~H""" """ end @doc """ Renders the `math_lower` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_lower(assigns) do ~H""" """ end @doc """ Renders the `math_max` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_max(assigns) do ~H""" """ end @doc """ Renders the `math_min` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_min(assigns) do ~H""" """ end @doc """ Renders the `math_not` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_not(assigns) do ~H""" """ end @doc """ Renders the `math_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_off(assigns) do ~H""" """ end @doc """ Renders the `math_pi_divide_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_pi_divide_2(assigns) do ~H""" """ end @doc """ Renders the `math_pi` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_pi(assigns) do ~H""" """ end @doc """ Renders the `math_symbols` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_symbols(assigns) do ~H""" """ end @doc """ Renders the `math_x_divide_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_divide_2(assigns) do ~H""" """ end @doc """ Renders the `math_x_divide_y_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_divide_y_2(assigns) do ~H""" """ end @doc """ Renders the `math_x_divide_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_divide_y(assigns) do ~H""" """ end @doc """ Renders the `math_x_minus_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_minus_x(assigns) do ~H""" """ end @doc """ Renders the `math_x_minus_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_minus_y(assigns) do ~H""" """ end @doc """ Renders the `math_x_plus_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_plus_x(assigns) do ~H""" """ end @doc """ Renders the `math_x_plus_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_x_plus_y(assigns) do ~H""" """ end @doc """ Renders the `math_xy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_xy(assigns) do ~H""" """ end @doc """ Renders the `math_y_minus_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_y_minus_y(assigns) do ~H""" """ end @doc """ Renders the `math_y_plus_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math_y_plus_y(assigns) do ~H""" """ end @doc """ Renders the `math` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def math(assigns) do ~H""" """ end @doc """ Renders the `maximize_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def maximize_off(assigns) do ~H""" """ end @doc """ Renders the `maximize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def maximize(assigns) do ~H""" """ end @doc """ Renders the `meat_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def meat_off(assigns) do ~H""" """ end @doc """ Renders the `meat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def meat(assigns) do ~H""" """ end @doc """ Renders the `medal_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medal_2(assigns) do ~H""" """ end @doc """ Renders the `medal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medal(assigns) do ~H""" """ end @doc """ Renders the `medical_cross_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medical_cross_circle(assigns) do ~H""" """ end @doc """ Renders the `medical_cross_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medical_cross_filled(assigns) do ~H""" """ end @doc """ Renders the `medical_cross_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medical_cross_off(assigns) do ~H""" """ end @doc """ Renders the `medical_cross` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medical_cross(assigns) do ~H""" """ end @doc """ Renders the `medicine_syrup` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def medicine_syrup(assigns) do ~H""" """ end @doc """ Renders the `meeple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def meeple(assigns) do ~H""" """ end @doc """ Renders the `menorah` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def menorah(assigns) do ~H""" """ end @doc """ Renders the `menu_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def menu_2(assigns) do ~H""" """ end @doc """ Renders the `menu_deep` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def menu_deep(assigns) do ~H""" """ end @doc """ Renders the `menu_order` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def menu_order(assigns) do ~H""" """ end @doc """ Renders the `menu` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def menu(assigns) do ~H""" """ end @doc """ Renders the `message_2_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_bolt(assigns) do ~H""" """ end @doc """ Renders the `message_2_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_cancel(assigns) do ~H""" """ end @doc """ Renders the `message_2_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_check(assigns) do ~H""" """ end @doc """ Renders the `message_2_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_code(assigns) do ~H""" """ end @doc """ Renders the `message_2_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_cog(assigns) do ~H""" """ end @doc """ Renders the `message_2_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_dollar(assigns) do ~H""" """ end @doc """ Renders the `message_2_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_down(assigns) do ~H""" """ end @doc """ Renders the `message_2_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_exclamation(assigns) do ~H""" """ end @doc """ Renders the `message_2_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_heart(assigns) do ~H""" """ end @doc """ Renders the `message_2_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_minus(assigns) do ~H""" """ end @doc """ Renders the `message_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_off(assigns) do ~H""" """ end @doc """ Renders the `message_2_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_pause(assigns) do ~H""" """ end @doc """ Renders the `message_2_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_pin(assigns) do ~H""" """ end @doc """ Renders the `message_2_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_plus(assigns) do ~H""" """ end @doc """ Renders the `message_2_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_question(assigns) do ~H""" """ end @doc """ Renders the `message_2_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_search(assigns) do ~H""" """ end @doc """ Renders the `message_2_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_share(assigns) do ~H""" """ end @doc """ Renders the `message_2_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_star(assigns) do ~H""" """ end @doc """ Renders the `message_2_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_up(assigns) do ~H""" """ end @doc """ Renders the `message_2_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2_x(assigns) do ~H""" """ end @doc """ Renders the `message_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_2(assigns) do ~H""" """ end @doc """ Renders the `message_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_bolt(assigns) do ~H""" """ end @doc """ Renders the `message_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_cancel(assigns) do ~H""" """ end @doc """ Renders the `message_chatbot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_chatbot(assigns) do ~H""" """ end @doc """ Renders the `message_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_check(assigns) do ~H""" """ end @doc """ Renders the `message_circle_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_2_filled(assigns) do ~H""" """ end @doc """ Renders the `message_circle_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_2(assigns) do ~H""" """ end @doc """ Renders the `message_circle_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_bolt(assigns) do ~H""" """ end @doc """ Renders the `message_circle_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_cancel(assigns) do ~H""" """ end @doc """ Renders the `message_circle_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_check(assigns) do ~H""" """ end @doc """ Renders the `message_circle_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_code(assigns) do ~H""" """ end @doc """ Renders the `message_circle_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_cog(assigns) do ~H""" """ end @doc """ Renders the `message_circle_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_dollar(assigns) do ~H""" """ end @doc """ Renders the `message_circle_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_down(assigns) do ~H""" """ end @doc """ Renders the `message_circle_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_exclamation(assigns) do ~H""" """ end @doc """ Renders the `message_circle_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_heart(assigns) do ~H""" """ end @doc """ Renders the `message_circle_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_minus(assigns) do ~H""" """ end @doc """ Renders the `message_circle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_off(assigns) do ~H""" """ end @doc """ Renders the `message_circle_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_pause(assigns) do ~H""" """ end @doc """ Renders the `message_circle_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_pin(assigns) do ~H""" """ end @doc """ Renders the `message_circle_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_plus(assigns) do ~H""" """ end @doc """ Renders the `message_circle_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_question(assigns) do ~H""" """ end @doc """ Renders the `message_circle_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_search(assigns) do ~H""" """ end @doc """ Renders the `message_circle_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_share(assigns) do ~H""" """ end @doc """ Renders the `message_circle_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_star(assigns) do ~H""" """ end @doc """ Renders the `message_circle_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_up(assigns) do ~H""" """ end @doc """ Renders the `message_circle_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle_x(assigns) do ~H""" """ end @doc """ Renders the `message_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_circle(assigns) do ~H""" """ end @doc """ Renders the `message_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_code(assigns) do ~H""" """ end @doc """ Renders the `message_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_cog(assigns) do ~H""" """ end @doc """ Renders the `message_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_dollar(assigns) do ~H""" """ end @doc """ Renders the `message_dots` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_dots(assigns) do ~H""" """ end @doc """ Renders the `message_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_down(assigns) do ~H""" """ end @doc """ Renders the `message_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_exclamation(assigns) do ~H""" """ end @doc """ Renders the `message_forward` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_forward(assigns) do ~H""" """ end @doc """ Renders the `message_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_heart(assigns) do ~H""" """ end @doc """ Renders the `message_language` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_language(assigns) do ~H""" """ end @doc """ Renders the `message_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_minus(assigns) do ~H""" """ end @doc """ Renders the `message_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_off(assigns) do ~H""" """ end @doc """ Renders the `message_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_pause(assigns) do ~H""" """ end @doc """ Renders the `message_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_pin(assigns) do ~H""" """ end @doc """ Renders the `message_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_plus(assigns) do ~H""" """ end @doc """ Renders the `message_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_question(assigns) do ~H""" """ end @doc """ Renders the `message_report` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_report(assigns) do ~H""" """ end @doc """ Renders the `message_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_search(assigns) do ~H""" """ end @doc """ Renders the `message_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_share(assigns) do ~H""" """ end @doc """ Renders the `message_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_star(assigns) do ~H""" """ end @doc """ Renders the `message_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_up(assigns) do ~H""" """ end @doc """ Renders the `message_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message_x(assigns) do ~H""" """ end @doc """ Renders the `message` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def message(assigns) do ~H""" """ end @doc """ Renders the `messages_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def messages_off(assigns) do ~H""" """ end @doc """ Renders the `messages` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def messages(assigns) do ~H""" """ end @doc """ Renders the `meteor_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def meteor_off(assigns) do ~H""" """ end @doc """ Renders the `meteor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def meteor(assigns) do ~H""" """ end @doc """ Renders the `michelin_bib_gourmand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def michelin_bib_gourmand(assigns) do ~H""" """ end @doc """ Renders the `michelin_star_green` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def michelin_star_green(assigns) do ~H""" """ end @doc """ Renders the `michelin_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def michelin_star(assigns) do ~H""" """ end @doc """ Renders the `mickey_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mickey_filled(assigns) do ~H""" """ end @doc """ Renders the `mickey` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mickey(assigns) do ~H""" """ end @doc """ Renders the `microphone_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microphone_2_off(assigns) do ~H""" """ end @doc """ Renders the `microphone_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microphone_2(assigns) do ~H""" """ end @doc """ Renders the `microphone_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microphone_off(assigns) do ~H""" """ end @doc """ Renders the `microphone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microphone(assigns) do ~H""" """ end @doc """ Renders the `microscope_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microscope_off(assigns) do ~H""" """ end @doc """ Renders the `microscope` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microscope(assigns) do ~H""" """ end @doc """ Renders the `microwave_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microwave_off(assigns) do ~H""" """ end @doc """ Renders the `microwave` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def microwave(assigns) do ~H""" """ end @doc """ Renders the `military_award` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def military_award(assigns) do ~H""" """ end @doc """ Renders the `military_rank` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def military_rank(assigns) do ~H""" """ end @doc """ Renders the `milk_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def milk_off(assigns) do ~H""" """ end @doc """ Renders the `milk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def milk(assigns) do ~H""" """ end @doc """ Renders the `milkshake` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def milkshake(assigns) do ~H""" """ end @doc """ Renders the `minimize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def minimize(assigns) do ~H""" """ end @doc """ Renders the `minus_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def minus_vertical(assigns) do ~H""" """ end @doc """ Renders the `minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def minus(assigns) do ~H""" """ end @doc """ Renders the `mist_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mist_off(assigns) do ~H""" """ end @doc """ Renders the `mist` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mist(assigns) do ~H""" """ end @doc """ Renders the `mobiledata_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mobiledata_off(assigns) do ~H""" """ end @doc """ Renders the `mobiledata` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mobiledata(assigns) do ~H""" """ end @doc """ Renders the `moneybag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moneybag(assigns) do ~H""" """ end @doc """ Renders the `mood_angry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_angry(assigns) do ~H""" """ end @doc """ Renders the `mood_annoyed_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_annoyed_2(assigns) do ~H""" """ end @doc """ Renders the `mood_annoyed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_annoyed(assigns) do ~H""" """ end @doc """ Renders the `mood_boy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_boy(assigns) do ~H""" """ end @doc """ Renders the `mood_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_check(assigns) do ~H""" """ end @doc """ Renders the `mood_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_cog(assigns) do ~H""" """ end @doc """ Renders the `mood_confuzed_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_confuzed_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_confuzed` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_confuzed(assigns) do ~H""" """ end @doc """ Renders the `mood_crazy_happy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_crazy_happy(assigns) do ~H""" """ end @doc """ Renders the `mood_cry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_cry(assigns) do ~H""" """ end @doc """ Renders the `mood_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_dollar(assigns) do ~H""" """ end @doc """ Renders the `mood_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_edit(assigns) do ~H""" """ end @doc """ Renders the `mood_empty_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_empty_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_empty` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_empty(assigns) do ~H""" """ end @doc """ Renders the `mood_happy_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_happy_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_happy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_happy(assigns) do ~H""" """ end @doc """ Renders the `mood_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_heart(assigns) do ~H""" """ end @doc """ Renders the `mood_kid_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_kid_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_kid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_kid(assigns) do ~H""" """ end @doc """ Renders the `mood_look_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_look_left(assigns) do ~H""" """ end @doc """ Renders the `mood_look_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_look_right(assigns) do ~H""" """ end @doc """ Renders the `mood_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_minus(assigns) do ~H""" """ end @doc """ Renders the `mood_nerd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_nerd(assigns) do ~H""" """ end @doc """ Renders the `mood_nervous` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_nervous(assigns) do ~H""" """ end @doc """ Renders the `mood_neutral_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_neutral_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_neutral` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_neutral(assigns) do ~H""" """ end @doc """ Renders the `mood_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_off(assigns) do ~H""" """ end @doc """ Renders the `mood_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_pin(assigns) do ~H""" """ end @doc """ Renders the `mood_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_plus(assigns) do ~H""" """ end @doc """ Renders the `mood_sad_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sad_2(assigns) do ~H""" """ end @doc """ Renders the `mood_sad_dizzy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sad_dizzy(assigns) do ~H""" """ end @doc """ Renders the `mood_sad_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sad_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_sad_squint` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sad_squint(assigns) do ~H""" """ end @doc """ Renders the `mood_sad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sad(assigns) do ~H""" """ end @doc """ Renders the `mood_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_search(assigns) do ~H""" """ end @doc """ Renders the `mood_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_share(assigns) do ~H""" """ end @doc """ Renders the `mood_sick` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sick(assigns) do ~H""" """ end @doc """ Renders the `mood_silence` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_silence(assigns) do ~H""" """ end @doc """ Renders the `mood_sing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_sing(assigns) do ~H""" """ end @doc """ Renders the `mood_smile_beam` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_smile_beam(assigns) do ~H""" """ end @doc """ Renders the `mood_smile_dizzy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_smile_dizzy(assigns) do ~H""" """ end @doc """ Renders the `mood_smile_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_smile_filled(assigns) do ~H""" """ end @doc """ Renders the `mood_smile` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_smile(assigns) do ~H""" """ end @doc """ Renders the `mood_suprised` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_suprised(assigns) do ~H""" """ end @doc """ Renders the `mood_tongue_wink_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_tongue_wink_2(assigns) do ~H""" """ end @doc """ Renders the `mood_tongue_wink` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_tongue_wink(assigns) do ~H""" """ end @doc """ Renders the `mood_tongue` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_tongue(assigns) do ~H""" """ end @doc """ Renders the `mood_unamused` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_unamused(assigns) do ~H""" """ end @doc """ Renders the `mood_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_up(assigns) do ~H""" """ end @doc """ Renders the `mood_wink_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_wink_2(assigns) do ~H""" """ end @doc """ Renders the `mood_wink` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_wink(assigns) do ~H""" """ end @doc """ Renders the `mood_wrrr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_wrrr(assigns) do ~H""" """ end @doc """ Renders the `mood_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_x(assigns) do ~H""" """ end @doc """ Renders the `mood_xd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mood_xd(assigns) do ~H""" """ end @doc """ Renders the `moon_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moon_2(assigns) do ~H""" """ end @doc """ Renders the `moon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moon_filled(assigns) do ~H""" """ end @doc """ Renders the `moon_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moon_off(assigns) do ~H""" """ end @doc """ Renders the `moon_stars` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moon_stars(assigns) do ~H""" """ end @doc """ Renders the `moon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moon(assigns) do ~H""" """ end @doc """ Renders the `moped` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moped(assigns) do ~H""" """ end @doc """ Renders the `motorbike` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def motorbike(assigns) do ~H""" """ end @doc """ Renders the `mountain_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mountain_off(assigns) do ~H""" """ end @doc """ Renders the `mountain` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mountain(assigns) do ~H""" """ end @doc """ Renders the `mouse_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mouse_2(assigns) do ~H""" """ end @doc """ Renders the `mouse_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mouse_filled(assigns) do ~H""" """ end @doc """ Renders the `mouse_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mouse_off(assigns) do ~H""" """ end @doc """ Renders the `mouse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mouse(assigns) do ~H""" """ end @doc """ Renders the `moustache` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def moustache(assigns) do ~H""" """ end @doc """ Renders the `movie_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def movie_off(assigns) do ~H""" """ end @doc """ Renders the `movie` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def movie(assigns) do ~H""" """ end @doc """ Renders the `mug_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mug_off(assigns) do ~H""" """ end @doc """ Renders the `mug` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mug(assigns) do ~H""" """ end @doc """ Renders the `multiplier_0_5x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def multiplier_0_5x(assigns) do ~H""" """ end @doc """ Renders the `multiplier_1_5x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def multiplier_1_5x(assigns) do ~H""" """ end @doc """ Renders the `multiplier_1x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def multiplier_1x(assigns) do ~H""" """ end @doc """ Renders the `multiplier_2x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def multiplier_2x(assigns) do ~H""" """ end @doc """ Renders the `mushroom_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mushroom_filled(assigns) do ~H""" """ end @doc """ Renders the `mushroom_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mushroom_off(assigns) do ~H""" """ end @doc """ Renders the `mushroom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def mushroom(assigns) do ~H""" """ end @doc """ Renders the `music_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_bolt(assigns) do ~H""" """ end @doc """ Renders the `music_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_cancel(assigns) do ~H""" """ end @doc """ Renders the `music_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_check(assigns) do ~H""" """ end @doc """ Renders the `music_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_code(assigns) do ~H""" """ end @doc """ Renders the `music_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_cog(assigns) do ~H""" """ end @doc """ Renders the `music_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_discount(assigns) do ~H""" """ end @doc """ Renders the `music_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_dollar(assigns) do ~H""" """ end @doc """ Renders the `music_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_down(assigns) do ~H""" """ end @doc """ Renders the `music_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_exclamation(assigns) do ~H""" """ end @doc """ Renders the `music_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_heart(assigns) do ~H""" """ end @doc """ Renders the `music_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_minus(assigns) do ~H""" """ end @doc """ Renders the `music_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_off(assigns) do ~H""" """ end @doc """ Renders the `music_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_pause(assigns) do ~H""" """ end @doc """ Renders the `music_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_pin(assigns) do ~H""" """ end @doc """ Renders the `music_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_plus(assigns) do ~H""" """ end @doc """ Renders the `music_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_question(assigns) do ~H""" """ end @doc """ Renders the `music_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_search(assigns) do ~H""" """ end @doc """ Renders the `music_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_share(assigns) do ~H""" """ end @doc """ Renders the `music_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_star(assigns) do ~H""" """ end @doc """ Renders the `music_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_up(assigns) do ~H""" """ end @doc """ Renders the `music_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music_x(assigns) do ~H""" """ end @doc """ Renders the `music` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def music(assigns) do ~H""" """ end @doc """ Renders the `navigation_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_bolt(assigns) do ~H""" """ end @doc """ Renders the `navigation_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_cancel(assigns) do ~H""" """ end @doc """ Renders the `navigation_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_check(assigns) do ~H""" """ end @doc """ Renders the `navigation_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_code(assigns) do ~H""" """ end @doc """ Renders the `navigation_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_cog(assigns) do ~H""" """ end @doc """ Renders the `navigation_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_discount(assigns) do ~H""" """ end @doc """ Renders the `navigation_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_dollar(assigns) do ~H""" """ end @doc """ Renders the `navigation_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_down(assigns) do ~H""" """ end @doc """ Renders the `navigation_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_exclamation(assigns) do ~H""" """ end @doc """ Renders the `navigation_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_filled(assigns) do ~H""" """ end @doc """ Renders the `navigation_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_heart(assigns) do ~H""" """ end @doc """ Renders the `navigation_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_minus(assigns) do ~H""" """ end @doc """ Renders the `navigation_north` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_north(assigns) do ~H""" """ end @doc """ Renders the `navigation_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_off(assigns) do ~H""" """ end @doc """ Renders the `navigation_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_pause(assigns) do ~H""" """ end @doc """ Renders the `navigation_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_pin(assigns) do ~H""" """ end @doc """ Renders the `navigation_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_plus(assigns) do ~H""" """ end @doc """ Renders the `navigation_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_question(assigns) do ~H""" """ end @doc """ Renders the `navigation_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_search(assigns) do ~H""" """ end @doc """ Renders the `navigation_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_share(assigns) do ~H""" """ end @doc """ Renders the `navigation_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_star(assigns) do ~H""" """ end @doc """ Renders the `navigation_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_up(assigns) do ~H""" """ end @doc """ Renders the `navigation_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation_x(assigns) do ~H""" """ end @doc """ Renders the `navigation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def navigation(assigns) do ~H""" """ end @doc """ Renders the `needle_thread` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def needle_thread(assigns) do ~H""" """ end @doc """ Renders the `needle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def needle(assigns) do ~H""" """ end @doc """ Renders the `network_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def network_off(assigns) do ~H""" """ end @doc """ Renders the `network` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def network(assigns) do ~H""" """ end @doc """ Renders the `new_section` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def new_section(assigns) do ~H""" """ end @doc """ Renders the `news_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def news_off(assigns) do ~H""" """ end @doc """ Renders the `news` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def news(assigns) do ~H""" """ end @doc """ Renders the `nfc_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def nfc_off(assigns) do ~H""" """ end @doc """ Renders the `nfc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def nfc(assigns) do ~H""" """ end @doc """ Renders the `no_copyright` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def no_copyright(assigns) do ~H""" """ end @doc """ Renders the `no_creative_commons` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def no_creative_commons(assigns) do ~H""" """ end @doc """ Renders the `no_derivatives` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def no_derivatives(assigns) do ~H""" """ end @doc """ Renders the `north_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def north_star(assigns) do ~H""" """ end @doc """ Renders the `note_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def note_off(assigns) do ~H""" """ end @doc """ Renders the `note` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def note(assigns) do ~H""" """ end @doc """ Renders the `notebook_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def notebook_off(assigns) do ~H""" """ end @doc """ Renders the `notebook` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def notebook(assigns) do ~H""" """ end @doc """ Renders the `notes_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def notes_off(assigns) do ~H""" """ end @doc """ Renders the `notes` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def notes(assigns) do ~H""" """ end @doc """ Renders the `notification_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def notification_off(assigns) do ~H""" """ end @doc """ Renders the `notification` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def notification(assigns) do ~H""" """ end @doc """ Renders the `number_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_0(assigns) do ~H""" """ end @doc """ Renders the `number_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_1(assigns) do ~H""" """ end @doc """ Renders the `number_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_2(assigns) do ~H""" """ end @doc """ Renders the `number_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_3(assigns) do ~H""" """ end @doc """ Renders the `number_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_4(assigns) do ~H""" """ end @doc """ Renders the `number_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_5(assigns) do ~H""" """ end @doc """ Renders the `number_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_6(assigns) do ~H""" """ end @doc """ Renders the `number_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_7(assigns) do ~H""" """ end @doc """ Renders the `number_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_8(assigns) do ~H""" """ end @doc """ Renders the `number_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number_9(assigns) do ~H""" """ end @doc """ Renders the `number` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def number(assigns) do ~H""" """ end @doc """ Renders the `numbers` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def numbers(assigns) do ~H""" """ end @doc """ Renders the `nurse` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def nurse(assigns) do ~H""" """ end @doc """ Renders the `octagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def octagon_filled(assigns) do ~H""" """ end @doc """ Renders the `octagon_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def octagon_off(assigns) do ~H""" """ end @doc """ Renders the `octagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def octagon(assigns) do ~H""" """ end @doc """ Renders the `octahedron_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def octahedron_off(assigns) do ~H""" """ end @doc """ Renders the `octahedron_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def octahedron_plus(assigns) do ~H""" """ end @doc """ Renders the `octahedron` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def octahedron(assigns) do ~H""" """ end @doc """ Renders the `old` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def old(assigns) do ~H""" """ end @doc """ Renders the `olympics_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def olympics_off(assigns) do ~H""" """ end @doc """ Renders the `olympics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def olympics(assigns) do ~H""" """ end @doc """ Renders the `om` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def om(assigns) do ~H""" """ end @doc """ Renders the `omega` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def omega(assigns) do ~H""" """ end @doc """ Renders the `outbound` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def outbound(assigns) do ~H""" """ end @doc """ Renders the `outlet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def outlet(assigns) do ~H""" """ end @doc """ Renders the `oval_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def oval_filled(assigns) do ~H""" """ end @doc """ Renders the `oval_vertical_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def oval_vertical_filled(assigns) do ~H""" """ end @doc """ Renders the `oval_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def oval_vertical(assigns) do ~H""" """ end @doc """ Renders the `oval` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def oval(assigns) do ~H""" """ end @doc """ Renders the `overline` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def overline(assigns) do ~H""" """ end @doc """ Renders the `package_export` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def package_export(assigns) do ~H""" """ end @doc """ Renders the `package_import` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def package_import(assigns) do ~H""" """ end @doc """ Renders the `package_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def package_off(assigns) do ~H""" """ end @doc """ Renders the `package` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def package(assigns) do ~H""" """ end @doc """ Renders the `packages` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def packages(assigns) do ~H""" """ end @doc """ Renders the `pacman` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pacman(assigns) do ~H""" """ end @doc """ Renders the `page_break` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def page_break(assigns) do ~H""" """ end @doc """ Renders the `paint_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paint_filled(assigns) do ~H""" """ end @doc """ Renders the `paint_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paint_off(assigns) do ~H""" """ end @doc """ Renders the `paint` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paint(assigns) do ~H""" """ end @doc """ Renders the `palette_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def palette_off(assigns) do ~H""" """ end @doc """ Renders the `palette` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def palette(assigns) do ~H""" """ end @doc """ Renders the `panorama_horizontal_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def panorama_horizontal_off(assigns) do ~H""" """ end @doc """ Renders the `panorama_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def panorama_horizontal(assigns) do ~H""" """ end @doc """ Renders the `panorama_vertical_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def panorama_vertical_off(assigns) do ~H""" """ end @doc """ Renders the `panorama_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def panorama_vertical(assigns) do ~H""" """ end @doc """ Renders the `paper_bag_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paper_bag_off(assigns) do ~H""" """ end @doc """ Renders the `paper_bag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paper_bag(assigns) do ~H""" """ end @doc """ Renders the `paperclip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paperclip(assigns) do ~H""" """ end @doc """ Renders the `parachute_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def parachute_off(assigns) do ~H""" """ end @doc """ Renders the `parachute` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def parachute(assigns) do ~H""" """ end @doc """ Renders the `parentheses_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def parentheses_off(assigns) do ~H""" """ end @doc """ Renders the `parentheses` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def parentheses(assigns) do ~H""" """ end @doc """ Renders the `parking_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def parking_off(assigns) do ~H""" """ end @doc """ Renders the `parking` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def parking(assigns) do ~H""" """ end @doc """ Renders the `password` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def password(assigns) do ~H""" """ end @doc """ Renders the `paw_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paw_filled(assigns) do ~H""" """ end @doc """ Renders the `paw_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paw_off(assigns) do ~H""" """ end @doc """ Renders the `paw` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def paw(assigns) do ~H""" """ end @doc """ Renders the `pdf` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pdf(assigns) do ~H""" """ end @doc """ Renders the `peace` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def peace(assigns) do ~H""" """ end @doc """ Renders the `pencil_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_bolt(assigns) do ~H""" """ end @doc """ Renders the `pencil_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_cancel(assigns) do ~H""" """ end @doc """ Renders the `pencil_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_check(assigns) do ~H""" """ end @doc """ Renders the `pencil_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_code(assigns) do ~H""" """ end @doc """ Renders the `pencil_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_cog(assigns) do ~H""" """ end @doc """ Renders the `pencil_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_discount(assigns) do ~H""" """ end @doc """ Renders the `pencil_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_dollar(assigns) do ~H""" """ end @doc """ Renders the `pencil_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_down(assigns) do ~H""" """ end @doc """ Renders the `pencil_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_exclamation(assigns) do ~H""" """ end @doc """ Renders the `pencil_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_heart(assigns) do ~H""" """ end @doc """ Renders the `pencil_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_minus(assigns) do ~H""" """ end @doc """ Renders the `pencil_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_off(assigns) do ~H""" """ end @doc """ Renders the `pencil_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_pause(assigns) do ~H""" """ end @doc """ Renders the `pencil_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_pin(assigns) do ~H""" """ end @doc """ Renders the `pencil_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_plus(assigns) do ~H""" """ end @doc """ Renders the `pencil_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_question(assigns) do ~H""" """ end @doc """ Renders the `pencil_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_search(assigns) do ~H""" """ end @doc """ Renders the `pencil_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_share(assigns) do ~H""" """ end @doc """ Renders the `pencil_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_star(assigns) do ~H""" """ end @doc """ Renders the `pencil_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_up(assigns) do ~H""" """ end @doc """ Renders the `pencil_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil_x(assigns) do ~H""" """ end @doc """ Renders the `pencil` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pencil(assigns) do ~H""" """ end @doc """ Renders the `pennant_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pennant_2_filled(assigns) do ~H""" """ end @doc """ Renders the `pennant_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pennant_2(assigns) do ~H""" """ end @doc """ Renders the `pennant_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pennant_filled(assigns) do ~H""" """ end @doc """ Renders the `pennant_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pennant_off(assigns) do ~H""" """ end @doc """ Renders the `pennant` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pennant(assigns) do ~H""" """ end @doc """ Renders the `pentagon_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pentagon_filled(assigns) do ~H""" """ end @doc """ Renders the `pentagon_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pentagon_off(assigns) do ~H""" """ end @doc """ Renders the `pentagon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pentagon(assigns) do ~H""" """ end @doc """ Renders the `pentagram` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pentagram(assigns) do ~H""" """ end @doc """ Renders the `pepper_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pepper_off(assigns) do ~H""" """ end @doc """ Renders the `pepper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pepper(assigns) do ~H""" """ end @doc """ Renders the `percentage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def percentage(assigns) do ~H""" """ end @doc """ Renders the `perfume` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def perfume(assigns) do ~H""" """ end @doc """ Renders the `perspective_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def perspective_off(assigns) do ~H""" """ end @doc """ Renders the `perspective` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def perspective(assigns) do ~H""" """ end @doc """ Renders the `phone_call` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_call(assigns) do ~H""" """ end @doc """ Renders the `phone_calling` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_calling(assigns) do ~H""" """ end @doc """ Renders the `phone_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_check(assigns) do ~H""" """ end @doc """ Renders the `phone_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_filled(assigns) do ~H""" """ end @doc """ Renders the `phone_incoming` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_incoming(assigns) do ~H""" """ end @doc """ Renders the `phone_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_off(assigns) do ~H""" """ end @doc """ Renders the `phone_outgoing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_outgoing(assigns) do ~H""" """ end @doc """ Renders the `phone_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_pause(assigns) do ~H""" """ end @doc """ Renders the `phone_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_plus(assigns) do ~H""" """ end @doc """ Renders the `phone_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone_x(assigns) do ~H""" """ end @doc """ Renders the `phone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def phone(assigns) do ~H""" """ end @doc """ Renders the `photo_ai` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_ai(assigns) do ~H""" """ end @doc """ Renders the `photo_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_bolt(assigns) do ~H""" """ end @doc """ Renders the `photo_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_cancel(assigns) do ~H""" """ end @doc """ Renders the `photo_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_check(assigns) do ~H""" """ end @doc """ Renders the `photo_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_code(assigns) do ~H""" """ end @doc """ Renders the `photo_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_cog(assigns) do ~H""" """ end @doc """ Renders the `photo_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_dollar(assigns) do ~H""" """ end @doc """ Renders the `photo_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_down(assigns) do ~H""" """ end @doc """ Renders the `photo_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_edit(assigns) do ~H""" """ end @doc """ Renders the `photo_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_exclamation(assigns) do ~H""" """ end @doc """ Renders the `photo_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_filled(assigns) do ~H""" """ end @doc """ Renders the `photo_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_heart(assigns) do ~H""" """ end @doc """ Renders the `photo_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_minus(assigns) do ~H""" """ end @doc """ Renders the `photo_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_off(assigns) do ~H""" """ end @doc """ Renders the `photo_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_pause(assigns) do ~H""" """ end @doc """ Renders the `photo_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_pin(assigns) do ~H""" """ end @doc """ Renders the `photo_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_plus(assigns) do ~H""" """ end @doc """ Renders the `photo_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_question(assigns) do ~H""" """ end @doc """ Renders the `photo_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_search(assigns) do ~H""" """ end @doc """ Renders the `photo_sensor_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_sensor_2(assigns) do ~H""" """ end @doc """ Renders the `photo_sensor_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_sensor_3(assigns) do ~H""" """ end @doc """ Renders the `photo_sensor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_sensor(assigns) do ~H""" """ end @doc """ Renders the `photo_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_share(assigns) do ~H""" """ end @doc """ Renders the `photo_shield` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_shield(assigns) do ~H""" """ end @doc """ Renders the `photo_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_star(assigns) do ~H""" """ end @doc """ Renders the `photo_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_up(assigns) do ~H""" """ end @doc """ Renders the `photo_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo_x(assigns) do ~H""" """ end @doc """ Renders the `photo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def photo(assigns) do ~H""" """ end @doc """ Renders the `physotherapist` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def physotherapist(assigns) do ~H""" """ end @doc """ Renders the `piano` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def piano(assigns) do ~H""" """ end @doc """ Renders the `pick` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pick(assigns) do ~H""" """ end @doc """ Renders the `picture_in_picture_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def picture_in_picture_off(assigns) do ~H""" """ end @doc """ Renders the `picture_in_picture_on` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def picture_in_picture_on(assigns) do ~H""" """ end @doc """ Renders the `picture_in_picture_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def picture_in_picture_top(assigns) do ~H""" """ end @doc """ Renders the `picture_in_picture` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def picture_in_picture(assigns) do ~H""" """ end @doc """ Renders the `pig_money` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pig_money(assigns) do ~H""" """ end @doc """ Renders the `pig_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pig_off(assigns) do ~H""" """ end @doc """ Renders the `pig` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pig(assigns) do ~H""" """ end @doc """ Renders the `pilcrow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pilcrow(assigns) do ~H""" """ end @doc """ Renders the `pill_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pill_off(assigns) do ~H""" """ end @doc """ Renders the `pill` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pill(assigns) do ~H""" """ end @doc """ Renders the `pills` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pills(assigns) do ~H""" """ end @doc """ Renders the `pin_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pin_filled(assigns) do ~H""" """ end @doc """ Renders the `pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pin(assigns) do ~H""" """ end @doc """ Renders the `ping_pong` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ping_pong(assigns) do ~H""" """ end @doc """ Renders the `pinned_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pinned_filled(assigns) do ~H""" """ end @doc """ Renders the `pinned_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pinned_off(assigns) do ~H""" """ end @doc """ Renders the `pinned` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pinned(assigns) do ~H""" """ end @doc """ Renders the `pizza_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pizza_off(assigns) do ~H""" """ end @doc """ Renders the `pizza` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pizza(assigns) do ~H""" """ end @doc """ Renders the `placeholder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def placeholder(assigns) do ~H""" """ end @doc """ Renders the `plane_arrival` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plane_arrival(assigns) do ~H""" """ end @doc """ Renders the `plane_departure` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plane_departure(assigns) do ~H""" """ end @doc """ Renders the `plane_inflight` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plane_inflight(assigns) do ~H""" """ end @doc """ Renders the `plane_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plane_off(assigns) do ~H""" """ end @doc """ Renders the `plane_tilt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plane_tilt(assigns) do ~H""" """ end @doc """ Renders the `plane` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plane(assigns) do ~H""" """ end @doc """ Renders the `planet_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def planet_off(assigns) do ~H""" """ end @doc """ Renders the `planet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def planet(assigns) do ~H""" """ end @doc """ Renders the `plant_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plant_2_off(assigns) do ~H""" """ end @doc """ Renders the `plant_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plant_2(assigns) do ~H""" """ end @doc """ Renders the `plant_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plant_off(assigns) do ~H""" """ end @doc """ Renders the `plant` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plant(assigns) do ~H""" """ end @doc """ Renders the `play_basketball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def play_basketball(assigns) do ~H""" """ end @doc """ Renders the `play_card_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def play_card_off(assigns) do ~H""" """ end @doc """ Renders the `play_card` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def play_card(assigns) do ~H""" """ end @doc """ Renders the `play_football` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def play_football(assigns) do ~H""" """ end @doc """ Renders the `play_handball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def play_handball(assigns) do ~H""" """ end @doc """ Renders the `play_volleyball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def play_volleyball(assigns) do ~H""" """ end @doc """ Renders the `player_eject_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_eject_filled(assigns) do ~H""" """ end @doc """ Renders the `player_eject` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_eject(assigns) do ~H""" """ end @doc """ Renders the `player_pause_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_pause_filled(assigns) do ~H""" """ end @doc """ Renders the `player_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_pause(assigns) do ~H""" """ end @doc """ Renders the `player_play_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_play_filled(assigns) do ~H""" """ end @doc """ Renders the `player_play` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_play(assigns) do ~H""" """ end @doc """ Renders the `player_record_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_record_filled(assigns) do ~H""" """ end @doc """ Renders the `player_record` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_record(assigns) do ~H""" """ end @doc """ Renders the `player_skip_back_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_skip_back_filled(assigns) do ~H""" """ end @doc """ Renders the `player_skip_back` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_skip_back(assigns) do ~H""" """ end @doc """ Renders the `player_skip_forward_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_skip_forward_filled(assigns) do ~H""" """ end @doc """ Renders the `player_skip_forward` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_skip_forward(assigns) do ~H""" """ end @doc """ Renders the `player_stop_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_stop_filled(assigns) do ~H""" """ end @doc """ Renders the `player_stop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_stop(assigns) do ~H""" """ end @doc """ Renders the `player_track_next_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_track_next_filled(assigns) do ~H""" """ end @doc """ Renders the `player_track_next` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_track_next(assigns) do ~H""" """ end @doc """ Renders the `player_track_prev_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_track_prev_filled(assigns) do ~H""" """ end @doc """ Renders the `player_track_prev` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def player_track_prev(assigns) do ~H""" """ end @doc """ Renders the `playlist_add` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playlist_add(assigns) do ~H""" """ end @doc """ Renders the `playlist_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playlist_off(assigns) do ~H""" """ end @doc """ Renders the `playlist_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playlist_x(assigns) do ~H""" """ end @doc """ Renders the `playlist` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playlist(assigns) do ~H""" """ end @doc """ Renders the `playstation_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playstation_circle(assigns) do ~H""" """ end @doc """ Renders the `playstation_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playstation_square(assigns) do ~H""" """ end @doc """ Renders the `playstation_triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playstation_triangle(assigns) do ~H""" """ end @doc """ Renders the `playstation_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def playstation_x(assigns) do ~H""" """ end @doc """ Renders the `plug_connected_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plug_connected_x(assigns) do ~H""" """ end @doc """ Renders the `plug_connected` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plug_connected(assigns) do ~H""" """ end @doc """ Renders the `plug_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plug_off(assigns) do ~H""" """ end @doc """ Renders the `plug_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plug_x(assigns) do ~H""" """ end @doc """ Renders the `plug` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plug(assigns) do ~H""" """ end @doc """ Renders the `plus_equal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plus_equal(assigns) do ~H""" """ end @doc """ Renders the `plus_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plus_minus(assigns) do ~H""" """ end @doc """ Renders the `plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def plus(assigns) do ~H""" """ end @doc """ Renders the `png` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def png(assigns) do ~H""" """ end @doc """ Renders the `podium_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def podium_off(assigns) do ~H""" """ end @doc """ Renders the `podium` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def podium(assigns) do ~H""" """ end @doc """ Renders the `point_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def point_filled(assigns) do ~H""" """ end @doc """ Renders the `point_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def point_off(assigns) do ~H""" """ end @doc """ Renders the `point` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def point(assigns) do ~H""" """ end @doc """ Renders the `pointer_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_bolt(assigns) do ~H""" """ end @doc """ Renders the `pointer_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_cancel(assigns) do ~H""" """ end @doc """ Renders the `pointer_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_check(assigns) do ~H""" """ end @doc """ Renders the `pointer_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_code(assigns) do ~H""" """ end @doc """ Renders the `pointer_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_cog(assigns) do ~H""" """ end @doc """ Renders the `pointer_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_dollar(assigns) do ~H""" """ end @doc """ Renders the `pointer_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_down(assigns) do ~H""" """ end @doc """ Renders the `pointer_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_exclamation(assigns) do ~H""" """ end @doc """ Renders the `pointer_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_filled(assigns) do ~H""" """ end @doc """ Renders the `pointer_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_heart(assigns) do ~H""" """ end @doc """ Renders the `pointer_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_minus(assigns) do ~H""" """ end @doc """ Renders the `pointer_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_off(assigns) do ~H""" """ end @doc """ Renders the `pointer_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_pause(assigns) do ~H""" """ end @doc """ Renders the `pointer_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_pin(assigns) do ~H""" """ end @doc """ Renders the `pointer_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_plus(assigns) do ~H""" """ end @doc """ Renders the `pointer_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_question(assigns) do ~H""" """ end @doc """ Renders the `pointer_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_search(assigns) do ~H""" """ end @doc """ Renders the `pointer_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_share(assigns) do ~H""" """ end @doc """ Renders the `pointer_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_star(assigns) do ~H""" """ end @doc """ Renders the `pointer_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_up(assigns) do ~H""" """ end @doc """ Renders the `pointer_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer_x(assigns) do ~H""" """ end @doc """ Renders the `pointer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pointer(assigns) do ~H""" """ end @doc """ Renders the `pokeball_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pokeball_off(assigns) do ~H""" """ end @doc """ Renders the `pokeball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pokeball(assigns) do ~H""" """ end @doc """ Renders the `poker_chip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def poker_chip(assigns) do ~H""" """ end @doc """ Renders the `polaroid_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def polaroid_filled(assigns) do ~H""" """ end @doc """ Renders the `polaroid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def polaroid(assigns) do ~H""" """ end @doc """ Renders the `polygon_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def polygon_off(assigns) do ~H""" """ end @doc """ Renders the `polygon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def polygon(assigns) do ~H""" """ end @doc """ Renders the `poo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def poo(assigns) do ~H""" """ end @doc """ Renders the `pool_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pool_off(assigns) do ~H""" """ end @doc """ Renders the `pool` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pool(assigns) do ~H""" """ end @doc """ Renders the `power` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def power(assigns) do ~H""" """ end @doc """ Renders the `pray` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pray(assigns) do ~H""" """ end @doc """ Renders the `premium_rights` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def premium_rights(assigns) do ~H""" """ end @doc """ Renders the `prescription` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def prescription(assigns) do ~H""" """ end @doc """ Renders the `presentation_analytics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def presentation_analytics(assigns) do ~H""" """ end @doc """ Renders the `presentation_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def presentation_off(assigns) do ~H""" """ end @doc """ Renders the `presentation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def presentation(assigns) do ~H""" """ end @doc """ Renders the `printer_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def printer_off(assigns) do ~H""" """ end @doc """ Renders the `printer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def printer(assigns) do ~H""" """ end @doc """ Renders the `prism_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def prism_off(assigns) do ~H""" """ end @doc """ Renders the `prism_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def prism_plus(assigns) do ~H""" """ end @doc """ Renders the `prism` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def prism(assigns) do ~H""" """ end @doc """ Renders the `prison` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def prison(assigns) do ~H""" """ end @doc """ Renders the `progress_alert` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress_alert(assigns) do ~H""" """ end @doc """ Renders the `progress_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress_bolt(assigns) do ~H""" """ end @doc """ Renders the `progress_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress_check(assigns) do ~H""" """ end @doc """ Renders the `progress_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress_down(assigns) do ~H""" """ end @doc """ Renders the `progress_help` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress_help(assigns) do ~H""" """ end @doc """ Renders the `progress_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress_x(assigns) do ~H""" """ end @doc """ Renders the `progress` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def progress(assigns) do ~H""" """ end @doc """ Renders the `prompt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def prompt(assigns) do ~H""" """ end @doc """ Renders the `propeller_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def propeller_off(assigns) do ~H""" """ end @doc """ Renders the `propeller` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def propeller(assigns) do ~H""" """ end @doc """ Renders the `pumpkin_scary` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pumpkin_scary(assigns) do ~H""" """ end @doc """ Renders the `puzzle_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def puzzle_2(assigns) do ~H""" """ end @doc """ Renders the `puzzle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def puzzle_filled(assigns) do ~H""" """ end @doc """ Renders the `puzzle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def puzzle_off(assigns) do ~H""" """ end @doc """ Renders the `puzzle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def puzzle(assigns) do ~H""" """ end @doc """ Renders the `pyramid_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pyramid_off(assigns) do ~H""" """ end @doc """ Renders the `pyramid_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pyramid_plus(assigns) do ~H""" """ end @doc """ Renders the `pyramid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def pyramid(assigns) do ~H""" """ end @doc """ Renders the `qrcode_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def qrcode_off(assigns) do ~H""" """ end @doc """ Renders the `qrcode` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def qrcode(assigns) do ~H""" """ end @doc """ Renders the `question_mark` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def question_mark(assigns) do ~H""" """ end @doc """ Renders the `quote_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def quote_off(assigns) do ~H""" """ end @doc """ Renders the `quote` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def quote(assigns) do ~H""" """ end @doc """ Renders the `quotes` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def quotes(assigns) do ~H""" """ end @doc """ Renders the `radar_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radar_2(assigns) do ~H""" """ end @doc """ Renders the `radar_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radar_off(assigns) do ~H""" """ end @doc """ Renders the `radar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radar(assigns) do ~H""" """ end @doc """ Renders the `radio_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radio_off(assigns) do ~H""" """ end @doc """ Renders the `radio` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radio(assigns) do ~H""" """ end @doc """ Renders the `radioactive_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radioactive_filled(assigns) do ~H""" """ end @doc """ Renders the `radioactive_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radioactive_off(assigns) do ~H""" """ end @doc """ Renders the `radioactive` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radioactive(assigns) do ~H""" """ end @doc """ Renders the `radius_bottom_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radius_bottom_left(assigns) do ~H""" """ end @doc """ Renders the `radius_bottom_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radius_bottom_right(assigns) do ~H""" """ end @doc """ Renders the `radius_top_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radius_top_left(assigns) do ~H""" """ end @doc """ Renders the `radius_top_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def radius_top_right(assigns) do ~H""" """ end @doc """ Renders the `rainbow_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rainbow_off(assigns) do ~H""" """ end @doc """ Renders the `rainbow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rainbow(assigns) do ~H""" """ end @doc """ Renders the `rating_12_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rating_12_plus(assigns) do ~H""" """ end @doc """ Renders the `rating_14_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rating_14_plus(assigns) do ~H""" """ end @doc """ Renders the `rating_16_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rating_16_plus(assigns) do ~H""" """ end @doc """ Renders the `rating_18_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rating_18_plus(assigns) do ~H""" """ end @doc """ Renders the `rating_21_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rating_21_plus(assigns) do ~H""" """ end @doc """ Renders the `razor_electric` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def razor_electric(assigns) do ~H""" """ end @doc """ Renders the `razor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def razor(assigns) do ~H""" """ end @doc """ Renders the `receipt_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def receipt_2(assigns) do ~H""" """ end @doc """ Renders the `receipt_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def receipt_off(assigns) do ~H""" """ end @doc """ Renders the `receipt_refund` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def receipt_refund(assigns) do ~H""" """ end @doc """ Renders the `receipt_tax` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def receipt_tax(assigns) do ~H""" """ end @doc """ Renders the `receipt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def receipt(assigns) do ~H""" """ end @doc """ Renders the `recharging` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def recharging(assigns) do ~H""" """ end @doc """ Renders the `record_mail_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def record_mail_off(assigns) do ~H""" """ end @doc """ Renders the `record_mail` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def record_mail(assigns) do ~H""" """ end @doc """ Renders the `rectangle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangle_filled(assigns) do ~H""" """ end @doc """ Renders the `rectangle_rounded_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangle_rounded_bottom(assigns) do ~H""" """ end @doc """ Renders the `rectangle_rounded_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangle_rounded_top(assigns) do ~H""" """ end @doc """ Renders the `rectangle_vertical_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangle_vertical_filled(assigns) do ~H""" """ end @doc """ Renders the `rectangle_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangle_vertical(assigns) do ~H""" """ end @doc """ Renders the `rectangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangle(assigns) do ~H""" """ end @doc """ Renders the `rectangular_prism_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangular_prism_off(assigns) do ~H""" """ end @doc """ Renders the `rectangular_prism_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangular_prism_plus(assigns) do ~H""" """ end @doc """ Renders the `rectangular_prism` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rectangular_prism(assigns) do ~H""" """ end @doc """ Renders the `recycle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def recycle_off(assigns) do ~H""" """ end @doc """ Renders the `recycle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def recycle(assigns) do ~H""" """ end @doc """ Renders the `refresh_alert` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def refresh_alert(assigns) do ~H""" """ end @doc """ Renders the `refresh_dot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def refresh_dot(assigns) do ~H""" """ end @doc """ Renders the `refresh_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def refresh_off(assigns) do ~H""" """ end @doc """ Renders the `refresh` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def refresh(assigns) do ~H""" """ end @doc """ Renders the `regex_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def regex_off(assigns) do ~H""" """ end @doc """ Renders the `regex` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def regex(assigns) do ~H""" """ end @doc """ Renders the `registered` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def registered(assigns) do ~H""" """ end @doc """ Renders the `relation_many_to_many` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def relation_many_to_many(assigns) do ~H""" """ end @doc """ Renders the `relation_one_to_many` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def relation_one_to_many(assigns) do ~H""" """ end @doc """ Renders the `relation_one_to_one` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def relation_one_to_one(assigns) do ~H""" """ end @doc """ Renders the `reload` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def reload(assigns) do ~H""" """ end @doc """ Renders the `reorder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def reorder(assigns) do ~H""" """ end @doc """ Renders the `repeat_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def repeat_off(assigns) do ~H""" """ end @doc """ Renders the `repeat_once` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def repeat_once(assigns) do ~H""" """ end @doc """ Renders the `repeat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def repeat(assigns) do ~H""" """ end @doc """ Renders the `replace_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def replace_filled(assigns) do ~H""" """ end @doc """ Renders the `replace_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def replace_off(assigns) do ~H""" """ end @doc """ Renders the `replace` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def replace(assigns) do ~H""" """ end @doc """ Renders the `report_analytics` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def report_analytics(assigns) do ~H""" """ end @doc """ Renders the `report_medical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def report_medical(assigns) do ~H""" """ end @doc """ Renders the `report_money` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def report_money(assigns) do ~H""" """ end @doc """ Renders the `report_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def report_off(assigns) do ~H""" """ end @doc """ Renders the `report_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def report_search(assigns) do ~H""" """ end @doc """ Renders the `report` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def report(assigns) do ~H""" """ end @doc """ Renders the `reserved_line` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def reserved_line(assigns) do ~H""" """ end @doc """ Renders the `resize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def resize(assigns) do ~H""" """ end @doc """ Renders the `restore` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def restore(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_10` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_10(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_15` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_15(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_20` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_20(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_30` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_30(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_40` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_40(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_5(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_50` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_50(assigns) do ~H""" """ end @doc """ Renders the `rewind_backward_60` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_backward_60(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_10` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_10(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_15` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_15(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_20` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_20(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_30` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_30(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_40` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_40(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_5(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_50` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_50(assigns) do ~H""" """ end @doc """ Renders the `rewind_forward_60` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rewind_forward_60(assigns) do ~H""" """ end @doc """ Renders the `ribbon_health` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ribbon_health(assigns) do ~H""" """ end @doc """ Renders the `rings` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rings(assigns) do ~H""" """ end @doc """ Renders the `ripple_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ripple_off(assigns) do ~H""" """ end @doc """ Renders the `ripple` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ripple(assigns) do ~H""" """ end @doc """ Renders the `road_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def road_off(assigns) do ~H""" """ end @doc """ Renders the `road_sign` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def road_sign(assigns) do ~H""" """ end @doc """ Renders the `road` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def road(assigns) do ~H""" """ end @doc """ Renders the `robot_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def robot_off(assigns) do ~H""" """ end @doc """ Renders the `robot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def robot(assigns) do ~H""" """ end @doc """ Renders the `rocket_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rocket_off(assigns) do ~H""" """ end @doc """ Renders the `rocket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rocket(assigns) do ~H""" """ end @doc """ Renders the `roller_skating` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def roller_skating(assigns) do ~H""" """ end @doc """ Renders the `rollercoaster_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rollercoaster_off(assigns) do ~H""" """ end @doc """ Renders the `rollercoaster` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rollercoaster(assigns) do ~H""" """ end @doc """ Renders the `rosette_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_filled(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_0(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_1(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_2(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_3(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_4(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_5(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_6(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_7(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_8(assigns) do ~H""" """ end @doc """ Renders the `rosette_number_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette_number_9(assigns) do ~H""" """ end @doc """ Renders the `rosette` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rosette(assigns) do ~H""" """ end @doc """ Renders the `rotate_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate_2(assigns) do ~H""" """ end @doc """ Renders the `rotate_360` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate_360(assigns) do ~H""" """ end @doc """ Renders the `rotate_clockwise_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate_clockwise_2(assigns) do ~H""" """ end @doc """ Renders the `rotate_clockwise` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate_clockwise(assigns) do ~H""" """ end @doc """ Renders the `rotate_dot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate_dot(assigns) do ~H""" """ end @doc """ Renders the `rotate_rectangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate_rectangle(assigns) do ~H""" """ end @doc """ Renders the `rotate` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rotate(assigns) do ~H""" """ end @doc """ Renders the `route_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def route_2(assigns) do ~H""" """ end @doc """ Renders the `route_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def route_off(assigns) do ~H""" """ end @doc """ Renders the `route` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def route(assigns) do ~H""" """ end @doc """ Renders the `router_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def router_off(assigns) do ~H""" """ end @doc """ Renders the `router` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def router(assigns) do ~H""" """ end @doc """ Renders the `row_insert_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def row_insert_bottom(assigns) do ~H""" """ end @doc """ Renders the `row_insert_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def row_insert_top(assigns) do ~H""" """ end @doc """ Renders the `row_remove` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def row_remove(assigns) do ~H""" """ end @doc """ Renders the `rss` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rss(assigns) do ~H""" """ end @doc """ Renders the `rubber_stamp_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rubber_stamp_off(assigns) do ~H""" """ end @doc """ Renders the `rubber_stamp` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def rubber_stamp(assigns) do ~H""" """ end @doc """ Renders the `ruler_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ruler_2_off(assigns) do ~H""" """ end @doc """ Renders the `ruler_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ruler_2(assigns) do ~H""" """ end @doc """ Renders the `ruler_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ruler_3(assigns) do ~H""" """ end @doc """ Renders the `ruler_measure` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ruler_measure(assigns) do ~H""" """ end @doc """ Renders the `ruler_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ruler_off(assigns) do ~H""" """ end @doc """ Renders the `ruler` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ruler(assigns) do ~H""" """ end @doc """ Renders the `run` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def run(assigns) do ~H""" """ end @doc """ Renders the `s_turn_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def s_turn_down(assigns) do ~H""" """ end @doc """ Renders the `s_turn_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def s_turn_left(assigns) do ~H""" """ end @doc """ Renders the `s_turn_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def s_turn_right(assigns) do ~H""" """ end @doc """ Renders the `s_turn_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def s_turn_up(assigns) do ~H""" """ end @doc """ Renders the `sailboat_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sailboat_2(assigns) do ~H""" """ end @doc """ Renders the `sailboat_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sailboat_off(assigns) do ~H""" """ end @doc """ Renders the `sailboat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sailboat(assigns) do ~H""" """ end @doc """ Renders the `salad` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def salad(assigns) do ~H""" """ end @doc """ Renders the `salt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def salt(assigns) do ~H""" """ end @doc """ Renders the `satellite_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def satellite_off(assigns) do ~H""" """ end @doc """ Renders the `satellite` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def satellite(assigns) do ~H""" """ end @doc """ Renders the `sausage` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sausage(assigns) do ~H""" """ end @doc """ Renders the `scale_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scale_off(assigns) do ~H""" """ end @doc """ Renders the `scale_outline_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scale_outline_off(assigns) do ~H""" """ end @doc """ Renders the `scale_outline` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scale_outline(assigns) do ~H""" """ end @doc """ Renders the `scale` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scale(assigns) do ~H""" """ end @doc """ Renders the `scan_eye` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scan_eye(assigns) do ~H""" """ end @doc """ Renders the `scan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scan(assigns) do ~H""" """ end @doc """ Renders the `schema_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def schema_off(assigns) do ~H""" """ end @doc """ Renders the `schema` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def schema(assigns) do ~H""" """ end @doc """ Renders the `school_bell` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def school_bell(assigns) do ~H""" """ end @doc """ Renders the `school_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def school_off(assigns) do ~H""" """ end @doc """ Renders the `school` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def school(assigns) do ~H""" """ end @doc """ Renders the `scissors_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scissors_off(assigns) do ~H""" """ end @doc """ Renders the `scissors` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scissors(assigns) do ~H""" """ end @doc """ Renders the `scooter_electric` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scooter_electric(assigns) do ~H""" """ end @doc """ Renders the `scooter` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scooter(assigns) do ~H""" """ end @doc """ Renders the `scoreboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scoreboard(assigns) do ~H""" """ end @doc """ Renders the `screen_share_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def screen_share_off(assigns) do ~H""" """ end @doc """ Renders the `screen_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def screen_share(assigns) do ~H""" """ end @doc """ Renders the `screenshot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def screenshot(assigns) do ~H""" """ end @doc """ Renders the `scribble_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scribble_off(assigns) do ~H""" """ end @doc """ Renders the `scribble` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scribble(assigns) do ~H""" """ end @doc """ Renders the `script_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def script_minus(assigns) do ~H""" """ end @doc """ Renders the `script_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def script_plus(assigns) do ~H""" """ end @doc """ Renders the `script_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def script_x(assigns) do ~H""" """ end @doc """ Renders the `script` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def script(assigns) do ~H""" """ end @doc """ Renders the `scuba_mask_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scuba_mask_off(assigns) do ~H""" """ end @doc """ Renders the `scuba_mask` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def scuba_mask(assigns) do ~H""" """ end @doc """ Renders the `sdk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sdk(assigns) do ~H""" """ end @doc """ Renders the `search_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def search_off(assigns) do ~H""" """ end @doc """ Renders the `search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def search(assigns) do ~H""" """ end @doc """ Renders the `section_sign` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def section_sign(assigns) do ~H""" """ end @doc """ Renders the `section` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def section(assigns) do ~H""" """ end @doc """ Renders the `seeding_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def seeding_off(assigns) do ~H""" """ end @doc """ Renders the `seeding` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def seeding(assigns) do ~H""" """ end @doc """ Renders the `select_all` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def select_all(assigns) do ~H""" """ end @doc """ Renders the `select` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def select(assigns) do ~H""" """ end @doc """ Renders the `selector` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def selector(assigns) do ~H""" """ end @doc """ Renders the `send_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def send_off(assigns) do ~H""" """ end @doc """ Renders the `send` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def send(assigns) do ~H""" """ end @doc """ Renders the `seo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def seo(assigns) do ~H""" """ end @doc """ Renders the `separator_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def separator_horizontal(assigns) do ~H""" """ end @doc """ Renders the `separator_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def separator_vertical(assigns) do ~H""" """ end @doc """ Renders the `separator` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def separator(assigns) do ~H""" """ end @doc """ Renders the `server_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def server_2(assigns) do ~H""" """ end @doc """ Renders the `server_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def server_bolt(assigns) do ~H""" """ end @doc """ Renders the `server_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def server_cog(assigns) do ~H""" """ end @doc """ Renders the `server_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def server_off(assigns) do ~H""" """ end @doc """ Renders the `server` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def server(assigns) do ~H""" """ end @doc """ Renders the `servicemark` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def servicemark(assigns) do ~H""" """ end @doc """ Renders the `settings_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_2(assigns) do ~H""" """ end @doc """ Renders the `settings_automation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_automation(assigns) do ~H""" """ end @doc """ Renders the `settings_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_bolt(assigns) do ~H""" """ end @doc """ Renders the `settings_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_cancel(assigns) do ~H""" """ end @doc """ Renders the `settings_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_check(assigns) do ~H""" """ end @doc """ Renders the `settings_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_code(assigns) do ~H""" """ end @doc """ Renders the `settings_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_cog(assigns) do ~H""" """ end @doc """ Renders the `settings_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_dollar(assigns) do ~H""" """ end @doc """ Renders the `settings_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_down(assigns) do ~H""" """ end @doc """ Renders the `settings_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_exclamation(assigns) do ~H""" """ end @doc """ Renders the `settings_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_filled(assigns) do ~H""" """ end @doc """ Renders the `settings_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_heart(assigns) do ~H""" """ end @doc """ Renders the `settings_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_minus(assigns) do ~H""" """ end @doc """ Renders the `settings_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_off(assigns) do ~H""" """ end @doc """ Renders the `settings_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_pause(assigns) do ~H""" """ end @doc """ Renders the `settings_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_pin(assigns) do ~H""" """ end @doc """ Renders the `settings_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_plus(assigns) do ~H""" """ end @doc """ Renders the `settings_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_question(assigns) do ~H""" """ end @doc """ Renders the `settings_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_search(assigns) do ~H""" """ end @doc """ Renders the `settings_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_share(assigns) do ~H""" """ end @doc """ Renders the `settings_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_star(assigns) do ~H""" """ end @doc """ Renders the `settings_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_up(assigns) do ~H""" """ end @doc """ Renders the `settings_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings_x(assigns) do ~H""" """ end @doc """ Renders the `settings` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def settings(assigns) do ~H""" """ end @doc """ Renders the `shadow_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shadow_off(assigns) do ~H""" """ end @doc """ Renders the `shadow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shadow(assigns) do ~H""" """ end @doc """ Renders the `shape_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shape_2(assigns) do ~H""" """ end @doc """ Renders the `shape_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shape_3(assigns) do ~H""" """ end @doc """ Renders the `shape_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shape_off(assigns) do ~H""" """ end @doc """ Renders the `shape` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shape(assigns) do ~H""" """ end @doc """ Renders the `share_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def share_2(assigns) do ~H""" """ end @doc """ Renders the `share_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def share_3(assigns) do ~H""" """ end @doc """ Renders the `share_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def share_off(assigns) do ~H""" """ end @doc """ Renders the `share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def share(assigns) do ~H""" """ end @doc """ Renders the `shi_jumping` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shi_jumping(assigns) do ~H""" """ end @doc """ Renders the `shield_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_bolt(assigns) do ~H""" """ end @doc """ Renders the `shield_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_cancel(assigns) do ~H""" """ end @doc """ Renders the `shield_check_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_check_filled(assigns) do ~H""" """ end @doc """ Renders the `shield_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_check(assigns) do ~H""" """ end @doc """ Renders the `shield_checkered_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_checkered_filled(assigns) do ~H""" """ end @doc """ Renders the `shield_checkered` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_checkered(assigns) do ~H""" """ end @doc """ Renders the `shield_chevron` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_chevron(assigns) do ~H""" """ end @doc """ Renders the `shield_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_code(assigns) do ~H""" """ end @doc """ Renders the `shield_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_cog(assigns) do ~H""" """ end @doc """ Renders the `shield_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_dollar(assigns) do ~H""" """ end @doc """ Renders the `shield_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_down(assigns) do ~H""" """ end @doc """ Renders the `shield_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_exclamation(assigns) do ~H""" """ end @doc """ Renders the `shield_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_filled(assigns) do ~H""" """ end @doc """ Renders the `shield_half_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_half_filled(assigns) do ~H""" """ end @doc """ Renders the `shield_half` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_half(assigns) do ~H""" """ end @doc """ Renders the `shield_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_heart(assigns) do ~H""" """ end @doc """ Renders the `shield_lock_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_lock_filled(assigns) do ~H""" """ end @doc """ Renders the `shield_lock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_lock(assigns) do ~H""" """ end @doc """ Renders the `shield_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_minus(assigns) do ~H""" """ end @doc """ Renders the `shield_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_off(assigns) do ~H""" """ end @doc """ Renders the `shield_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_pause(assigns) do ~H""" """ end @doc """ Renders the `shield_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_pin(assigns) do ~H""" """ end @doc """ Renders the `shield_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_plus(assigns) do ~H""" """ end @doc """ Renders the `shield_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_question(assigns) do ~H""" """ end @doc """ Renders the `shield_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_search(assigns) do ~H""" """ end @doc """ Renders the `shield_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_share(assigns) do ~H""" """ end @doc """ Renders the `shield_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_star(assigns) do ~H""" """ end @doc """ Renders the `shield_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_up(assigns) do ~H""" """ end @doc """ Renders the `shield_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield_x(assigns) do ~H""" """ end @doc """ Renders the `shield` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shield(assigns) do ~H""" """ end @doc """ Renders the `ship_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ship_off(assigns) do ~H""" """ end @doc """ Renders the `ship` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ship(assigns) do ~H""" """ end @doc """ Renders the `shirt_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shirt_filled(assigns) do ~H""" """ end @doc """ Renders the `shirt_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shirt_off(assigns) do ~H""" """ end @doc """ Renders the `shirt_sport` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shirt_sport(assigns) do ~H""" """ end @doc """ Renders the `shirt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shirt(assigns) do ~H""" """ end @doc """ Renders the `shoe_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shoe_off(assigns) do ~H""" """ end @doc """ Renders the `shoe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shoe(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_check(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_discount(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_edit(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_exclamation(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_minus(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_plus(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_search(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag_x(assigns) do ~H""" """ end @doc """ Renders the `shopping_bag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_bag(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_bolt(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_cancel(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_check(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_code(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_cog(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_copy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_copy(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_discount` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_discount(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_dollar(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_down(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_exclamation(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_filled(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_heart(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_minus(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_off(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_pause(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_pin(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_plus(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_question(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_search(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_share(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_star(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_up(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart_x(assigns) do ~H""" """ end @doc """ Renders the `shopping_cart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shopping_cart(assigns) do ~H""" """ end @doc """ Renders the `shovel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shovel(assigns) do ~H""" """ end @doc """ Renders the `shredder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def shredder(assigns) do ~H""" """ end @doc """ Renders the `sign_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sign_left_filled(assigns) do ~H""" """ end @doc """ Renders the `sign_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sign_left(assigns) do ~H""" """ end @doc """ Renders the `sign_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sign_right_filled(assigns) do ~H""" """ end @doc """ Renders the `sign_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sign_right(assigns) do ~H""" """ end @doc """ Renders the `signal_2g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_2g(assigns) do ~H""" """ end @doc """ Renders the `signal_3g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_3g(assigns) do ~H""" """ end @doc """ Renders the `signal_4g_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_4g_plus(assigns) do ~H""" """ end @doc """ Renders the `signal_4g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_4g(assigns) do ~H""" """ end @doc """ Renders the `signal_5g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_5g(assigns) do ~H""" """ end @doc """ Renders the `signal_6g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_6g(assigns) do ~H""" """ end @doc """ Renders the `signal_e` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_e(assigns) do ~H""" """ end @doc """ Renders the `signal_g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_g(assigns) do ~H""" """ end @doc """ Renders the `signal_h_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_h_plus(assigns) do ~H""" """ end @doc """ Renders the `signal_h` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_h(assigns) do ~H""" """ end @doc """ Renders the `signal_lte` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signal_lte(assigns) do ~H""" """ end @doc """ Renders the `signature_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signature_off(assigns) do ~H""" """ end @doc """ Renders the `signature` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def signature(assigns) do ~H""" """ end @doc """ Renders the `sitemap_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sitemap_off(assigns) do ~H""" """ end @doc """ Renders the `sitemap` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sitemap(assigns) do ~H""" """ end @doc """ Renders the `skateboard_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def skateboard_off(assigns) do ~H""" """ end @doc """ Renders the `skateboard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def skateboard(assigns) do ~H""" """ end @doc """ Renders the `skateboarding` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def skateboarding(assigns) do ~H""" """ end @doc """ Renders the `skull` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def skull(assigns) do ~H""" """ end @doc """ Renders the `slash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def slash(assigns) do ~H""" """ end @doc """ Renders the `slashes` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def slashes(assigns) do ~H""" """ end @doc """ Renders the `sleigh` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sleigh(assigns) do ~H""" """ end @doc """ Renders the `slice` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def slice(assigns) do ~H""" """ end @doc """ Renders the `slideshow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def slideshow(assigns) do ~H""" """ end @doc """ Renders the `smart_home_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def smart_home_off(assigns) do ~H""" """ end @doc """ Renders the `smart_home` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def smart_home(assigns) do ~H""" """ end @doc """ Renders the `smoking_no` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def smoking_no(assigns) do ~H""" """ end @doc """ Renders the `smoking` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def smoking(assigns) do ~H""" """ end @doc """ Renders the `snowflake_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def snowflake_off(assigns) do ~H""" """ end @doc """ Renders the `snowflake` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def snowflake(assigns) do ~H""" """ end @doc """ Renders the `snowman` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def snowman(assigns) do ~H""" """ end @doc """ Renders the `soccer_field` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def soccer_field(assigns) do ~H""" """ end @doc """ Renders the `social_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def social_off(assigns) do ~H""" """ end @doc """ Renders the `social` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def social(assigns) do ~H""" """ end @doc """ Renders the `sock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sock(assigns) do ~H""" """ end @doc """ Renders the `sofa_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sofa_off(assigns) do ~H""" """ end @doc """ Renders the `sofa` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sofa(assigns) do ~H""" """ end @doc """ Renders the `solar_panel_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def solar_panel_2(assigns) do ~H""" """ end @doc """ Renders the `solar_panel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def solar_panel(assigns) do ~H""" """ end @doc """ Renders the `sort_0_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_0_9(assigns) do ~H""" """ end @doc """ Renders the `sort_9_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_9_0(assigns) do ~H""" """ end @doc """ Renders the `sort_a_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_a_z(assigns) do ~H""" """ end @doc """ Renders the `sort_ascending_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_ascending_2(assigns) do ~H""" """ end @doc """ Renders the `sort_ascending_letters` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_ascending_letters(assigns) do ~H""" """ end @doc """ Renders the `sort_ascending_numbers` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_ascending_numbers(assigns) do ~H""" """ end @doc """ Renders the `sort_ascending` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_ascending(assigns) do ~H""" """ end @doc """ Renders the `sort_descending_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_descending_2(assigns) do ~H""" """ end @doc """ Renders the `sort_descending_letters` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_descending_letters(assigns) do ~H""" """ end @doc """ Renders the `sort_descending_numbers` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_descending_numbers(assigns) do ~H""" """ end @doc """ Renders the `sort_descending` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_descending(assigns) do ~H""" """ end @doc """ Renders the `sort_z_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sort_z_a(assigns) do ~H""" """ end @doc """ Renders the `sos` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sos(assigns) do ~H""" """ end @doc """ Renders the `soup_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def soup_off(assigns) do ~H""" """ end @doc """ Renders the `soup` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def soup(assigns) do ~H""" """ end @doc """ Renders the `source_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def source_code(assigns) do ~H""" """ end @doc """ Renders the `space_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def space_off(assigns) do ~H""" """ end @doc """ Renders the `space` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def space(assigns) do ~H""" """ end @doc """ Renders the `spacing_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spacing_horizontal(assigns) do ~H""" """ end @doc """ Renders the `spacing_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spacing_vertical(assigns) do ~H""" """ end @doc """ Renders the `spade_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spade_filled(assigns) do ~H""" """ end @doc """ Renders the `spade` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spade(assigns) do ~H""" """ end @doc """ Renders the `sparkles` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sparkles(assigns) do ~H""" """ end @doc """ Renders the `speakerphone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def speakerphone(assigns) do ~H""" """ end @doc """ Renders the `speedboat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def speedboat(assigns) do ~H""" """ end @doc """ Renders the `sphere_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sphere_off(assigns) do ~H""" """ end @doc """ Renders the `sphere_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sphere_plus(assigns) do ~H""" """ end @doc """ Renders the `sphere` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sphere(assigns) do ~H""" """ end @doc """ Renders the `spider` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spider(assigns) do ~H""" """ end @doc """ Renders the `spiral_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spiral_off(assigns) do ~H""" """ end @doc """ Renders the `spiral` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spiral(assigns) do ~H""" """ end @doc """ Renders the `sport_billard` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sport_billard(assigns) do ~H""" """ end @doc """ Renders the `spray` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spray(assigns) do ~H""" """ end @doc """ Renders the `spy_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spy_off(assigns) do ~H""" """ end @doc """ Renders the `spy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def spy(assigns) do ~H""" """ end @doc """ Renders the `sql` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sql(assigns) do ~H""" """ end @doc """ Renders the `square_0_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_0_filled(assigns) do ~H""" """ end @doc """ Renders the `square_1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_1_filled(assigns) do ~H""" """ end @doc """ Renders the `square_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_2_filled(assigns) do ~H""" """ end @doc """ Renders the `square_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_3_filled(assigns) do ~H""" """ end @doc """ Renders the `square_4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_4_filled(assigns) do ~H""" """ end @doc """ Renders the `square_5_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_5_filled(assigns) do ~H""" """ end @doc """ Renders the `square_6_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_6_filled(assigns) do ~H""" """ end @doc """ Renders the `square_7_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_7_filled(assigns) do ~H""" """ end @doc """ Renders the `square_8_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_8_filled(assigns) do ~H""" """ end @doc """ Renders the `square_9_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_9_filled(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_down_filled(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_down(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_left_filled(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_left(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_right_filled(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_right(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_up_filled(assigns) do ~H""" """ end @doc """ Renders the `square_arrow_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_arrow_up(assigns) do ~H""" """ end @doc """ Renders the `square_asterisk_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_asterisk_filled(assigns) do ~H""" """ end @doc """ Renders the `square_asterisk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_asterisk(assigns) do ~H""" """ end @doc """ Renders the `square_check_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_check_filled(assigns) do ~H""" """ end @doc """ Renders the `square_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_check(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_down_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_down(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_left_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_left(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_right_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_right(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_up_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevron_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevron_up(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_down_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_down(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_left_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_left(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_right_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_right(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_up_filled(assigns) do ~H""" """ end @doc """ Renders the `square_chevrons_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_chevrons_up(assigns) do ~H""" """ end @doc """ Renders the `square_dot_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_dot_filled(assigns) do ~H""" """ end @doc """ Renders the `square_dot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_dot(assigns) do ~H""" """ end @doc """ Renders the `square_f0_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f0_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f0(assigns) do ~H""" """ end @doc """ Renders the `square_f1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f1_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f1(assigns) do ~H""" """ end @doc """ Renders the `square_f2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f2_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f2(assigns) do ~H""" """ end @doc """ Renders the `square_f3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f3_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f3(assigns) do ~H""" """ end @doc """ Renders the `square_f4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f4_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f4(assigns) do ~H""" """ end @doc """ Renders the `square_f5_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f5_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f5(assigns) do ~H""" """ end @doc """ Renders the `square_f6_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f6_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f6(assigns) do ~H""" """ end @doc """ Renders the `square_f7_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f7_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f7(assigns) do ~H""" """ end @doc """ Renders the `square_f8_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f8_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f8(assigns) do ~H""" """ end @doc """ Renders the `square_f9_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f9_filled(assigns) do ~H""" """ end @doc """ Renders the `square_f9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_f9(assigns) do ~H""" """ end @doc """ Renders the `square_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_filled(assigns) do ~H""" """ end @doc """ Renders the `square_forbid_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_forbid_2(assigns) do ~H""" """ end @doc """ Renders the `square_forbid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_forbid(assigns) do ~H""" """ end @doc """ Renders the `square_half` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_half(assigns) do ~H""" """ end @doc """ Renders the `square_key` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_key(assigns) do ~H""" """ end @doc """ Renders the `square_letter_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_a(assigns) do ~H""" """ end @doc """ Renders the `square_letter_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_b(assigns) do ~H""" """ end @doc """ Renders the `square_letter_c` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_c(assigns) do ~H""" """ end @doc """ Renders the `square_letter_d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_d(assigns) do ~H""" """ end @doc """ Renders the `square_letter_e` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_e(assigns) do ~H""" """ end @doc """ Renders the `square_letter_f` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_f(assigns) do ~H""" """ end @doc """ Renders the `square_letter_g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_g(assigns) do ~H""" """ end @doc """ Renders the `square_letter_h` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_h(assigns) do ~H""" """ end @doc """ Renders the `square_letter_i` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_i(assigns) do ~H""" """ end @doc """ Renders the `square_letter_j` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_j(assigns) do ~H""" """ end @doc """ Renders the `square_letter_k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_k(assigns) do ~H""" """ end @doc """ Renders the `square_letter_l` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_l(assigns) do ~H""" """ end @doc """ Renders the `square_letter_m` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_m(assigns) do ~H""" """ end @doc """ Renders the `square_letter_n` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_n(assigns) do ~H""" """ end @doc """ Renders the `square_letter_o` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_o(assigns) do ~H""" """ end @doc """ Renders the `square_letter_p` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_p(assigns) do ~H""" """ end @doc """ Renders the `square_letter_q` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_q(assigns) do ~H""" """ end @doc """ Renders the `square_letter_r` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_r(assigns) do ~H""" """ end @doc """ Renders the `square_letter_s` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_s(assigns) do ~H""" """ end @doc """ Renders the `square_letter_t` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_t(assigns) do ~H""" """ end @doc """ Renders the `square_letter_u` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_u(assigns) do ~H""" """ end @doc """ Renders the `square_letter_v` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_v(assigns) do ~H""" """ end @doc """ Renders the `square_letter_w` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_w(assigns) do ~H""" """ end @doc """ Renders the `square_letter_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_x(assigns) do ~H""" """ end @doc """ Renders the `square_letter_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_y(assigns) do ~H""" """ end @doc """ Renders the `square_letter_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_letter_z(assigns) do ~H""" """ end @doc """ Renders the `square_minus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_minus_filled(assigns) do ~H""" """ end @doc """ Renders the `square_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_minus(assigns) do ~H""" """ end @doc """ Renders the `square_number_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_0(assigns) do ~H""" """ end @doc """ Renders the `square_number_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_1(assigns) do ~H""" """ end @doc """ Renders the `square_number_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_2(assigns) do ~H""" """ end @doc """ Renders the `square_number_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_3(assigns) do ~H""" """ end @doc """ Renders the `square_number_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_4(assigns) do ~H""" """ end @doc """ Renders the `square_number_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_5(assigns) do ~H""" """ end @doc """ Renders the `square_number_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_6(assigns) do ~H""" """ end @doc """ Renders the `square_number_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_7(assigns) do ~H""" """ end @doc """ Renders the `square_number_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_8(assigns) do ~H""" """ end @doc """ Renders the `square_number_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_number_9(assigns) do ~H""" """ end @doc """ Renders the `square_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_off(assigns) do ~H""" """ end @doc """ Renders the `square_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_plus(assigns) do ~H""" """ end @doc """ Renders the `square_root_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_root_2(assigns) do ~H""" """ end @doc """ Renders the `square_root` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_root(assigns) do ~H""" """ end @doc """ Renders the `square_rotated_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rotated_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rotated_forbid_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rotated_forbid_2(assigns) do ~H""" """ end @doc """ Renders the `square_rotated_forbid` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rotated_forbid(assigns) do ~H""" """ end @doc """ Renders the `square_rotated_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rotated_off(assigns) do ~H""" """ end @doc """ Renders the `square_rotated` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rotated(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_down_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_down(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_left_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_left(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_right_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_right(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_up_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_arrow_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_arrow_up(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_check_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_check_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_check(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_down_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_down(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_left_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_left(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_right_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_right(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_up_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevron_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevron_up(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_down_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_down(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_left_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_left_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_left(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_right_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_right_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_right(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_up_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_chevrons_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_chevrons_up(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_a(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_b(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_c` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_c(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_d` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_d(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_e` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_e(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_f` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_f(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_g` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_g(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_h` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_h(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_i` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_i(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_j` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_j(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_k` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_k(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_l` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_l(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_m` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_m(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_n` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_n(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_o` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_o(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_p` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_p(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_q` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_q(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_r` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_r(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_s` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_s(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_t` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_t(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_u` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_u(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_v` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_v(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_w` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_w(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_x(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_y(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_letter_z` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_letter_z(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_minus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_minus_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_minus(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_0_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_0_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_0(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_1_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_1_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_1(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_2_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_2_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_2(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_3_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_3_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_3(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_4_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_4_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_4(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_5_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_5_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_5(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_6_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_6_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_6(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_7_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_7_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_7` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_7(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_8_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_8_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_8` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_8(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_9_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_9_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_number_9` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_number_9(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_plus_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_plus_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_plus(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_x_filled(assigns) do ~H""" """ end @doc """ Renders the `square_rounded_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded_x(assigns) do ~H""" """ end @doc """ Renders the `square_rounded` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_rounded(assigns) do ~H""" """ end @doc """ Renders the `square_toggle_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_toggle_horizontal(assigns) do ~H""" """ end @doc """ Renders the `square_toggle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_toggle(assigns) do ~H""" """ end @doc """ Renders the `square_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_x_filled(assigns) do ~H""" """ end @doc """ Renders the `square_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square_x(assigns) do ~H""" """ end @doc """ Renders the `square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def square(assigns) do ~H""" """ end @doc """ Renders the `squares_diagonal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def squares_diagonal(assigns) do ~H""" """ end @doc """ Renders the `squares_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def squares_filled(assigns) do ~H""" """ end @doc """ Renders the `stack_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stack_2(assigns) do ~H""" """ end @doc """ Renders the `stack_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stack_3(assigns) do ~H""" """ end @doc """ Renders the `stack_pop` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stack_pop(assigns) do ~H""" """ end @doc """ Renders the `stack_push` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stack_push(assigns) do ~H""" """ end @doc """ Renders the `stack` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stack(assigns) do ~H""" """ end @doc """ Renders the `stairs_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stairs_down(assigns) do ~H""" """ end @doc """ Renders the `stairs_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stairs_up(assigns) do ~H""" """ end @doc """ Renders the `stairs` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stairs(assigns) do ~H""" """ end @doc """ Renders the `star_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def star_filled(assigns) do ~H""" """ end @doc """ Renders the `star_half_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def star_half_filled(assigns) do ~H""" """ end @doc """ Renders the `star_half` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def star_half(assigns) do ~H""" """ end @doc """ Renders the `star_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def star_off(assigns) do ~H""" """ end @doc """ Renders the `star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def star(assigns) do ~H""" """ end @doc """ Renders the `stars_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stars_filled(assigns) do ~H""" """ end @doc """ Renders the `stars_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stars_off(assigns) do ~H""" """ end @doc """ Renders the `stars` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stars(assigns) do ~H""" """ end @doc """ Renders the `status_change` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def status_change(assigns) do ~H""" """ end @doc """ Renders the `steam` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def steam(assigns) do ~H""" """ end @doc """ Renders the `steering_wheel_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def steering_wheel_off(assigns) do ~H""" """ end @doc """ Renders the `steering_wheel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def steering_wheel(assigns) do ~H""" """ end @doc """ Renders the `step_into` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def step_into(assigns) do ~H""" """ end @doc """ Renders the `step_out` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def step_out(assigns) do ~H""" """ end @doc """ Renders the `stereo_glasses` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stereo_glasses(assigns) do ~H""" """ end @doc """ Renders the `stethoscope_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stethoscope_off(assigns) do ~H""" """ end @doc """ Renders the `stethoscope` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stethoscope(assigns) do ~H""" """ end @doc """ Renders the `sticker` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sticker(assigns) do ~H""" """ end @doc """ Renders the `storm_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def storm_off(assigns) do ~H""" """ end @doc """ Renders the `storm` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def storm(assigns) do ~H""" """ end @doc """ Renders the `stretching_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stretching_2(assigns) do ~H""" """ end @doc """ Renders the `stretching` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def stretching(assigns) do ~H""" """ end @doc """ Renders the `strikethrough` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def strikethrough(assigns) do ~H""" """ end @doc """ Renders the `submarine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def submarine(assigns) do ~H""" """ end @doc """ Renders the `subscript` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def subscript(assigns) do ~H""" """ end @doc """ Renders the `subtask` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def subtask(assigns) do ~H""" """ end @doc """ Renders the `sum_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sum_off(assigns) do ~H""" """ end @doc """ Renders the `sum` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sum(assigns) do ~H""" """ end @doc """ Renders the `sun_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun_filled(assigns) do ~H""" """ end @doc """ Renders the `sun_high` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun_high(assigns) do ~H""" """ end @doc """ Renders the `sun_low` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun_low(assigns) do ~H""" """ end @doc """ Renders the `sun_moon` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun_moon(assigns) do ~H""" """ end @doc """ Renders the `sun_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun_off(assigns) do ~H""" """ end @doc """ Renders the `sun_wind` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun_wind(assigns) do ~H""" """ end @doc """ Renders the `sun` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sun(assigns) do ~H""" """ end @doc """ Renders the `sunglasses` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sunglasses(assigns) do ~H""" """ end @doc """ Renders the `sunrise` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sunrise(assigns) do ~H""" """ end @doc """ Renders the `sunset_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sunset_2(assigns) do ~H""" """ end @doc """ Renders the `sunset` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sunset(assigns) do ~H""" """ end @doc """ Renders the `superscript` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def superscript(assigns) do ~H""" """ end @doc """ Renders the `svg` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def svg(assigns) do ~H""" """ end @doc """ Renders the `swimming` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def swimming(assigns) do ~H""" """ end @doc """ Renders the `swipe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def swipe(assigns) do ~H""" """ end @doc """ Renders the `switch_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def switch_2(assigns) do ~H""" """ end @doc """ Renders the `switch_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def switch_3(assigns) do ~H""" """ end @doc """ Renders the `switch_horizontal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def switch_horizontal(assigns) do ~H""" """ end @doc """ Renders the `switch_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def switch_vertical(assigns) do ~H""" """ end @doc """ Renders the `switch` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def switch(assigns) do ~H""" """ end @doc """ Renders the `sword_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sword_off(assigns) do ~H""" """ end @doc """ Renders the `sword` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def sword(assigns) do ~H""" """ end @doc """ Renders the `swords` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def swords(assigns) do ~H""" """ end @doc """ Renders the `table_alias` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_alias(assigns) do ~H""" """ end @doc """ Renders the `table_column` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_column(assigns) do ~H""" """ end @doc """ Renders the `table_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_down(assigns) do ~H""" """ end @doc """ Renders the `table_export` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_export(assigns) do ~H""" """ end @doc """ Renders the `table_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_filled(assigns) do ~H""" """ end @doc """ Renders the `table_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_heart(assigns) do ~H""" """ end @doc """ Renders the `table_import` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_import(assigns) do ~H""" """ end @doc """ Renders the `table_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_minus(assigns) do ~H""" """ end @doc """ Renders the `table_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_off(assigns) do ~H""" """ end @doc """ Renders the `table_options` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_options(assigns) do ~H""" """ end @doc """ Renders the `table_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_plus(assigns) do ~H""" """ end @doc """ Renders the `table_row` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_row(assigns) do ~H""" """ end @doc """ Renders the `table_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_share(assigns) do ~H""" """ end @doc """ Renders the `table_shortcut` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table_shortcut(assigns) do ~H""" """ end @doc """ Renders the `table` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def table(assigns) do ~H""" """ end @doc """ Renders the `tag_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tag_off(assigns) do ~H""" """ end @doc """ Renders the `tag` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tag(assigns) do ~H""" """ end @doc """ Renders the `tags_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tags_off(assigns) do ~H""" """ end @doc """ Renders the `tags` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tags(assigns) do ~H""" """ end @doc """ Renders the `tallymark_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tallymark_1(assigns) do ~H""" """ end @doc """ Renders the `tallymark_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tallymark_2(assigns) do ~H""" """ end @doc """ Renders the `tallymark_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tallymark_3(assigns) do ~H""" """ end @doc """ Renders the `tallymark_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tallymark_4(assigns) do ~H""" """ end @doc """ Renders the `tallymarks` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tallymarks(assigns) do ~H""" """ end @doc """ Renders the `tank` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tank(assigns) do ~H""" """ end @doc """ Renders the `target_arrow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def target_arrow(assigns) do ~H""" """ end @doc """ Renders the `target_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def target_off(assigns) do ~H""" """ end @doc """ Renders the `target` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def target(assigns) do ~H""" """ end @doc """ Renders the `teapot` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def teapot(assigns) do ~H""" """ end @doc """ Renders the `telescope_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def telescope_off(assigns) do ~H""" """ end @doc """ Renders the `telescope` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def telescope(assigns) do ~H""" """ end @doc """ Renders the `temperature_celsius` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def temperature_celsius(assigns) do ~H""" """ end @doc """ Renders the `temperature_fahrenheit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def temperature_fahrenheit(assigns) do ~H""" """ end @doc """ Renders the `temperature_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def temperature_minus(assigns) do ~H""" """ end @doc """ Renders the `temperature_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def temperature_off(assigns) do ~H""" """ end @doc """ Renders the `temperature_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def temperature_plus(assigns) do ~H""" """ end @doc """ Renders the `temperature` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def temperature(assigns) do ~H""" """ end @doc """ Renders the `template_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def template_off(assigns) do ~H""" """ end @doc """ Renders the `template` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def template(assigns) do ~H""" """ end @doc """ Renders the `tent_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tent_off(assigns) do ~H""" """ end @doc """ Renders the `tent` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tent(assigns) do ~H""" """ end @doc """ Renders the `terminal_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def terminal_2(assigns) do ~H""" """ end @doc """ Renders the `terminal` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def terminal(assigns) do ~H""" """ end @doc """ Renders the `test_pipe_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def test_pipe_2(assigns) do ~H""" """ end @doc """ Renders the `test_pipe_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def test_pipe_off(assigns) do ~H""" """ end @doc """ Renders the `test_pipe` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def test_pipe(assigns) do ~H""" """ end @doc """ Renders the `tex` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tex(assigns) do ~H""" """ end @doc """ Renders the `text_caption` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_caption(assigns) do ~H""" """ end @doc """ Renders the `text_color` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_color(assigns) do ~H""" """ end @doc """ Renders the `text_decrease` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_decrease(assigns) do ~H""" """ end @doc """ Renders the `text_direction_ltr` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_direction_ltr(assigns) do ~H""" """ end @doc """ Renders the `text_direction_rtl` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_direction_rtl(assigns) do ~H""" """ end @doc """ Renders the `text_increase` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_increase(assigns) do ~H""" """ end @doc """ Renders the `text_orientation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_orientation(assigns) do ~H""" """ end @doc """ Renders the `text_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_plus(assigns) do ~H""" """ end @doc """ Renders the `text_recognition` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_recognition(assigns) do ~H""" """ end @doc """ Renders the `text_resize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_resize(assigns) do ~H""" """ end @doc """ Renders the `text_size` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_size(assigns) do ~H""" """ end @doc """ Renders the `text_spellcheck` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_spellcheck(assigns) do ~H""" """ end @doc """ Renders the `text_wrap_disabled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_wrap_disabled(assigns) do ~H""" """ end @doc """ Renders the `text_wrap` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def text_wrap(assigns) do ~H""" """ end @doc """ Renders the `texture` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def texture(assigns) do ~H""" """ end @doc """ Renders the `theater` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def theater(assigns) do ~H""" """ end @doc """ Renders the `thermometer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thermometer(assigns) do ~H""" """ end @doc """ Renders the `thumb_down_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thumb_down_filled(assigns) do ~H""" """ end @doc """ Renders the `thumb_down_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thumb_down_off(assigns) do ~H""" """ end @doc """ Renders the `thumb_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thumb_down(assigns) do ~H""" """ end @doc """ Renders the `thumb_up_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thumb_up_filled(assigns) do ~H""" """ end @doc """ Renders the `thumb_up_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thumb_up_off(assigns) do ~H""" """ end @doc """ Renders the `thumb_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def thumb_up(assigns) do ~H""" """ end @doc """ Renders the `tic_tac` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tic_tac(assigns) do ~H""" """ end @doc """ Renders the `ticket_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ticket_off(assigns) do ~H""" """ end @doc """ Renders the `ticket` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ticket(assigns) do ~H""" """ end @doc """ Renders the `tie` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tie(assigns) do ~H""" """ end @doc """ Renders the `tilde` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tilde(assigns) do ~H""" """ end @doc """ Renders the `tilt_shift_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tilt_shift_off(assigns) do ~H""" """ end @doc """ Renders the `tilt_shift` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tilt_shift(assigns) do ~H""" """ end @doc """ Renders the `time_duration_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_0(assigns) do ~H""" """ end @doc """ Renders the `time_duration_10` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_10(assigns) do ~H""" """ end @doc """ Renders the `time_duration_15` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_15(assigns) do ~H""" """ end @doc """ Renders the `time_duration_30` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_30(assigns) do ~H""" """ end @doc """ Renders the `time_duration_45` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_45(assigns) do ~H""" """ end @doc """ Renders the `time_duration_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_5(assigns) do ~H""" """ end @doc """ Renders the `time_duration_60` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_60(assigns) do ~H""" """ end @doc """ Renders the `time_duration_90` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_90(assigns) do ~H""" """ end @doc """ Renders the `time_duration_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def time_duration_off(assigns) do ~H""" """ end @doc """ Renders the `timeline_event_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline_event_exclamation(assigns) do ~H""" """ end @doc """ Renders the `timeline_event_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline_event_minus(assigns) do ~H""" """ end @doc """ Renders the `timeline_event_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline_event_plus(assigns) do ~H""" """ end @doc """ Renders the `timeline_event_text` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline_event_text(assigns) do ~H""" """ end @doc """ Renders the `timeline_event_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline_event_x(assigns) do ~H""" """ end @doc """ Renders the `timeline_event` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline_event(assigns) do ~H""" """ end @doc """ Renders the `timeline` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def timeline(assigns) do ~H""" """ end @doc """ Renders the `tir` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tir(assigns) do ~H""" """ end @doc """ Renders the `toggle_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def toggle_left(assigns) do ~H""" """ end @doc """ Renders the `toggle_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def toggle_right(assigns) do ~H""" """ end @doc """ Renders the `toilet_paper_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def toilet_paper_off(assigns) do ~H""" """ end @doc """ Renders the `toilet_paper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def toilet_paper(assigns) do ~H""" """ end @doc """ Renders the `toml` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def toml(assigns) do ~H""" """ end @doc """ Renders the `tool` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tool(assigns) do ~H""" """ end @doc """ Renders the `tools_kitchen_2_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tools_kitchen_2_off(assigns) do ~H""" """ end @doc """ Renders the `tools_kitchen_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tools_kitchen_2(assigns) do ~H""" """ end @doc """ Renders the `tools_kitchen_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tools_kitchen_off(assigns) do ~H""" """ end @doc """ Renders the `tools_kitchen` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tools_kitchen(assigns) do ~H""" """ end @doc """ Renders the `tools_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tools_off(assigns) do ~H""" """ end @doc """ Renders the `tools` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tools(assigns) do ~H""" """ end @doc """ Renders the `tooltip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tooltip(assigns) do ~H""" """ end @doc """ Renders the `topology_bus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_bus(assigns) do ~H""" """ end @doc """ Renders the `topology_complex` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_complex(assigns) do ~H""" """ end @doc """ Renders the `topology_full_hierarchy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_full_hierarchy(assigns) do ~H""" """ end @doc """ Renders the `topology_full` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_full(assigns) do ~H""" """ end @doc """ Renders the `topology_ring_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_ring_2(assigns) do ~H""" """ end @doc """ Renders the `topology_ring_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_ring_3(assigns) do ~H""" """ end @doc """ Renders the `topology_ring` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_ring(assigns) do ~H""" """ end @doc """ Renders the `topology_star_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_star_2(assigns) do ~H""" """ end @doc """ Renders the `topology_star_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_star_3(assigns) do ~H""" """ end @doc """ Renders the `topology_star_ring_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_star_ring_2(assigns) do ~H""" """ end @doc """ Renders the `topology_star_ring_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_star_ring_3(assigns) do ~H""" """ end @doc """ Renders the `topology_star_ring` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_star_ring(assigns) do ~H""" """ end @doc """ Renders the `topology_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def topology_star(assigns) do ~H""" """ end @doc """ Renders the `torii` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def torii(assigns) do ~H""" """ end @doc """ Renders the `tornado` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tornado(assigns) do ~H""" """ end @doc """ Renders the `tournament` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tournament(assigns) do ~H""" """ end @doc """ Renders the `tower_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tower_off(assigns) do ~H""" """ end @doc """ Renders the `tower` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tower(assigns) do ~H""" """ end @doc """ Renders the `track` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def track(assigns) do ~H""" """ end @doc """ Renders the `tractor` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tractor(assigns) do ~H""" """ end @doc """ Renders the `trademark` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trademark(assigns) do ~H""" """ end @doc """ Renders the `traffic_cone_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def traffic_cone_off(assigns) do ~H""" """ end @doc """ Renders the `traffic_cone` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def traffic_cone(assigns) do ~H""" """ end @doc """ Renders the `traffic_lights_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def traffic_lights_off(assigns) do ~H""" """ end @doc """ Renders the `traffic_lights` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def traffic_lights(assigns) do ~H""" """ end @doc """ Renders the `train` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def train(assigns) do ~H""" """ end @doc """ Renders the `transfer_in` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transfer_in(assigns) do ~H""" """ end @doc """ Renders the `transfer_out` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transfer_out(assigns) do ~H""" """ end @doc """ Renders the `transfer_vertical` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transfer_vertical(assigns) do ~H""" """ end @doc """ Renders the `transfer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transfer(assigns) do ~H""" """ end @doc """ Renders the `transform_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transform_filled(assigns) do ~H""" """ end @doc """ Renders the `transform` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transform(assigns) do ~H""" """ end @doc """ Renders the `transition_bottom` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transition_bottom(assigns) do ~H""" """ end @doc """ Renders the `transition_left` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transition_left(assigns) do ~H""" """ end @doc """ Renders the `transition_right` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transition_right(assigns) do ~H""" """ end @doc """ Renders the `transition_top` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def transition_top(assigns) do ~H""" """ end @doc """ Renders the `trash_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trash_filled(assigns) do ~H""" """ end @doc """ Renders the `trash_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trash_off(assigns) do ~H""" """ end @doc """ Renders the `trash_x_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trash_x_filled(assigns) do ~H""" """ end @doc """ Renders the `trash_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trash_x(assigns) do ~H""" """ end @doc """ Renders the `trash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trash(assigns) do ~H""" """ end @doc """ Renders the `treadmill` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def treadmill(assigns) do ~H""" """ end @doc """ Renders the `tree` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def tree(assigns) do ~H""" """ end @doc """ Renders the `trees` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trees(assigns) do ~H""" """ end @doc """ Renders the `trekking` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trekking(assigns) do ~H""" """ end @doc """ Renders the `trending_down_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trending_down_2(assigns) do ~H""" """ end @doc """ Renders the `trending_down_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trending_down_3(assigns) do ~H""" """ end @doc """ Renders the `trending_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trending_down(assigns) do ~H""" """ end @doc """ Renders the `trending_up_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trending_up_2(assigns) do ~H""" """ end @doc """ Renders the `trending_up_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trending_up_3(assigns) do ~H""" """ end @doc """ Renders the `trending_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trending_up(assigns) do ~H""" """ end @doc """ Renders the `triangle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle_filled(assigns) do ~H""" """ end @doc """ Renders the `triangle_inverted_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle_inverted_filled(assigns) do ~H""" """ end @doc """ Renders the `triangle_inverted` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle_inverted(assigns) do ~H""" """ end @doc """ Renders the `triangle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle_off(assigns) do ~H""" """ end @doc """ Renders the `triangle_square_circle_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle_square_circle_filled(assigns) do ~H""" """ end @doc """ Renders the `triangle_square_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle_square_circle(assigns) do ~H""" """ end @doc """ Renders the `triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangle(assigns) do ~H""" """ end @doc """ Renders the `triangles` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def triangles(assigns) do ~H""" """ end @doc """ Renders the `trident` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trident(assigns) do ~H""" """ end @doc """ Renders the `trolley` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trolley(assigns) do ~H""" """ end @doc """ Renders the `trophy_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trophy_filled(assigns) do ~H""" """ end @doc """ Renders the `trophy_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trophy_off(assigns) do ~H""" """ end @doc """ Renders the `trophy` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trophy(assigns) do ~H""" """ end @doc """ Renders the `trowel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def trowel(assigns) do ~H""" """ end @doc """ Renders the `truck_delivery` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def truck_delivery(assigns) do ~H""" """ end @doc """ Renders the `truck_loading` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def truck_loading(assigns) do ~H""" """ end @doc """ Renders the `truck_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def truck_off(assigns) do ~H""" """ end @doc """ Renders the `truck_return` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def truck_return(assigns) do ~H""" """ end @doc """ Renders the `truck` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def truck(assigns) do ~H""" """ end @doc """ Renders the `txt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def txt(assigns) do ~H""" """ end @doc """ Renders the `typography_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def typography_off(assigns) do ~H""" """ end @doc """ Renders the `typography` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def typography(assigns) do ~H""" """ end @doc """ Renders the `ufo_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ufo_off(assigns) do ~H""" """ end @doc """ Renders the `ufo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ufo(assigns) do ~H""" """ end @doc """ Renders the `umbrella_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def umbrella_filled(assigns) do ~H""" """ end @doc """ Renders the `umbrella_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def umbrella_off(assigns) do ~H""" """ end @doc """ Renders the `umbrella` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def umbrella(assigns) do ~H""" """ end @doc """ Renders the `underline` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def underline(assigns) do ~H""" """ end @doc """ Renders the `unlink` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def unlink(assigns) do ~H""" """ end @doc """ Renders the `upload` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def upload(assigns) do ~H""" """ end @doc """ Renders the `urgent` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def urgent(assigns) do ~H""" """ end @doc """ Renders the `usb` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def usb(assigns) do ~H""" """ end @doc """ Renders the `user_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_bolt(assigns) do ~H""" """ end @doc """ Renders the `user_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_cancel(assigns) do ~H""" """ end @doc """ Renders the `user_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_check(assigns) do ~H""" """ end @doc """ Renders the `user_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_circle(assigns) do ~H""" """ end @doc """ Renders the `user_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_code(assigns) do ~H""" """ end @doc """ Renders the `user_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_cog(assigns) do ~H""" """ end @doc """ Renders the `user_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_dollar(assigns) do ~H""" """ end @doc """ Renders the `user_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_down(assigns) do ~H""" """ end @doc """ Renders the `user_edit` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_edit(assigns) do ~H""" """ end @doc """ Renders the `user_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_exclamation(assigns) do ~H""" """ end @doc """ Renders the `user_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_heart(assigns) do ~H""" """ end @doc """ Renders the `user_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_minus(assigns) do ~H""" """ end @doc """ Renders the `user_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_off(assigns) do ~H""" """ end @doc """ Renders the `user_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_pause(assigns) do ~H""" """ end @doc """ Renders the `user_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_pin(assigns) do ~H""" """ end @doc """ Renders the `user_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_plus(assigns) do ~H""" """ end @doc """ Renders the `user_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_question(assigns) do ~H""" """ end @doc """ Renders the `user_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_search(assigns) do ~H""" """ end @doc """ Renders the `user_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_share(assigns) do ~H""" """ end @doc """ Renders the `user_shield` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_shield(assigns) do ~H""" """ end @doc """ Renders the `user_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_star(assigns) do ~H""" """ end @doc """ Renders the `user_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_up(assigns) do ~H""" """ end @doc """ Renders the `user_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user_x(assigns) do ~H""" """ end @doc """ Renders the `user` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def user(assigns) do ~H""" """ end @doc """ Renders the `users_group` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def users_group(assigns) do ~H""" """ end @doc """ Renders the `users_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def users_minus(assigns) do ~H""" """ end @doc """ Renders the `users_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def users_plus(assigns) do ~H""" """ end @doc """ Renders the `users` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def users(assigns) do ~H""" """ end @doc """ Renders the `uv_index` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def uv_index(assigns) do ~H""" """ end @doc """ Renders the `ux_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def ux_circle(assigns) do ~H""" """ end @doc """ Renders the `vaccine_bottle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vaccine_bottle_off(assigns) do ~H""" """ end @doc """ Renders the `vaccine_bottle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vaccine_bottle(assigns) do ~H""" """ end @doc """ Renders the `vaccine_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vaccine_off(assigns) do ~H""" """ end @doc """ Renders the `vaccine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vaccine(assigns) do ~H""" """ end @doc """ Renders the `vacuum_cleaner` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vacuum_cleaner(assigns) do ~H""" """ end @doc """ Renders the `variable_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def variable_minus(assigns) do ~H""" """ end @doc """ Renders the `variable_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def variable_off(assigns) do ~H""" """ end @doc """ Renders the `variable_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def variable_plus(assigns) do ~H""" """ end @doc """ Renders the `variable` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def variable(assigns) do ~H""" """ end @doc """ Renders the `vector_bezier_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_bezier_2(assigns) do ~H""" """ end @doc """ Renders the `vector_bezier_arc` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_bezier_arc(assigns) do ~H""" """ end @doc """ Renders the `vector_bezier_circle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_bezier_circle(assigns) do ~H""" """ end @doc """ Renders the `vector_bezier` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_bezier(assigns) do ~H""" """ end @doc """ Renders the `vector_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_off(assigns) do ~H""" """ end @doc """ Renders the `vector_spline` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_spline(assigns) do ~H""" """ end @doc """ Renders the `vector_triangle_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_triangle_off(assigns) do ~H""" """ end @doc """ Renders the `vector_triangle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector_triangle(assigns) do ~H""" """ end @doc """ Renders the `vector` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vector(assigns) do ~H""" """ end @doc """ Renders the `venus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def venus(assigns) do ~H""" """ end @doc """ Renders the `versions_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def versions_filled(assigns) do ~H""" """ end @doc """ Renders the `versions_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def versions_off(assigns) do ~H""" """ end @doc """ Renders the `versions` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def versions(assigns) do ~H""" """ end @doc """ Renders the `video_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def video_minus(assigns) do ~H""" """ end @doc """ Renders the `video_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def video_off(assigns) do ~H""" """ end @doc """ Renders the `video_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def video_plus(assigns) do ~H""" """ end @doc """ Renders the `video` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def video(assigns) do ~H""" """ end @doc """ Renders the `view_360_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def view_360_off(assigns) do ~H""" """ end @doc """ Renders the `view_360` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def view_360(assigns) do ~H""" """ end @doc """ Renders the `viewfinder_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def viewfinder_off(assigns) do ~H""" """ end @doc """ Renders the `viewfinder` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def viewfinder(assigns) do ~H""" """ end @doc """ Renders the `viewport_narrow` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def viewport_narrow(assigns) do ~H""" """ end @doc """ Renders the `viewport_wide` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def viewport_wide(assigns) do ~H""" """ end @doc """ Renders the `vinyl` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vinyl(assigns) do ~H""" """ end @doc """ Renders the `vip_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vip_off(assigns) do ~H""" """ end @doc """ Renders the `vip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vip(assigns) do ~H""" """ end @doc """ Renders the `virus_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def virus_off(assigns) do ~H""" """ end @doc """ Renders the `virus_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def virus_search(assigns) do ~H""" """ end @doc """ Renders the `virus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def virus(assigns) do ~H""" """ end @doc """ Renders the `vocabulary_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vocabulary_off(assigns) do ~H""" """ end @doc """ Renders the `vocabulary` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def vocabulary(assigns) do ~H""" """ end @doc """ Renders the `volcano` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def volcano(assigns) do ~H""" """ end @doc """ Renders the `volume_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def volume_2(assigns) do ~H""" """ end @doc """ Renders the `volume_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def volume_3(assigns) do ~H""" """ end @doc """ Renders the `volume_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def volume_off(assigns) do ~H""" """ end @doc """ Renders the `volume` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def volume(assigns) do ~H""" """ end @doc """ Renders the `walk` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def walk(assigns) do ~H""" """ end @doc """ Renders the `wall_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wall_off(assigns) do ~H""" """ end @doc """ Renders the `wall` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wall(assigns) do ~H""" """ end @doc """ Renders the `wallet_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wallet_off(assigns) do ~H""" """ end @doc """ Renders the `wallet` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wallet(assigns) do ~H""" """ end @doc """ Renders the `wallpaper_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wallpaper_off(assigns) do ~H""" """ end @doc """ Renders the `wallpaper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wallpaper(assigns) do ~H""" """ end @doc """ Renders the `wand_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wand_off(assigns) do ~H""" """ end @doc """ Renders the `wand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wand(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_1(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_2(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_3(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_a(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_dip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_dip(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_f` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_f(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_flat` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_flat(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_hang` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_hang(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_off(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_p` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_p(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_shade` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_shade(assigns) do ~H""" """ end @doc """ Renders the `wash_dry_w` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry_w(assigns) do ~H""" """ end @doc """ Renders the `wash_dry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dry(assigns) do ~H""" """ end @doc """ Renders the `wash_dryclean_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dryclean_off(assigns) do ~H""" """ end @doc """ Renders the `wash_dryclean` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_dryclean(assigns) do ~H""" """ end @doc """ Renders the `wash_eco` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_eco(assigns) do ~H""" """ end @doc """ Renders the `wash_gentle` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_gentle(assigns) do ~H""" """ end @doc """ Renders the `wash_hand` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_hand(assigns) do ~H""" """ end @doc """ Renders the `wash_machine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_machine(assigns) do ~H""" """ end @doc """ Renders the `wash_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_off(assigns) do ~H""" """ end @doc """ Renders the `wash_press` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_press(assigns) do ~H""" """ end @doc """ Renders the `wash_temperature_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_temperature_1(assigns) do ~H""" """ end @doc """ Renders the `wash_temperature_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_temperature_2(assigns) do ~H""" """ end @doc """ Renders the `wash_temperature_3` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_temperature_3(assigns) do ~H""" """ end @doc """ Renders the `wash_temperature_4` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_temperature_4(assigns) do ~H""" """ end @doc """ Renders the `wash_temperature_5` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_temperature_5(assigns) do ~H""" """ end @doc """ Renders the `wash_temperature_6` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_temperature_6(assigns) do ~H""" """ end @doc """ Renders the `wash_tumble_dry` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_tumble_dry(assigns) do ~H""" """ end @doc """ Renders the `wash_tumble_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash_tumble_off(assigns) do ~H""" """ end @doc """ Renders the `wash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wash(assigns) do ~H""" """ end @doc """ Renders the `waterpolo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def waterpolo(assigns) do ~H""" """ end @doc """ Renders the `wave_saw_tool` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wave_saw_tool(assigns) do ~H""" """ end @doc """ Renders the `wave_sine` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wave_sine(assigns) do ~H""" """ end @doc """ Renders the `wave_square` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wave_square(assigns) do ~H""" """ end @doc """ Renders the `webhook_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def webhook_off(assigns) do ~H""" """ end @doc """ Renders the `webhook` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def webhook(assigns) do ~H""" """ end @doc """ Renders the `weight` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def weight(assigns) do ~H""" """ end @doc """ Renders the `wheelchair_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wheelchair_off(assigns) do ~H""" """ end @doc """ Renders the `wheelchair` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wheelchair(assigns) do ~H""" """ end @doc """ Renders the `whirl` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def whirl(assigns) do ~H""" """ end @doc """ Renders the `wifi_0` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wifi_0(assigns) do ~H""" """ end @doc """ Renders the `wifi_1` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wifi_1(assigns) do ~H""" """ end @doc """ Renders the `wifi_2` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wifi_2(assigns) do ~H""" """ end @doc """ Renders the `wifi_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wifi_off(assigns) do ~H""" """ end @doc """ Renders the `wifi` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wifi(assigns) do ~H""" """ end @doc """ Renders the `wind_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wind_off(assigns) do ~H""" """ end @doc """ Renders the `wind` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wind(assigns) do ~H""" """ end @doc """ Renders the `windmill_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def windmill_filled(assigns) do ~H""" """ end @doc """ Renders the `windmill_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def windmill_off(assigns) do ~H""" """ end @doc """ Renders the `windmill` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def windmill(assigns) do ~H""" """ end @doc """ Renders the `window_maximize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def window_maximize(assigns) do ~H""" """ end @doc """ Renders the `window_minimize` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def window_minimize(assigns) do ~H""" """ end @doc """ Renders the `window_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def window_off(assigns) do ~H""" """ end @doc """ Renders the `window` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def window(assigns) do ~H""" """ end @doc """ Renders the `windsock` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def windsock(assigns) do ~H""" """ end @doc """ Renders the `wiper_wash` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wiper_wash(assigns) do ~H""" """ end @doc """ Renders the `wiper` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wiper(assigns) do ~H""" """ end @doc """ Renders the `woman` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def woman(assigns) do ~H""" """ end @doc """ Renders the `wood` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wood(assigns) do ~H""" """ end @doc """ Renders the `world_bolt` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_bolt(assigns) do ~H""" """ end @doc """ Renders the `world_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_cancel(assigns) do ~H""" """ end @doc """ Renders the `world_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_check(assigns) do ~H""" """ end @doc """ Renders the `world_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_code(assigns) do ~H""" """ end @doc """ Renders the `world_cog` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_cog(assigns) do ~H""" """ end @doc """ Renders the `world_dollar` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_dollar(assigns) do ~H""" """ end @doc """ Renders the `world_down` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_down(assigns) do ~H""" """ end @doc """ Renders the `world_download` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_download(assigns) do ~H""" """ end @doc """ Renders the `world_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_exclamation(assigns) do ~H""" """ end @doc """ Renders the `world_heart` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_heart(assigns) do ~H""" """ end @doc """ Renders the `world_latitude` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_latitude(assigns) do ~H""" """ end @doc """ Renders the `world_longitude` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_longitude(assigns) do ~H""" """ end @doc """ Renders the `world_minus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_minus(assigns) do ~H""" """ end @doc """ Renders the `world_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_off(assigns) do ~H""" """ end @doc """ Renders the `world_pause` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_pause(assigns) do ~H""" """ end @doc """ Renders the `world_pin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_pin(assigns) do ~H""" """ end @doc """ Renders the `world_plus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_plus(assigns) do ~H""" """ end @doc """ Renders the `world_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_question(assigns) do ~H""" """ end @doc """ Renders the `world_search` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_search(assigns) do ~H""" """ end @doc """ Renders the `world_share` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_share(assigns) do ~H""" """ end @doc """ Renders the `world_star` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_star(assigns) do ~H""" """ end @doc """ Renders the `world_up` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_up(assigns) do ~H""" """ end @doc """ Renders the `world_upload` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_upload(assigns) do ~H""" """ end @doc """ Renders the `world_www` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_www(assigns) do ~H""" """ end @doc """ Renders the `world_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world_x(assigns) do ~H""" """ end @doc """ Renders the `world` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def world(assigns) do ~H""" """ end @doc """ Renders the `wrecking_ball` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def wrecking_ball(assigns) do ~H""" """ end @doc """ Renders the `writing_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def writing_off(assigns) do ~H""" """ end @doc """ Renders the `writing_sign_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def writing_sign_off(assigns) do ~H""" """ end @doc """ Renders the `writing_sign` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def writing_sign(assigns) do ~H""" """ end @doc """ Renders the `writing` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def writing(assigns) do ~H""" """ end @doc """ Renders the `x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def x(assigns) do ~H""" """ end @doc """ Renders the `xbox_a` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def xbox_a(assigns) do ~H""" """ end @doc """ Renders the `xbox_b` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def xbox_b(assigns) do ~H""" """ end @doc """ Renders the `xbox_x` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def xbox_x(assigns) do ~H""" """ end @doc """ Renders the `xbox_y` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def xbox_y(assigns) do ~H""" """ end @doc """ Renders the `xd` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def xd(assigns) do ~H""" """ end @doc """ Renders the `xxx` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def xxx(assigns) do ~H""" """ end @doc """ Renders the `yin_yang_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def yin_yang_filled(assigns) do ~H""" """ end @doc """ Renders the `yin_yang` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def yin_yang(assigns) do ~H""" """ end @doc """ Renders the `yoga` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def yoga(assigns) do ~H""" """ end @doc """ Renders the `zeppelin_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zeppelin_off(assigns) do ~H""" """ end @doc """ Renders the `zeppelin` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zeppelin(assigns) do ~H""" """ end @doc """ Renders the `zip` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zip(assigns) do ~H""" """ end @doc """ Renders the `zodiac_aquarius` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_aquarius(assigns) do ~H""" """ end @doc """ Renders the `zodiac_aries` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_aries(assigns) do ~H""" """ end @doc """ Renders the `zodiac_cancer` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_cancer(assigns) do ~H""" """ end @doc """ Renders the `zodiac_capricorn` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_capricorn(assigns) do ~H""" """ end @doc """ Renders the `zodiac_gemini` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_gemini(assigns) do ~H""" """ end @doc """ Renders the `zodiac_leo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_leo(assigns) do ~H""" """ end @doc """ Renders the `zodiac_libra` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_libra(assigns) do ~H""" """ end @doc """ Renders the `zodiac_pisces` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_pisces(assigns) do ~H""" """ end @doc """ Renders the `zodiac_sagittarius` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_sagittarius(assigns) do ~H""" """ end @doc """ Renders the `zodiac_scorpio` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_scorpio(assigns) do ~H""" """ end @doc """ Renders the `zodiac_taurus` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_taurus(assigns) do ~H""" """ end @doc """ Renders the `zodiac_virgo` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zodiac_virgo(assigns) do ~H""" """ end @doc """ Renders the `zoom_cancel` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_cancel(assigns) do ~H""" """ end @doc """ Renders the `zoom_check_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_check_filled(assigns) do ~H""" """ end @doc """ Renders the `zoom_check` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_check(assigns) do ~H""" """ end @doc """ Renders the `zoom_code` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_code(assigns) do ~H""" """ end @doc """ Renders the `zoom_exclamation` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_exclamation(assigns) do ~H""" """ end @doc """ Renders the `zoom_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_filled(assigns) do ~H""" """ end @doc """ Renders the `zoom_in_area_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_in_area_filled(assigns) do ~H""" """ end @doc """ Renders the `zoom_in_area` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_in_area(assigns) do ~H""" """ end @doc """ Renders the `zoom_in_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_in_filled(assigns) do ~H""" """ end @doc """ Renders the `zoom_in` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_in(assigns) do ~H""" """ end @doc """ Renders the `zoom_money` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_money(assigns) do ~H""" """ end @doc """ Renders the `zoom_out_area` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_out_area(assigns) do ~H""" """ end @doc """ Renders the `zoom_out_filled` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_out_filled(assigns) do ~H""" """ end @doc """ Renders the `zoom_out` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_out(assigns) do ~H""" """ end @doc """ Renders the `zoom_pan` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_pan(assigns) do ~H""" """ end @doc """ Renders the `zoom_question` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_question(assigns) do ~H""" """ end @doc """ Renders the `zoom_replace` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_replace(assigns) do ~H""" """ end @doc """ Renders the `zoom_reset` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zoom_reset(assigns) do ~H""" """ end @doc """ Renders the `zzz_off` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zzz_off(assigns) do ~H""" """ end @doc """ Renders the `zzz` icon. You may pass arbitrary HTML attributes to the component. ## Examples """ attr :rest, :global, doc: "arbitrary HTML attributes for the svg container", default: @default_html_attrs def zzz(assigns) do ~H""" """ end end