defmodule MaterialIcons do @moduledoc """ Provides precompiled icons from [material icons v0.14.15](https://fonts.google.com/icons). ## Usage Material icons come in five styles: filled, outlined, round, sharp and two-tone. By default, the icon components will use the filled style, but the style attribute may be passed to select styling, for example: ```heex ``` You can also pass the size and class attributes to the components: ```heex ``` > NOTE: Some icons from the material collection start with numbers. > Because elixir doesn't allow function names that start with a number, > we always add an underscore to the start of those component names. > So, if you want to use an icon called `4k`, you should actually call it as `_4k`. """ use Phoenix.Component attr :style, :string, values: ~w(filled outlined round sharp two-tone), default: "filled" attr :size, :integer, default: 24 attr :paths, :map, required: true attr :class, :string, default: nil defp svg(assigns) do # TODO: Check why Phoenix is not throwing when attr has 'values' option and you pass invalid values. # TODO: Check why Phoenix is not throwing when attr has 'required' option and you don't pass values. content = case assigns.paths[assigns.style] do nil -> raise RuntimeError, "icon does not have the following style: #{assigns.style}" svg_path -> {:safe, svg_path} end assigns = assign(assigns, :content, content) ~H""" <%= @content %> """ end @doc """ Renders the `signal_cellular_alt_1_bar` icon. """ def signal_cellular_alt_1_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `error` icon. """ def error(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_video` icon. """ def switch_video(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_luggage` icon. """ def no_luggage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_photography` icon. """ def no_photography(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stay_current_landscape` icon. """ def stay_current_landscape(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo` icon. """ def photo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pix` icon. """ def pix(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `system_security_update` icon. """ def system_security_update(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `radio_button_checked` icon. """ def radio_button_checked(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_color_text` icon. """ def format_color_text(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `confirmation_number` icon. """ def confirmation_number(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `double_arrow` icon. """ def double_arrow(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_wifi_1_bar` icon. """ def network_wifi_1_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_end` icon. """ def call_end(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `location_off` icon. """ def location_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `umbrella` icon. """ def umbrella(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `select_all` icon. """ def select_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `iso` icon. """ def iso(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notifications_active` icon. """ def notifications_active(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `music_note` icon. """ def music_note(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pentagon` icon. """ def pentagon(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_auto` icon. """ def wb_auto(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_zip` icon. """ def folder_zip(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `print` icon. """ def print(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `voice_over_off` icon. """ def voice_over_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_19mp` icon. """ def _19mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_off` icon. """ def signal_cellular_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flash_auto` icon. """ def flash_auto(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `healing` icon. """ def healing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `space_bar` icon. """ def space_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `power_off` icon. """ def power_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks_one` icon. """ def looks_one(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_fix_off` icon. """ def auto_fix_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sd` icon. """ def sd(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `energy_savings_leaf` icon. """ def energy_savings_leaf(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_input_component` icon. """ def settings_input_component(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `propane_tank` icon. """ def propane_tank(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `masks` icon. """ def masks(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dialpad` icon. """ def dialpad(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timer_10_select` icon. """ def timer_10_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `piano_off` icon. """ def piano_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call` icon. """ def call(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_soccer` icon. """ def sports_soccer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumbs_up_down` icon. """ def thumbs_up_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `commit` icon. """ def commit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `propane` icon. """ def propane(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mouse` icon. """ def mouse(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_9_plus` icon. """ def filter_9_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fork_left` icon. """ def fork_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `highlight_alt` icon. """ def highlight_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `design_services` icon. """ def design_services(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_martial_arts` icon. """ def sports_martial_arts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pin_invoke` icon. """ def pin_invoke(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `favorite_border` icon. """ def favorite_border(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_iphone` icon. """ def phone_iphone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notifications_paused` icon. """ def notifications_paused(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_golf` icon. """ def sports_golf(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `inventory_2` icon. """ def inventory_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `featured_video` icon. """ def featured_video(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `event_repeat` icon. """ def event_repeat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `baby_changing_station` icon. """ def baby_changing_station(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `traffic` icon. """ def traffic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_2_bar` icon. """ def wifi_2_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brush` icon. """ def brush(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_list_numbered` icon. """ def format_list_numbered(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_free` icon. """ def crop_free(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `density_medium` icon. """ def density_medium(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mobile_off` icon. """ def mobile_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airplane_ticket` icon. """ def airplane_ticket(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_overline` icon. """ def format_overline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_brightness` icon. """ def settings_brightness(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `feed` icon. """ def feed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_rotation_none` icon. """ def text_rotation_none(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `donut_large` icon. """ def donut_large(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_30fps` icon. """ def _30fps(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `task` icon. """ def task(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fullscreen_exit` icon. """ def fullscreen_exit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_inner` icon. """ def border_inner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hotel` icon. """ def hotel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `content_paste` icon. """ def content_paste(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `park` icon. """ def park(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `model_training` icon. """ def model_training(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_clear` icon. """ def format_clear(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_rotate` icon. """ def crop_rotate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `motion_photos_auto` icon. """ def motion_photos_auto(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `restore` icon. """ def restore(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flash_off` icon. """ def flash_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `history_edu` icon. """ def history_edu(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contact_emergency` icon. """ def contact_emergency(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `snowshoeing` icon. """ def snowshoeing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `run_circle` icon. """ def run_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `troubleshoot` icon. """ def troubleshoot(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_7mp` icon. """ def _7mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signpost` icon. """ def signpost(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_hide` icon. """ def keyboard_hide(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `work_off` icon. """ def work_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_backspace` icon. """ def keyboard_backspace(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_rupee` icon. """ def currency_rupee(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_5` icon. """ def face_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shopping_basket` icon. """ def shopping_basket(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `whatshot` icon. """ def whatshot(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_scan_wifi` icon. """ def perm_scan_wifi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shortcut` icon. """ def shortcut(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rotate_right` icon. """ def rotate_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_6` icon. """ def filter_6(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_remove_alt_1` icon. """ def person_remove_alt_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_indent_decrease` icon. """ def format_indent_decrease(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `motion_photos_pause` icon. """ def motion_photos_pause(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cached` icon. """ def cached(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `share` icon. """ def share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_present` icon. """ def file_present(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `workspaces` icon. """ def workspaces(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_outline` icon. """ def person_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `extension` icon. """ def extension(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `campaign` icon. """ def campaign(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `quickreply` icon. """ def quickreply(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_media` icon. """ def perm_media(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forum` icon. """ def forum(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `extension_off` icon. """ def extension_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `speed` icon. """ def speed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `private_connectivity` icon. """ def private_connectivity(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_2k_plus` icon. """ def _2k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sos` icon. """ def sos(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chevron_right` icon. """ def chevron_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_off_select` icon. """ def hdr_off_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airplay` icon. """ def airplay(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `security_update_good` icon. """ def security_update_good(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `scatter_plot` icon. """ def scatter_plot(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_connected_no_internet_4_bar` icon. """ def signal_cellular_connected_no_internet_4_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grid_goldenratio` icon. """ def grid_goldenratio(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_fix_normal` icon. """ def auto_fix_normal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `earbuds` icon. """ def earbuds(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `usb` icon. """ def usb(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `volume_off` icon. """ def volume_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `check` icon. """ def check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `book` icon. """ def book(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `satellite_alt` icon. """ def satellite_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `euro` icon. """ def euro(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assistant_direction` icon. """ def assistant_direction(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `web` icon. """ def web(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_forward_ios` icon. """ def arrow_forward_ios(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rectangle` icon. """ def rectangle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_phone` icon. """ def local_phone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_rotation_angledown` icon. """ def text_rotation_angledown(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `broken_image` icon. """ def broken_image(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `create` icon. """ def create(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `south_east` icon. """ def south_east(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screenshot_monitor` icon. """ def screenshot_monitor(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_60fps_select` icon. """ def _60fps_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_alt` icon. """ def filter_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pin_end` icon. """ def pin_end(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tram` icon. """ def tram(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `report_gmailerrorred` icon. """ def report_gmailerrorred(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_crash` icon. """ def no_crash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shower` icon. """ def shower(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_bike` icon. """ def electric_bike(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `door_back` icon. """ def door_back(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_split` icon. """ def vertical_split(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `help_outline` icon. """ def help_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bloodtype` icon. """ def bloodtype(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `anchor` icon. """ def anchor(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `health_and_safety` icon. """ def health_and_safety(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subtitles_off` icon. """ def subtitles_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tornado` icon. """ def tornado(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pan_tool_alt` icon. """ def pan_tool_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `front_hand` icon. """ def front_hand(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_photo_alternate` icon. """ def add_photo_alternate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_sync` icon. """ def cloud_sync(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `room` icon. """ def room(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_8k` icon. """ def _8k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sd_card` icon. """ def sd_card(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mediation` icon. """ def mediation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_align_top` icon. """ def vertical_align_top(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `zoom_out` icon. """ def zoom_out(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `monetization_on` icon. """ def monetization_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_accessibility` icon. """ def settings_accessibility(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_tilt_shift` icon. """ def filter_tilt_shift(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grid_off` icon. """ def grid_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wind_power` icon. """ def wind_power(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_statusbar_null` icon. """ def signal_wifi_statusbar_null(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `playlist_remove` icon. """ def playlist_remove(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stay_current_portrait` icon. """ def stay_current_portrait(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_objects` icon. """ def emoji_objects(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `downloading` icon. """ def downloading(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_right` icon. """ def arrow_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_encryption_gmailerrorred` icon. """ def no_encryption_gmailerrorred(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `voicemail` icon. """ def voicemail(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thermostat` icon. """ def thermostat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_disturb_off` icon. """ def do_disturb_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turn_slight_right` icon. """ def turn_slight_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turn_left` icon. """ def turn_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `playlist_add_check` icon. """ def playlist_add_check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pool` icon. """ def pool(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_missed` icon. """ def phone_missed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `align_horizontal_left` icon. """ def align_horizontal_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `browser_updated` icon. """ def browser_updated(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `recent_actors` icon. """ def recent_actors(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_for_work` icon. """ def play_for_work(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `label_important` icon. """ def label_important(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swap_vertical_circle` icon. """ def swap_vertical_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `circle_notifications` icon. """ def circle_notifications(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `location_on` icon. """ def location_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sensor_occupied` icon. """ def sensor_occupied(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `done_outline` icon. """ def done_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `account_balance_wallet` icon. """ def account_balance_wallet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `movie_filter` icon. """ def movie_filter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `delete_outline` icon. """ def delete_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_standby` icon. """ def mode_standby(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `app_shortcut` icon. """ def app_shortcut(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_protected_setup` icon. """ def wifi_protected_setup(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `interests` icon. """ def interests(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_vintage` icon. """ def filter_vintage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_remove` icon. """ def person_remove(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `online_prediction` icon. """ def online_prediction(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_3d_rotation` icon. """ def _3d_rotation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `navigation` icon. """ def navigation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hardware` icon. """ def hardware(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fiber_new` icon. """ def fiber_new(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vibration` icon. """ def vibration(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_off` icon. """ def folder_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `meeting_room` icon. """ def meeting_room(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_tab` icon. """ def keyboard_tab(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_transit_filled` icon. """ def directions_transit_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `south` icon. """ def south(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sentiment_satisfied_alt` icon. """ def sentiment_satisfied_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `volume_down` icon. """ def volume_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ad_units` icon. """ def ad_units(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assignment` icon. """ def assignment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_grocery_store` icon. """ def local_grocery_store(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_timeline` icon. """ def view_timeline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `snippet_folder` icon. """ def snippet_folder(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_9k_plus` icon. """ def _9k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumb_up_off_alt` icon. """ def thumb_up_off_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_shades` icon. """ def vertical_shades(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_horizontal` icon. """ def panorama_horizontal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `redo` icon. """ def redo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `build` icon. """ def build(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pause_circle_filled` icon. """ def pause_circle_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `poll` icon. """ def poll(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_circle_filled` icon. """ def play_circle_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_to_action` icon. """ def call_to_action(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `disc_full` icon. """ def disc_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_task` icon. """ def add_task(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `near_me_disabled` icon. """ def near_me_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shield` icon. """ def shield(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `party_mode` icon. """ def party_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `polymer` icon. """ def polymer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_kabaddi` icon. """ def sports_kabaddi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_car_filled` icon. """ def directions_car_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stadium` icon. """ def stadium(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_overscan` icon. """ def settings_overscan(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exposure` icon. """ def exposure(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `personal_video` icon. """ def personal_video(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `multiline_chart` icon. """ def multiline_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_hospital` icon. """ def local_hospital(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `delete` icon. """ def delete(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fireplace` icon. """ def fireplace(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `align_vertical_bottom` icon. """ def align_vertical_bottom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `qr_code` icon. """ def qr_code(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `font_download_off` icon. """ def font_download_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumb_down_off_alt` icon. """ def thumb_down_off_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `numbers` icon. """ def numbers(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_charging_full` icon. """ def battery_charging_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `earbuds_battery` icon. """ def earbuds_battery(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_home` icon. """ def add_home(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `donut_small` icon. """ def donut_small(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `open_with` icon. """ def open_with(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `location_disabled` icon. """ def location_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flutter_dash` icon. """ def flutter_dash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sync` icon. """ def sync(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dry_cleaning` icon. """ def dry_cleaning(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hourglass_full` icon. """ def hourglass_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `event_available` icon. """ def event_available(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `access_time_filled` icon. """ def access_time_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `paragliding` icon. """ def paragliding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `login` icon. """ def login(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `scuba_diving` icon. """ def scuba_diving(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `transgender` icon. """ def transgender(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contact_support` icon. """ def contact_support(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `payments` icon. """ def payments(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `laptop_mac` icon. """ def laptop_mac(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_paint` icon. """ def format_paint(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `backspace` icon. """ def backspace(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grass` icon. """ def grass(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `countertops` icon. """ def countertops(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `warehouse` icon. """ def warehouse(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_color` icon. """ def border_color(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `leak_add` icon. """ def leak_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `follow_the_signs` icon. """ def follow_the_signs(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `difference` icon. """ def difference(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_step` icon. """ def do_not_step(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `point_of_sale` icon. """ def point_of_sale(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `breakfast_dining` icon. """ def breakfast_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `content_paste_search` icon. """ def content_paste_search(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_week` icon. """ def view_week(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_off` icon. """ def hdr_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hide_source` icon. """ def hide_source(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `free_cancellation` icon. """ def free_cancellation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `king_bed` icon. """ def king_bed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cast_connected` icon. """ def cast_connected(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `laptop_chromebook` icon. """ def laptop_chromebook(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `zoom_out_map` icon. """ def zoom_out_map(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `highlight` icon. """ def highlight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `find_in_page` icon. """ def find_in_page(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `percent` icon. """ def percent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drive_file_move_rtl` icon. """ def drive_file_move_rtl(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `php` icon. """ def php(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `beach_access` icon. """ def beach_access(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fiber_dvr` icon. """ def fiber_dvr(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_2` icon. """ def filter_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `radio` icon. """ def radio(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dynamic_feed` icon. """ def dynamic_feed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_lira` icon. """ def currency_lira(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_chart_outlined` icon. """ def insert_chart_outlined(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `construction` icon. """ def construction(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gas_meter` icon. """ def gas_meter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hd` icon. """ def hd(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chat` icon. """ def chat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_column` icon. """ def view_column(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_railway` icon. """ def directions_railway(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lte_mobiledata` icon. """ def lte_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rice_bowl` icon. """ def rice_bowl(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_touch` icon. """ def do_not_touch(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_3` icon. """ def brightness_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_retouching_off` icon. """ def face_retouching_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phonelink_off` icon. """ def phonelink_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hourglass_bottom` icon. """ def hourglass_bottom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `north_west` icon. """ def north_west(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `house_siding` icon. """ def house_siding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `copy_all` icon. """ def copy_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `safety_divider` icon. """ def safety_divider(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_photosphere_select` icon. """ def panorama_photosphere_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_compact_alt` icon. """ def view_compact_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_disturb_alt` icon. """ def do_disturb_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tablet` icon. """ def tablet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flight` icon. """ def flight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_wide_angle_select` icon. """ def panorama_wide_angle_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_input_svideo` icon. """ def settings_input_svideo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_3` icon. """ def face_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_meter` icon. """ def electric_meter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bedtime` icon. """ def bedtime(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pending` icon. """ def pending(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `store` icon. """ def store(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `speaker_notes` icon. """ def speaker_notes(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_rotation_angleup` icon. """ def text_rotation_angleup(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star_border_purple500` icon. """ def star_border_purple500(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `published_with_changes` icon. """ def published_with_changes(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `group_remove` icon. """ def group_remove(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stacked_bar_chart` icon. """ def stacked_bar_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_check` icon. """ def network_check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `deselect` icon. """ def deselect(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `javascript` icon. """ def javascript(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `event_seat` icon. """ def event_seat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `waterfall_chart` icon. """ def waterfall_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bedtime_off` icon. """ def bedtime_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `start` icon. """ def start(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_police` icon. """ def local_police(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `alarm` icon. """ def alarm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rocket` icon. """ def rocket(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `polyline` icon. """ def polyline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `map` icon. """ def map(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_color_reset` icon. """ def format_color_reset(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blender` icon. """ def blender(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sync_alt` icon. """ def sync_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bus_alert` icon. """ def bus_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hls` icon. """ def hls(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fiber_manual_record` icon. """ def fiber_manual_record(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_from_queue` icon. """ def remove_from_queue(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `today` icon. """ def today(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vignette` icon. """ def vignette(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `align_vertical_top` icon. """ def align_vertical_top(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `android` icon. """ def android(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_stories` icon. """ def auto_stories(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mic_none` icon. """ def mic_none(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `copyright` icon. """ def copyright(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `restore_from_trash` icon. """ def restore_from_trash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `animation` icon. """ def animation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `move_up` icon. """ def move_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_kanban` icon. """ def view_kanban(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `boy` icon. """ def boy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `token` icon. """ def token(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_align_center` icon. """ def vertical_align_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `closed_caption_off` icon. """ def closed_caption_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mark_chat_read` icon. """ def mark_chat_read(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `last_page` icon. """ def last_page(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `save_alt` icon. """ def save_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `movie` icon. """ def movie(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `control_point` icon. """ def control_point(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turned_in_not` icon. """ def turned_in_not(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_cricket` icon. """ def sports_cricket(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bubble_chart` icon. """ def bubble_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `icecream` icon. """ def icecream(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shape_line` icon. """ def shape_line(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fort` icon. """ def fort(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_roll` icon. """ def camera_roll(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `install_desktop` icon. """ def install_desktop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `computer` icon. """ def computer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `expand` icon. """ def expand(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `done_all` icon. """ def done_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cancel_schedule_send` icon. """ def cancel_schedule_send(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `square_foot` icon. """ def square_foot(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `send_to_mobile` icon. """ def send_to_mobile(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notifications_none` icon. """ def notifications_none(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `r_mobiledata` icon. """ def r_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `villa` icon. """ def villa(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `waves` icon. """ def waves(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_5g` icon. """ def _5g(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bookmark_remove` icon. """ def bookmark_remove(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_mode` icon. """ def auto_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_cloudy` icon. """ def wb_cloudy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_input_composite` icon. """ def settings_input_composite(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `work_outline` icon. """ def work_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_center_focus` icon. """ def filter_center_focus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_list` icon. """ def view_list(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `access_alarms` icon. """ def access_alarms(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sentiment_dissatisfied` icon. """ def sentiment_dissatisfied(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_sim` icon. """ def no_sim(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `social_distance` icon. """ def social_distance(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timer_10` icon. """ def timer_10(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_high` icon. """ def brightness_high(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `close_fullscreen` icon. """ def close_fullscreen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_4_bar_lock` icon. """ def signal_wifi_4_bar_lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tablet_android` icon. """ def tablet_android(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contact_phone` icon. """ def contact_phone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forward_10` icon. """ def forward_10(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `new_releases` icon. """ def new_releases(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_std` icon. """ def battery_std(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_circle_outline` icon. """ def remove_circle_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `kayaking` icon. """ def kayaking(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bathroom` icon. """ def bathroom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `expand_less` icon. """ def expand_less(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_outer` icon. """ def border_outer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_left_alt` icon. """ def swipe_left_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_4` icon. """ def filter_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `record_voice_over` icon. """ def record_voice_over(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_disturb` icon. """ def do_disturb(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_4` icon. """ def brightness_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mic_external_on` icon. """ def mic_external_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `import_contacts` icon. """ def import_contacts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `picture_in_picture` icon. """ def picture_in_picture(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `table_chart` icon. """ def table_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `deck` icon. """ def deck(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `toggle_off` icon. """ def toggle_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `credit_card_off` icon. """ def credit_card_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_moderator` icon. """ def add_moderator(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mobiledata_off` icon. """ def mobiledata_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_5k` icon. """ def _5k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bluetooth_disabled` icon. """ def bluetooth_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tv` icon. """ def tv(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_double_arrow_right` icon. """ def keyboard_double_arrow_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `precision_manufacturing` icon. """ def precision_manufacturing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `recycling` icon. """ def recycling(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_top` icon. """ def border_top(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lte_plus_mobiledata` icon. """ def lte_plus_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_done` icon. """ def remove_done(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `monitor_heart` icon. """ def monitor_heart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `trending_down` icon. """ def trending_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gps_not_fixed` icon. """ def gps_not_fixed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_3mp` icon. """ def _3mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_parking` icon. """ def local_parking(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_vertical` icon. """ def border_vertical(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `loop` icon. """ def loop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `living` icon. """ def living(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ramp_right` icon. """ def ramp_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `multiple_stop` icon. """ def multiple_stop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `broadcast_on_home` icon. """ def broadcast_on_home(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `height` icon. """ def height(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_on_select` icon. """ def hdr_on_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `library_books` icon. """ def library_books(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_play` icon. """ def local_play(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `radio_button_unchecked` icon. """ def radio_button_unchecked(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `roller_shades` icon. """ def roller_shades(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `attachment` icon. """ def attachment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `checklist` icon. """ def checklist(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `psychology_alt` icon. """ def psychology_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `receipt` icon. """ def receipt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `deblur` icon. """ def deblur(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `description` icon. """ def description(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `power` icon. """ def power(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_enabled` icon. """ def phone_enabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_no_sim` icon. """ def signal_cellular_no_sim(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_0_bar` icon. """ def signal_wifi_0_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ring_volume` icon. """ def ring_volume(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_auto` icon. """ def hdr_auto(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `clean_hands` icon. """ def clean_hands(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `area_chart` icon. """ def area_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `email` icon. """ def email(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sentiment_very_dissatisfied` icon. """ def sentiment_very_dissatisfied(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nest_cam_wired_stand` icon. """ def nest_cam_wired_stand(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `headset_off` icon. """ def headset_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bungalow` icon. """ def bungalow(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `transfer_within_a_station` icon. """ def transfer_within_a_station(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chat_bubble_outline` icon. """ def chat_bubble_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_1` icon. """ def filter_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lens_blur` icon. """ def lens_blur(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `explore_off` icon. """ def explore_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_download_done` icon. """ def file_download_done(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `system_update_alt` icon. """ def system_update_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `domain` icon. """ def domain(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_10k` icon. """ def _10k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_line_spacing` icon. """ def format_line_spacing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `link` icon. """ def link(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gesture` icon. """ def gesture(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `snowmobile` icon. """ def snowmobile(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_boat` icon. """ def directions_boat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `redeem` icon. """ def redeem(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `scanner` icon. """ def scanner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shuffle_on` icon. """ def shuffle_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timer` icon. """ def timer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `paid` icon. """ def paid(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_mma` icon. """ def sports_mma(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `speaker` icon. """ def speaker(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `devices` icon. """ def devices(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_bold` icon. """ def format_bold(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `oil_barrel` icon. """ def oil_barrel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `first_page` icon. """ def first_page(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_15mp` icon. """ def _15mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `production_quantity_limits` icon. """ def production_quantity_limits(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nightlight` icon. """ def nightlight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `desktop_access_disabled` icon. """ def desktop_access_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `museum` icon. """ def museum(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sim_card_download` icon. """ def sim_card_download(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fax` icon. """ def fax(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `autofps_select` icon. """ def autofps_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_rear` icon. """ def camera_rear(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `near_me` icon. """ def near_me(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_download` icon. """ def cloud_download(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `more_horiz` icon. """ def more_horiz(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `logo_dev` icon. """ def logo_dev(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_food_beverage` icon. """ def emoji_food_beverage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_walk` icon. """ def directions_walk(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notification_add` icon. """ def notification_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `all_inbox` icon. """ def all_inbox(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flight_land` icon. """ def flight_land(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `coffee` icon. """ def coffee(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sms_failed` icon. """ def sms_failed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `style` icon. """ def style(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `next_week` icon. """ def next_week(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `score` icon. """ def score(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `woman` icon. """ def woman(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `car_crash` icon. """ def car_crash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_4_bar` icon. """ def battery_4_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_13mp` icon. """ def _13mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grain` icon. """ def grain(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `south_west` icon. """ def south_west(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_activity` icon. """ def local_activity(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tour` icon. """ def tour(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shop_2` icon. """ def shop_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_60fps` icon. """ def _60fps(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `app_registration` icon. """ def app_registration(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `u_turn_right` icon. """ def u_turn_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `calendar_view_week` icon. """ def calendar_view_week(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wrap_text` icon. """ def wrap_text(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_download_off` icon. """ def file_download_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `inbox` icon. """ def inbox(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_open` icon. """ def folder_open(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `diversity_3` icon. """ def diversity_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `diversity_2` icon. """ def diversity_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edgesensor_low` icon. """ def edgesensor_low(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_tethering` icon. """ def wifi_tethering(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `skip_previous` icon. """ def skip_previous(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_stroller` icon. """ def no_stroller(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_quote` icon. """ def format_quote(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `videogame_asset_off` icon. """ def videogame_asset_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `public` icon. """ def public(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smart_screen` icon. """ def smart_screen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_photo` icon. """ def insert_photo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_right` icon. """ def swipe_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `queue` icon. """ def queue(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swap_horizontal_circle` icon. """ def swap_horizontal_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `system_security_update_warning` icon. """ def system_security_update_warning(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_contact_calendar` icon. """ def perm_contact_calendar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_awesome_mosaic` icon. """ def auto_awesome_mosaic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fitbit` icon. """ def fitbit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `departure_board` icon. """ def departure_board(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `texture` icon. """ def texture(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_1k` icon. """ def _1k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `personal_injury` icon. """ def personal_injury(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_tethering_off` icon. """ def wifi_tethering_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `celebration` icon. """ def celebration(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blind` icon. """ def blind(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_all` icon. """ def border_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_share` icon. """ def screen_share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flashlight_on` icon. """ def flashlight_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `superscript` icon. """ def superscript(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sanitizer` icon. """ def sanitizer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_8` icon. """ def filter_8(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fitness_center` icon. """ def fitness_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_legroom_extra` icon. """ def airline_seat_legroom_extra(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_tethering_error` icon. """ def wifi_tethering_error(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_left` icon. """ def switch_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `casino` icon. """ def casino(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tablet_mac` icon. """ def tablet_mac(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_transit` icon. """ def directions_transit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sensors` icon. """ def sensors(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `more_time` icon. """ def more_time(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `open_in_full` icon. """ def open_in_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bed` icon. """ def bed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `money` icon. """ def money(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nature_people` icon. """ def nature_people(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bedroom_parent` icon. """ def bedroom_parent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mic_off` icon. """ def mic_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sick` icon. """ def sick(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bluetooth` icon. """ def bluetooth(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cabin` icon. """ def cabin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `group_add` icon. """ def group_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_android` icon. """ def phone_android(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_comment` icon. """ def insert_comment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `table_rows` icon. """ def table_rows(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_rotation_alt` icon. """ def screen_rotation_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subdirectory_arrow_left` icon. """ def subdirectory_arrow_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `task_alt` icon. """ def task_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fluorescent` icon. """ def fluorescent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `atm` icon. """ def atm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_power` icon. """ def settings_power(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_list_off` icon. """ def filter_list_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `skip_next` icon. """ def skip_next(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `manage_accounts` icon. """ def manage_accounts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `developer_board_off` icon. """ def developer_board_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_down` icon. """ def swipe_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_3_2` icon. """ def crop_3_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `moving` icon. """ def moving(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `open_in_new_off` icon. """ def open_in_new_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `balance` icon. """ def balance(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turn_sharp_right` icon. """ def turn_sharp_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_5mp` icon. """ def _5mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_4k` icon. """ def _4k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `get_app` icon. """ def get_app(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `width_normal` icon. """ def width_normal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `volume_up` icon. """ def volume_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `plus_one` icon. """ def plus_one(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `article` icon. """ def article(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_forward` icon. """ def arrow_forward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hail` icon. """ def hail(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_double_arrow_up` icon. """ def keyboard_double_arrow_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `beenhere` icon. """ def beenhere(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `replay` icon. """ def replay(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `security` icon. """ def security(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `child_friendly` icon. """ def child_friendly(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cast_for_education` icon. """ def cast_for_education(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `accessibility` icon. """ def accessibility(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `app_blocking` icon. """ def app_blocking(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sticky_note_2` icon. """ def sticky_note_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks_6` icon. """ def looks_6(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `generating_tokens` icon. """ def generating_tokens(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `trending_up` icon. """ def trending_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chat_bubble` icon. """ def chat_bubble(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notes` icon. """ def notes(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `list_alt` icon. """ def list_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_21mp` icon. """ def _21mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `closed_caption_disabled` icon. """ def closed_caption_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `real_estate_agent` icon. """ def real_estate_agent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hub` icon. """ def hub(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `reorder` icon. """ def reorder(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_12mp` icon. """ def _12mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `error_outline` icon. """ def error_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_cafe` icon. """ def local_cafe(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mp` icon. """ def mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumb_down` icon. """ def thumb_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `kebab_dining` icon. """ def kebab_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_shipping` icon. """ def local_shipping(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bolt` icon. """ def bolt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mail_lock` icon. """ def mail_lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `transcribe` icon. """ def transcribe(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `set_meal` icon. """ def set_meal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `handyman` icon. """ def handyman(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_edit` icon. """ def mode_edit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sentiment_neutral` icon. """ def sentiment_neutral(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cake` icon. """ def cake(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_alt_off` icon. """ def filter_alt_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `transit_enterexit` icon. """ def transit_enterexit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `not_started` icon. """ def not_started(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `attach_money` icon. """ def attach_money(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `videocam_off` icon. """ def videocam_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pageview` icon. """ def pageview(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `upload` icon. """ def upload(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stop` icon. """ def stop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `system_security_update_good` icon. """ def system_security_update_good(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_stream` icon. """ def view_stream(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `power_input` icon. """ def power_input(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `business` icon. """ def business(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `groups_3` icon. """ def groups_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grid_4x4` icon. """ def grid_4x4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_identity` icon. """ def perm_identity(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_1_bar` icon. """ def wifi_1_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_return` icon. """ def keyboard_return(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `av_timer` icon. """ def av_timer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `reduce_capacity` icon. """ def reduce_capacity(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `movie_creation` icon. """ def movie_creation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `workspace_premium` icon. """ def workspace_premium(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `castle` icon. """ def castle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timelapse` icon. """ def timelapse(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_hdr` icon. """ def filter_hdr(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `connect_without_contact` icon. """ def connect_without_contact(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_b_and_w` icon. """ def filter_b_and_w(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `money_off` icon. """ def money_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `open_in_browser` icon. """ def open_in_browser(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_copy` icon. """ def folder_copy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `price_change` icon. """ def price_change(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blur_linear` icon. """ def blur_linear(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hls_off` icon. """ def hls_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `discount` icon. """ def discount(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_access_shortcut` icon. """ def switch_access_shortcut(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `house` icon. """ def house(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pregnant_woman` icon. """ def pregnant_woman(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `print_disabled` icon. """ def print_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `library_add_check` icon. """ def library_add_check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `segment` icon. """ def segment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forward` icon. """ def forward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_lock_rotation` icon. """ def screen_lock_rotation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `aspect_ratio` icon. """ def aspect_ratio(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vaping_rooms` icon. """ def vaping_rooms(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hvac` icon. """ def hvac(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `price_check` icon. """ def price_check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_made` icon. """ def call_made(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `book_online` icon. """ def book_online(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `download` icon. """ def download(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `playlist_add_circle` icon. """ def playlist_add_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smoking_rooms` icon. """ def smoking_rooms(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_2_bar` icon. """ def battery_2_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_shade` icon. """ def wb_shade(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_wifi_2_bar` icon. """ def network_wifi_2_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rotate_90_degrees_ccw` icon. """ def rotate_90_degrees_ccw(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `developer_mode` icon. """ def developer_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flight_class` icon. """ def flight_class(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `not_accessible` icon. """ def not_accessible(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_shared` icon. """ def folder_shared(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `garage` icon. """ def garage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fiber_smart_record` icon. """ def fiber_smart_record(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forest` icon. """ def forest(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_input_hdmi` icon. """ def settings_input_hdmi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_3_bar` icon. """ def battery_3_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_medium` icon. """ def brightness_medium(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `headset_mic` icon. """ def headset_mic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stacked_line_chart` icon. """ def stacked_line_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shop_two` icon. """ def shop_two(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `roller_shades_closed` icon. """ def roller_shades_closed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `co2` icon. """ def co2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `catching_pokemon` icon. """ def catching_pokemon(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_handball` icon. """ def sports_handball(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_outward` icon. """ def arrow_outward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `content_paste_go` icon. """ def content_paste_go(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tty` icon. """ def tty(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `apps_outage` icon. """ def apps_outage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `code_off` icon. """ def code_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `toys` icon. """ def toys(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `key_off` icon. """ def key_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `monitor` icon. """ def monitor(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_taxi` icon. """ def local_taxi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `router` icon. """ def router(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `volume_mute` icon. """ def volume_mute(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_baseball` icon. """ def sports_baseball(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_data_setting` icon. """ def perm_data_setting(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `search` icon. """ def search(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit` icon. """ def edit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `people` icon. """ def people(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `browser_not_supported` icon. """ def browser_not_supported(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_phone_msg` icon. """ def perm_phone_msg(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `outlet` icon. """ def outlet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unfold_more` icon. """ def unfold_more(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bedroom_baby` icon. """ def bedroom_baby(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `man_4` icon. """ def man_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `home` icon. """ def home(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_shopping_cart` icon. """ def add_shopping_cart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `east` icon. """ def east(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `delete_forever` icon. """ def delete_forever(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wc` icon. """ def wc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_bike` icon. """ def directions_bike(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `batch_prediction` icon. """ def batch_prediction(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `credit_card` icon. """ def credit_card(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `door_sliding` icon. """ def door_sliding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mms` icon. """ def mms(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unpublished` icon. """ def unpublished(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_vertical_select` icon. """ def panorama_vertical_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_underlined` icon. """ def format_underlined(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `soup_kitchen` icon. """ def soup_kitchen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_album` icon. """ def photo_album(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `curtains` icon. """ def curtains(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_saver_off` icon. """ def data_saver_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ballot` icon. """ def ballot(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nordic_walking` icon. """ def nordic_walking(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `psychology` icon. """ def psychology(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sensor_window` icon. """ def sensor_window(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_align_left` icon. """ def format_align_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard` icon. """ def keyboard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timeline` icon. """ def timeline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `adb` icon. """ def adb(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `access_time` icon. """ def access_time(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wysiwyg` icon. """ def wysiwyg(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_auto` icon. """ def brightness_auto(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dataset` icon. """ def dataset(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_card` icon. """ def add_card(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dvr` icon. """ def dvr(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_call` icon. """ def video_call(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `support` icon. """ def support(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `corporate_fare` icon. """ def corporate_fare(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flip_camera_android` icon. """ def flip_camera_android(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_360` icon. """ def _360(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sentiment_very_satisfied` icon. """ def sentiment_very_satisfied(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `group_off` icon. """ def group_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `medication` icon. """ def medication(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `h_mobiledata` icon. """ def h_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pause_circle` icon. """ def pause_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_disturb` icon. """ def do_not_disturb(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rotate_left` icon. """ def rotate_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flood` icon. """ def flood(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vpn_key_off` icon. """ def vpn_key_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_download` icon. """ def file_download(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fast_rewind` icon. """ def fast_rewind(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_pin` icon. """ def person_pin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_legroom_reduced` icon. """ def airline_seat_legroom_reduced(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gps_fixed` icon. """ def gps_fixed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `web_stories` icon. """ def web_stories(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_camera_back` icon. """ def video_camera_back(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sync_problem` icon. """ def sync_problem(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_calling` icon. """ def wifi_calling(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `moped` icon. """ def moped(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fast_forward` icon. """ def fast_forward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_3k` icon. """ def _3k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `change_circle` icon. """ def change_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `playlist_add_check_circle` icon. """ def playlist_add_check_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `send_and_archive` icon. """ def send_and_archive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sms` icon. """ def sms(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `align_horizontal_center` icon. """ def align_horizontal_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `missed_video_call` icon. """ def missed_video_call(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `replay_10` icon. """ def replay_10(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_rickshaw` icon. """ def electric_rickshaw(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `check_box_outline_blank` icon. """ def check_box_outline_blank(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mosque` icon. """ def mosque(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `close` icon. """ def close(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_library` icon. """ def local_library(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `yard` icon. """ def yard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drive_file_rename_outline` icon. """ def drive_file_rename_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_arrow_right` icon. """ def keyboard_arrow_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `videogame_asset` icon. """ def videogame_asset(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hearing` icon. """ def hearing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `queue_music` icon. """ def queue_music(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gif` icon. """ def gif(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `theaters` icon. """ def theaters(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cast` icon. """ def cast(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `art_track` icon. """ def art_track(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_fish_eye` icon. """ def panorama_fish_eye(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `work_history` icon. """ def work_history(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_location` icon. """ def edit_location(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_calling_3` icon. """ def wifi_calling_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `draw` icon. """ def draw(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_comment` icon. """ def add_comment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_incandescent` icon. """ def wb_incandescent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blur_on` icon. """ def blur_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_object` icon. """ def data_object(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_location_alt` icon. """ def add_location_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_rotate_vertical` icon. """ def text_rotate_vertical(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_vertical` icon. """ def panorama_vertical(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumb_down_alt` icon. """ def thumb_down_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `payment` icon. """ def payment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bento` icon. """ def bento(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_circle_outline` icon. """ def play_circle_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chalet` icon. """ def chalet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_2` icon. """ def person_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_back_ios` icon. """ def arrow_back_ios(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_circle` icon. """ def remove_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_lock_portrait` icon. """ def screen_lock_portrait(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_drop_down` icon. """ def arrow_drop_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `update` icon. """ def update(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `accessible` icon. """ def accessible(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cookie` icon. """ def cookie(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `music_off` icon. """ def music_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gradient` icon. """ def gradient(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ios_share` icon. """ def ios_share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `audio_file` icon. """ def audio_file(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `monitor_weight` icon. """ def monitor_weight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_horizontal_select` icon. """ def panorama_horizontal_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tune` icon. """ def tune(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `input` icon. """ def input(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `devices_fold` icon. """ def devices_fold(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `equalizer` icon. """ def equalizer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `supervisor_account` icon. """ def supervisor_account(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_horizontal` icon. """ def border_horizontal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_strong` icon. """ def hdr_strong(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rocket_launch` icon. """ def rocket_launch(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_graph` icon. """ def auto_graph(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_connected_no_internet_0_bar` icon. """ def signal_cellular_connected_no_internet_0_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `privacy_tip` icon. """ def privacy_tip(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_iridescent` icon. """ def wb_iridescent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `water` icon. """ def water(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_sunny` icon. """ def wb_sunny(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `how_to_reg` icon. """ def how_to_reg(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `watch_off` icon. """ def watch_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `light` icon. """ def light(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airplanemode_active` icon. """ def airplanemode_active(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `verified_user` icon. """ def verified_user(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera` icon. """ def camera(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `invert_colors_off` icon. """ def invert_colors_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `event_busy` icon. """ def event_busy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `business_center` icon. """ def business_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `search_off` icon. """ def search_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `storefront` icon. """ def storefront(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `collections_bookmark` icon. """ def collections_bookmark(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_list_bulleted` icon. """ def format_list_bulleted(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `offline_bolt` icon. """ def offline_bolt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dataset_linked` icon. """ def dataset_linked(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_missed` icon. """ def call_missed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `visibility_off` icon. """ def visibility_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `favorite` icon. """ def favorite(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drive_eta` icon. """ def drive_eta(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_page_break` icon. """ def insert_page_break(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `build_circle` icon. """ def build_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `expand_circle_down` icon. """ def expand_circle_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `self_improvement` icon. """ def self_improvement(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hourglass_top` icon. """ def hourglass_top(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mail_outline` icon. """ def mail_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `table_bar` icon. """ def table_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `media_bluetooth_off` icon. """ def media_bluetooth_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smart_display` icon. """ def smart_display(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_volleyball` icon. """ def sports_volleyball(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_right` icon. """ def border_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_gas_station` icon. """ def local_gas_station(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_shades_closed` icon. """ def vertical_shades_closed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_off` icon. """ def person_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `attach_email` icon. """ def attach_email(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vpn_lock` icon. """ def vpn_lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unarchive` icon. """ def unarchive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `query_builder` icon. """ def query_builder(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lan` icon. """ def lan(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `control_camera` icon. """ def control_camera(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pedal_bike` icon. """ def pedal_bike(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe` icon. """ def swipe(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_left` icon. """ def border_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cable` icon. """ def cable(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `closed_caption` icon. """ def closed_caption(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `desktop_windows` icon. """ def desktop_windows(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_rugby` icon. """ def sports_rugby(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `two_wheeler` icon. """ def two_wheeler(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `comment` icon. """ def comment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `connected_tv` icon. """ def connected_tv(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `density_small` icon. """ def density_small(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_downward` icon. """ def arrow_downward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_retouching_natural` icon. """ def face_retouching_natural(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `reviews` icon. """ def reviews(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_2mp` icon. """ def _2mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `portrait` icon. """ def portrait(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tsunami` icon. """ def tsunami(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pattern` icon. """ def pattern(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phonelink` icon. """ def phonelink(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_frames` icon. """ def filter_frames(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tag` icon. """ def tag(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `theater_comedy` icon. """ def theater_comedy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `satellite` icon. """ def satellite(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `landscape` icon. """ def landscape(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `feedback` icon. """ def feedback(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `align_vertical_center` icon. """ def align_vertical_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forward_30` icon. """ def forward_30(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_distribute` icon. """ def vertical_distribute(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `history_toggle_off` icon. """ def history_toggle_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_fix_high` icon. """ def auto_fix_high(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `travel_explore` icon. """ def travel_explore(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `offline_share` icon. """ def offline_share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_alert` icon. """ def battery_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_3p` icon. """ def _3p(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_paused` icon. """ def phone_paused(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `indeterminate_check_box` icon. """ def indeterminate_check_box(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `g_mobiledata` icon. """ def g_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lunch_dining` icon. """ def lunch_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_channel` icon. """ def wifi_channel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `incomplete_circle` icon. """ def incomplete_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stay_primary_landscape` icon. """ def stay_primary_landscape(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `woman_2` icon. """ def woman_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lyrics` icon. """ def lyrics(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sim_card_alert` icon. """ def sim_card_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `coronavirus` icon. """ def coronavirus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode` icon. """ def mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_off` icon. """ def edit_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_quilt` icon. """ def view_quilt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `device_thermostat` icon. """ def device_thermostat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `navigate_before` icon. """ def navigate_before(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bedroom_child` icon. """ def bedroom_child(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `content_copy` icon. """ def content_copy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cases` icon. """ def cases(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `more_vert` icon. """ def more_vert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_lesson` icon. """ def play_lesson(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_weak` icon. """ def hdr_weak(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_bus` icon. """ def directions_bus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_food` icon. """ def no_food(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `raw_on` icon. """ def raw_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_16mp` icon. """ def _16mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `headphones` icon. """ def headphones(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_car_wash` icon. """ def local_car_wash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tap_and_play` icon. """ def tap_and_play(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_run` icon. """ def directions_run(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_null` icon. """ def signal_cellular_null(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dns` icon. """ def dns(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `restart_alt` icon. """ def restart_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `maps_home_work` icon. """ def maps_home_work(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bookmark_border` icon. """ def bookmark_border(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_ruble` icon. """ def currency_ruble(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dashboard` icon. """ def dashboard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_indoor` icon. """ def camera_indoor(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phonelink_erase` icon. """ def phonelink_erase(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `playlist_play` icon. """ def playlist_play(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `schedule_send` icon. """ def schedule_send(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `explicit` icon. """ def explicit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `strikethrough_s` icon. """ def strikethrough_s(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `move_to_inbox` icon. """ def move_to_inbox(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `details` icon. """ def details(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `storm` icon. """ def storm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `device_unknown` icon. """ def device_unknown(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brunch_dining` icon. """ def brunch_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `upload_file` icon. """ def upload_file(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grading` icon. """ def grading(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `my_location` icon. """ def my_location(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `account_tree` icon. """ def account_tree(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_circle` icon. """ def cloud_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_shopping_cart` icon. """ def remove_shopping_cart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_5_bar` icon. """ def battery_5_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `terrain` icon. """ def terrain(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cell_tower` icon. """ def cell_tower(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mark_chat_unread` icon. """ def mark_chat_unread(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `account_balance` icon. """ def account_balance(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drafts` icon. """ def drafts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `volunteer_activism` icon. """ def volunteer_activism(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `document_scanner` icon. """ def document_scanner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hiking` icon. """ def hiking(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `domain_add` icon. """ def domain_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `topic` icon. """ def topic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone` icon. """ def phone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_connected_no_internet_4` icon. """ def signal_wifi_connected_no_internet_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assignment_turned_in` icon. """ def assignment_turned_in(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_low` icon. """ def brightness_low(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `visibility` icon. """ def visibility(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contact_page` icon. """ def contact_page(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sentiment_satisfied` icon. """ def sentiment_satisfied(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `verified` icon. """ def verified(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `reply_all` icon. """ def reply_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `developer_board` icon. """ def developer_board(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nearby_error` icon. """ def nearby_error(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sync_lock` icon. """ def sync_lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `diamond` icon. """ def diamond(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_textdirection_l_to_r` icon. """ def format_textdirection_l_to_r(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `library_music` icon. """ def library_music(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_align_justify` icon. """ def format_align_justify(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shop` icon. """ def shop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `euro_symbol` icon. """ def euro_symbol(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assignment_ind` icon. """ def assignment_ind(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `align_horizontal_right` icon. """ def align_horizontal_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `integration_instructions` icon. """ def integration_instructions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sync_disabled` icon. """ def sync_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `try` icon. """ def try(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hexagon` icon. """ def hexagon(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_list` icon. """ def filter_list(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_on` icon. """ def hdr_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_right` icon. """ def switch_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chevron_left` icon. """ def chevron_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `terminal` icon. """ def terminal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `restaurant_menu` icon. """ def restaurant_menu(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `linked_camera` icon. """ def linked_camera(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_left` icon. """ def swipe_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `connecting_airports` icon. """ def connecting_airports(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thermostat_auto` icon. """ def thermostat_auto(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `where_to_vote` icon. """ def where_to_vote(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nights_stay` icon. """ def nights_stay(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nearby_off` icon. """ def nearby_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ramen_dining` icon. """ def ramen_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `usb_off` icon. """ def usb_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `water_drop` icon. """ def water_drop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama` icon. """ def panorama(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `library_add` icon. """ def library_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `laptop_windows` icon. """ def laptop_windows(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `roundabout_left` icon. """ def roundabout_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `route` icon. """ def route(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `location_city` icon. """ def location_city(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crib` icon. """ def crib(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `medical_information` icon. """ def medical_information(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_circle_up` icon. """ def arrow_circle_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `download_done` icon. """ def download_done(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subscriptions` icon. """ def subscriptions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_ethernet` icon. """ def settings_ethernet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `landslide` icon. """ def landslide(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_missed_outgoing` icon. """ def call_missed_outgoing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `leak_remove` icon. """ def leak_remove(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `offline_pin` icon. """ def offline_pin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_clear` icon. """ def border_clear(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions` icon. """ def directions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_exploration` icon. """ def data_exploration(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings` icon. """ def settings(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mail` icon. """ def mail(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `money_off_csred` icon. """ def money_off_csred(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_yuan` icon. """ def currency_yuan(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `compost` icon. """ def compost(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_red_eye` icon. """ def remove_red_eye(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `short_text` icon. """ def short_text(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screenshot` icon. """ def screenshot(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turn_sharp_left` icon. """ def turn_sharp_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `room_service` icon. """ def room_service(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `line_weight` icon. """ def line_weight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `schema` icon. """ def schema(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `control_point_duplicate` icon. """ def control_point_duplicate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_7` icon. """ def filter_7(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_drinks` icon. """ def no_drinks(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_right_alt` icon. """ def swipe_right_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `web_asset` icon. """ def web_asset(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `waving_hand` icon. """ def waving_hand(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_arrow` icon. """ def play_arrow(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wallet` icon. """ def wallet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `reset_tv` icon. """ def reset_tv(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stay_primary_portrait` icon. """ def stay_primary_portrait(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_bluetooth` icon. """ def settings_bluetooth(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_3g_mobiledata` icon. """ def _3g_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nightlight_round` icon. """ def nightlight_round(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `read_more` icon. """ def read_more(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `curtains_closed` icon. """ def curtains_closed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hourglass_disabled` icon. """ def hourglass_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `compare_arrows` icon. """ def compare_arrows(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_search_desktop` icon. """ def screen_search_desktop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_people` icon. """ def emoji_people(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `color_lens` icon. """ def color_lens(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lock_person` icon. """ def lock_person(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `leaderboard` icon. """ def leaderboard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_subway` icon. """ def directions_subway(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_18_up_rating` icon. """ def _18_up_rating(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_4` icon. """ def person_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mark_as_unread` icon. """ def mark_as_unread(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_night` icon. """ def mode_night(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks_two` icon. """ def looks_two(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flashlight_off` icon. """ def flashlight_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `circle` icon. """ def circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turn_slight_left` icon. """ def turn_slight_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `elevator` icon. """ def elevator(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_recline_extra` icon. """ def airline_seat_recline_extra(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `audiotrack` icon. """ def audiotrack(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `room_preferences` icon. """ def room_preferences(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_camera_mic` icon. """ def perm_camera_mic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_disturb_on` icon. """ def do_not_disturb_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_4mp` icon. """ def _4mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `desk` icon. """ def desk(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `expand_more` icon. """ def expand_more(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pie_chart_outline` icon. """ def pie_chart_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `analytics` icon. """ def analytics(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `free_breakfast` icon. """ def free_breakfast(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `female` icon. """ def female(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_strikethrough` icon. """ def format_strikethrough(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `checkroom` icon. """ def checkroom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shopping_cart` icon. """ def shopping_cart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_hotel` icon. """ def local_hotel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_off` icon. """ def wifi_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `groups` icon. """ def groups(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `live_help` icon. """ def live_help(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wheelchair_pickup` icon. """ def wheelchair_pickup(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_printshop` icon. """ def local_printshop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `track_changes` icon. """ def track_changes(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pending_actions` icon. """ def pending_actions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_4g_mobiledata` icon. """ def _4g_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `manage_search` icon. """ def manage_search(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumb_up_alt` icon. """ def thumb_up_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tapas` icon. """ def tapas(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flatware` icon. """ def flatware(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emergency` icon. """ def emergency(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `linear_scale` icon. """ def linear_scale(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `disabled_visible` icon. """ def disabled_visible(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wrong_location` icon. """ def wrong_location(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_find` icon. """ def wifi_find(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_a_photo` icon. """ def add_a_photo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `girl` icon. """ def girl(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `people_alt` icon. """ def people_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `comments_disabled` icon. """ def comments_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `commute` icon. """ def commute(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `heat_pump` icon. """ def heat_pump(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_0_bar` icon. """ def signal_cellular_0_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `skateboarding` icon. """ def skateboarding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wash` icon. """ def wash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_cozy` icon. """ def view_cozy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assist_walker` icon. """ def assist_walker(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `surfing` icon. """ def surfing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remember_me` icon. """ def remember_me(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_outdoor` icon. """ def camera_outdoor(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star_purple500` icon. """ def star_purple500(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_up` icon. """ def swipe_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_agenda` icon. """ def view_agenda(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks` icon. """ def looks(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blur_off` icon. """ def blur_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mark_email_unread` icon. """ def mark_email_unread(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sledding` icon. """ def sledding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smart_toy` icon. """ def smart_toy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `loupe` icon. """ def loupe(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_1k_plus` icon. """ def _1k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `done` icon. """ def done(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_saver` icon. """ def battery_saver(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flaky` icon. """ def flaky(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `spatial_audio_off` icon. """ def spatial_audio_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `speaker_group` icon. """ def speaker_group(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airport_shuttle` icon. """ def airport_shuttle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_24mp` icon. """ def _24mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `menu` icon. """ def menu(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `restaurant` icon. """ def restaurant(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_double_arrow_down` icon. """ def keyboard_double_arrow_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `eject` icon. """ def eject(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `layers` icon. """ def layers(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks_4` icon. """ def looks_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_circle` icon. """ def play_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `upcoming` icon. """ def upcoming(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nature` icon. """ def nature(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notification_important` icon. """ def notification_important(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_add_alt` icon. """ def person_add_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ac_unit` icon. """ def ac_unit(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hot_tub` icon. """ def hot_tub(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `picture_as_pdf` icon. """ def picture_as_pdf(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `horizontal_distribute` icon. """ def horizontal_distribute(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shield_moon` icon. """ def shield_moon(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_disturb_on` icon. """ def do_disturb_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_label` icon. """ def video_label(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_nodata` icon. """ def signal_cellular_nodata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `macro_off` icon. """ def macro_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fullscreen` icon. """ def fullscreen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ondemand_video` icon. """ def ondemand_video(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_carousel` icon. """ def view_carousel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `raw_off` icon. """ def raw_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insights` icon. """ def insights(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `all_out` icon. """ def all_out(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_array` icon. """ def view_array(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_symbols` icon. """ def emoji_symbols(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `streetview` icon. """ def streetview(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pin` icon. """ def pin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `send` icon. """ def send(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assessment` icon. """ def assessment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face` icon. """ def face(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_4k_plus` icon. """ def _4k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_comfy_alt` icon. """ def view_comfy_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contact_mail` icon. """ def contact_mail(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `high_quality` icon. """ def high_quality(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `accessible_forward` icon. """ def accessible_forward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `code` icon. """ def code(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_scooter` icon. """ def electric_scooter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_indent_increase` icon. """ def format_indent_increase(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subject` icon. """ def subject(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `time_to_leave` icon. """ def time_to_leave(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thunderstorm` icon. """ def thunderstorm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `replay_5` icon. """ def replay_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `roller_skating` icon. """ def roller_skating(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_drive_file` icon. """ def insert_drive_file(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sd_card_alert` icon. """ def sd_card_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `change_history` icon. """ def change_history(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `car_repair` icon. """ def car_repair(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fit_screen` icon. """ def fit_screen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_add` icon. """ def person_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `air` icon. """ def air(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter` icon. """ def filter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_5` icon. """ def brightness_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `present_to_all` icon. """ def present_to_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `language` icon. """ def language(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `savings` icon. """ def savings(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_circle_left` icon. """ def arrow_circle_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rule` icon. """ def rule(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_pound` icon. """ def currency_pound(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `food_bank` icon. """ def food_bank(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_car` icon. """ def directions_car(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sort` icon. """ def sort(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bathtub` icon. """ def bathtub(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_off` icon. """ def signal_wifi_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dialer_sip` icon. """ def dialer_sip(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forward_5` icon. """ def forward_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_notifications` icon. """ def edit_notifications(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_lock_landscape` icon. """ def screen_lock_landscape(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `attach_file` icon. """ def attach_file(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_control_key` icon. """ def keyboard_control_key(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `more` icon. """ def more(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `send_time_extension` icon. """ def send_time_extension(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_split` icon. """ def call_split(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_fire_department` icon. """ def local_fire_department(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `newspaper` icon. """ def newspaper(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `class` icon. """ def class(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `group_work` icon. """ def group_work(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `saved_search` icon. """ def saved_search(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `solar_power` icon. """ def solar_power(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lock_reset` icon. """ def lock_reset(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `outbound` icon. """ def outbound(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_5k_plus` icon. """ def _5k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `publish` icon. """ def publish(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `calendar_today` icon. """ def calendar_today(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `delete_sweep` icon. """ def delete_sweep(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `church` icon. """ def church(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fastfood` icon. """ def fastfood(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `games` icon. """ def games(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `water_damage` icon. """ def water_damage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_adult_content` icon. """ def no_adult_content(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `addchart` icon. """ def addchart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `restore_page` icon. """ def restore_page(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `touch_app` icon. """ def touch_app(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `save` icon. """ def save(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `square` icon. """ def square(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pages` icon. """ def pages(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `textsms` icon. """ def textsms(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_callback` icon. """ def phone_callback(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `calculate` icon. """ def calculate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `night_shelter` icon. """ def night_shelter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `how_to_vote` icon. """ def how_to_vote(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `request_page` icon. """ def request_page(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_23mp` icon. """ def _23mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_account` icon. """ def switch_account(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `enhanced_encryption` icon. """ def enhanced_encryption(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `foundation` icon. """ def foundation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_convenience_store` icon. """ def local_convenience_store(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `plagiarism` icon. """ def plagiarism(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `clear` icon. """ def clear(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `headphones_battery` icon. """ def headphones_battery(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fire_truck` icon. """ def fire_truck(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_chat` icon. """ def video_chat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `security_update` icon. """ def security_update(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `groups_2` icon. """ def groups_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grid_view` icon. """ def grid_view(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_7_5` icon. """ def crop_7_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `replay_30` icon. """ def replay_30(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `backup` icon. """ def backup(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mobile_friendly` icon. """ def mobile_friendly(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cyclone` icon. """ def cyclone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notifications` icon. """ def notifications(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `military_tech` icon. """ def military_tech(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `manage_history` icon. """ def manage_history(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `carpenter` icon. """ def carpenter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drive_folder_upload` icon. """ def drive_folder_upload(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drag_handle` icon. """ def drag_handle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hotel_class` icon. """ def hotel_class(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `downhill_skiing` icon. """ def downhill_skiing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_tennis` icon. """ def sports_tennis(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smartphone` icon. """ def smartphone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hive` icon. """ def hive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_camera_back` icon. """ def photo_camera_back(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `speaker_phone` icon. """ def speaker_phone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `legend_toggle` icon. """ def legend_toggle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_pin_circle` icon. """ def person_pin_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_20mp` icon. """ def _20mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bluetooth_searching` icon. """ def bluetooth_searching(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `preview` icon. """ def preview(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_home_work` icon. """ def add_home_work(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turned_in` icon. """ def turned_in(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `watch` icon. """ def watch(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `perm_device_information` icon. """ def perm_device_information(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dry` icon. """ def dry(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_9k` icon. """ def _9k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `trip_origin` icon. """ def trip_origin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_franc` icon. """ def currency_franc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cameraswitch` icon. """ def cameraswitch(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_settings` icon. """ def video_settings(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_italic` icon. """ def format_italic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `outlined_flag` icon. """ def outlined_flag(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `palette` icon. """ def palette(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timer_3_select` icon. """ def timer_3_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mobile_screen_share` icon. """ def mobile_screen_share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rtt` icon. """ def rtt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `spoke` icon. """ def spoke(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_see` icon. """ def local_see(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `replay_circle_filled` icon. """ def replay_circle_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `repeat_one` icon. """ def repeat_one(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `source` icon. """ def source(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pin_drop` icon. """ def pin_drop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `trending_flat` icon. """ def trending_flat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sensor_door` icon. """ def sensor_door(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assignment_return` icon. """ def assignment_return(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wb_twilight` icon. """ def wb_twilight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_backpack` icon. """ def no_backpack(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `medication_liquid` icon. """ def medication_liquid(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hearing_disabled` icon. """ def hearing_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_arrow_down` icon. """ def keyboard_arrow_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sim_card` icon. """ def sim_card(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_arrow_up` icon. """ def keyboard_arrow_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subscript` icon. """ def subscript(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `card_giftcard` icon. """ def card_giftcard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `broadcast_on_personal` icon. """ def broadcast_on_personal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_invitation` icon. """ def insert_invitation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_to_home_screen` icon. """ def add_to_home_screen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pause` icon. """ def pause(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pause_circle_outline` icon. """ def pause_circle_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rate_review` icon. """ def rate_review(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exposure_neg_2` icon. """ def exposure_neg_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_off` icon. """ def cloud_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_10mp` icon. """ def _10mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `schedule` icon. """ def schedule(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `spa` icon. """ def spa(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_down_alt` icon. """ def swipe_down_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `plumbing` icon. """ def plumbing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `priority_high` icon. """ def priority_high(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_laundry_service` icon. """ def local_laundry_service(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `queue_play_next` icon. """ def queue_play_next(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fmd_bad` icon. """ def fmd_bad(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_6k_plus` icon. """ def _6k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_6_ft_apart` icon. """ def _6_ft_apart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star_outline` icon. """ def star_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `navigate_next` icon. """ def navigate_next(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `query_stats` icon. """ def query_stats(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_box` icon. """ def add_box(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `devices_other` icon. """ def devices_other(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_3k_plus` icon. """ def _3k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_to_drive` icon. """ def add_to_drive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `h_plus_mobiledata` icon. """ def h_plus_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_recline_normal` icon. """ def airline_seat_recline_normal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `balcony` icon. """ def balcony(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `festival` icon. """ def festival(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `post_add` icon. """ def post_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gpp_bad` icon. """ def gpp_bad(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_rotation_down` icon. """ def text_rotation_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `volcano` icon. """ def volcano(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_snippet` icon. """ def text_snippet(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_vertical` icon. """ def swipe_vertical(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `update_disabled` icon. """ def update_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `coffee_maker` icon. """ def coffee_maker(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_in_ar` icon. """ def view_in_ar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_bitcoin` icon. """ def currency_bitcoin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `minor_crash` icon. """ def minor_crash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `center_focus_strong` icon. """ def center_focus_strong(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `houseboat` icon. """ def houseboat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `calendar_view_day` icon. """ def calendar_view_day(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_accounts` icon. """ def no_accounts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_airport` icon. """ def local_airport(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `padding` icon. """ def padding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `important_devices` icon. """ def important_devices(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `event` icon. """ def event(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_moderator` icon. """ def remove_moderator(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `join_inner` icon. """ def join_inner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_note` icon. """ def edit_note(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_0_bar` icon. """ def battery_0_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `margin` icon. """ def margin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_basketball` icon. """ def sports_basketball(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_saver_on` icon. """ def data_saver_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assistant_photo` icon. """ def assistant_photo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_input_antenna` icon. """ def settings_input_antenna(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `child_care` icon. """ def child_care(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phonelink_lock` icon. """ def phonelink_lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `noise_control_off` icon. """ def noise_control_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chair` icon. """ def chair(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `co_present` icon. """ def co_present(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `support_agent` icon. """ def support_agent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_flat_angled` icon. """ def airline_seat_flat_angled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `charging_station` icon. """ def charging_station(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `minimize` icon. """ def minimize(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports` icon. """ def sports(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wine_bar` icon. """ def wine_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `monochrome_photos` icon. """ def monochrome_photos(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `horizontal_split` icon. """ def horizontal_split(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `handshake` icon. """ def handshake(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_awesome` icon. """ def auto_awesome(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_location_alt` icon. """ def edit_location_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_flat` icon. """ def airline_seat_flat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `web_asset_off` icon. """ def web_asset_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_day` icon. """ def view_day(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bookmark_added` icon. """ def bookmark_added(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `forward_to_inbox` icon. """ def forward_to_inbox(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `css` icon. """ def css(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_1_bar` icon. """ def battery_1_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `attribution` icon. """ def attribution(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dining` icon. """ def dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `golf_course` icon. """ def golf_course(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_awesome_motion` icon. """ def auto_awesome_motion(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `note_add` icon. """ def note_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `content_cut` icon. """ def content_cut(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tire_repair` icon. """ def tire_repair(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `link_off` icon. """ def link_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_esports` icon. """ def sports_esports(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vertical_align_bottom` icon. """ def vertical_align_bottom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blinds_closed` icon. """ def blinds_closed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `policy` icon. """ def policy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `image` icon. """ def image(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `temple_buddhist` icon. """ def temple_buddhist(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_bluetooth_speaker` icon. """ def phone_bluetooth_speaker(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `e_mobiledata` icon. """ def e_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cancel` icon. """ def cancel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subtitles` icon. """ def subtitles(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_camera` icon. """ def switch_camera(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `voice_chat` icon. """ def voice_chat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `join_left` icon. """ def join_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `account_box` icon. """ def account_box(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_circle_right` icon. """ def arrow_circle_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `report_problem` icon. """ def report_problem(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_meals` icon. """ def no_meals(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `move_down` icon. """ def move_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sd_storage` icon. """ def sd_storage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_voice` icon. """ def settings_voice(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pivot_table_chart` icon. """ def pivot_table_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_rotate_up` icon. """ def text_rotate_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `train` icon. """ def train(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `warning` icon. """ def warning(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_left` icon. """ def arrow_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_disturb_on_total_silence` icon. """ def do_not_disturb_on_total_silence(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_comfy` icon. """ def view_comfy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_gymnastics` icon. """ def sports_gymnastics(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `label_off` icon. """ def label_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `branding_watermark` icon. """ def branding_watermark(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `check_circle_outline` icon. """ def check_circle_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blur_circular` icon. """ def blur_circular(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `image_search` icon. """ def image_search(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `admin_panel_settings` icon. """ def admin_panel_settings(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_right_alt` icon. """ def arrow_right_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `storage` icon. """ def storage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_car` icon. """ def electric_car(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `motion_photos_on` icon. """ def motion_photos_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_list_numbered_rtl` icon. """ def format_list_numbered_rtl(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `speaker_notes_off` icon. """ def speaker_notes_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_flash` icon. """ def no_flash(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `podcasts` icon. """ def podcasts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emergency_recording` icon. """ def emergency_recording(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_pharmacy` icon. """ def local_pharmacy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `https` icon. """ def https(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star_half` icon. """ def star_half(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stop_screen_share` icon. """ def stop_screen_share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_ic_call` icon. """ def add_ic_call(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_increase` icon. """ def text_increase(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_6k` icon. """ def _6k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `transform` icon. """ def transform(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_8k_plus` icon. """ def _8k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vaccines` icon. """ def vaccines(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bug_report` icon. """ def bug_report(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `help_center` icon. """ def help_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_22mp` icon. """ def _22mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `accessibility_new` icon. """ def accessibility_new(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tab_unselected` icon. """ def tab_unselected(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shopping_cart_checkout` icon. """ def shopping_cart_checkout(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `access_alarm` icon. """ def access_alarm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_voice` icon. """ def keyboard_voice(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_camera` icon. """ def photo_camera(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_locked` icon. """ def phone_locked(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exposure_plus_2` icon. """ def exposure_plus_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_score` icon. """ def sports_score(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `account_circle` icon. """ def account_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `autorenew` icon. """ def autorenew(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `notifications_off` icon. """ def notifications_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hevc` icon. """ def hevc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `browse_gallery` icon. """ def browse_gallery(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `logout` icon. """ def logout(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sort_by_alpha` icon. """ def sort_by_alpha(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi` icon. """ def wifi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_align_right` icon. """ def format_align_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_none` icon. """ def filter_none(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `backup_table` icon. """ def backup_table(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_3` icon. """ def person_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_wifi` icon. """ def network_wifi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phishing` icon. """ def phishing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `headset` icon. """ def headset(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mark_unread_chat_alt` icon. """ def mark_unread_chat_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `spatial_audio` icon. """ def spatial_audio(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_location` icon. """ def add_location(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_remote` icon. """ def settings_remote(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `outdoor_grill` icon. """ def outdoor_grill(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_bus_filled` icon. """ def directions_bus_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_drop_up` icon. """ def arrow_drop_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `domain_verification` icon. """ def domain_verification(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dashboard_customize` icon. """ def dashboard_customize(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `loyalty` icon. """ def loyalty(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `motion_photos_off` icon. """ def motion_photos_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_stable` icon. """ def video_stable(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `request_quote` icon. """ def request_quote(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_size_select_large` icon. """ def photo_size_select_large(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rsvp` icon. """ def rsvp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_circle` icon. """ def add_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_reaction` icon. """ def add_reaction(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_5` icon. """ def filter_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `calendar_view_month` icon. """ def calendar_view_month(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `auto_delete` icon. """ def auto_delete(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `event_note` icon. """ def event_note(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `checklist_rtl` icon. """ def checklist_rtl(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `live_tv` icon. """ def live_tv(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_forwarded` icon. """ def phone_forwarded(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_atm` icon. """ def local_atm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stars` icon. """ def stars(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_alt_2_bar` icon. """ def signal_cellular_alt_2_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_option_key` icon. """ def keyboard_option_key(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_30fps_select` icon. """ def _30fps_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_applications` icon. """ def settings_applications(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crisis_alert` icon. """ def crisis_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `west` icon. """ def west(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `upgrade` icon. """ def upgrade(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rule_folder` icon. """ def rule_folder(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `display_settings` icon. """ def display_settings(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `factory` icon. """ def factory(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phone_disabled` icon. """ def phone_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `desktop_mac` icon. """ def desktop_mac(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_upward` icon. """ def arrow_upward(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_full` icon. """ def battery_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `outbox` icon. """ def outbox(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `home_work` icon. """ def home_work(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bike_scooter` icon. """ def bike_scooter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_legroom_normal` icon. """ def airline_seat_legroom_normal(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `announcement` icon. """ def announcement(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `slideshow` icon. """ def slideshow(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `play_disabled` icon. """ def play_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_bolt` icon. """ def electric_bolt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `burst_mode` icon. """ def burst_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `snooze` icon. """ def snooze(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `not_interested` icon. """ def not_interested(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star_border` icon. """ def star_border(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `liquor` icon. """ def liquor(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `portable_wifi_off` icon. """ def portable_wifi_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rowing` icon. """ def rowing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_fan_off` icon. """ def mode_fan_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_decrease` icon. """ def text_decrease(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bookmark_add` icon. """ def bookmark_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tonality` icon. """ def tonality(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `comment_bank` icon. """ def comment_bank(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `turn_right` icon. """ def turn_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `card_membership` icon. """ def card_membership(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `south_america` icon. """ def south_america(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_9` icon. """ def filter_9(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_library` icon. """ def video_library(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `domain_disabled` icon. """ def domain_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `type_specimen` icon. """ def type_specimen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ice_skating` icon. """ def ice_skating(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flip_camera_ios` icon. """ def flip_camera_ios(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_chart` icon. """ def add_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `doorbell` icon. """ def doorbell(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_password` icon. """ def wifi_password(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_encryption` icon. """ def no_encryption(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_done` icon. """ def cloud_done(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dehaze` icon. """ def dehaze(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_thresholding` icon. """ def data_thresholding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `straighten` icon. """ def straighten(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `holiday_village` icon. """ def holiday_village(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `push_pin` icon. """ def push_pin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_drop_down_circle` icon. """ def arrow_drop_down_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `media_bluetooth_on` icon. """ def media_bluetooth_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_cell` icon. """ def settings_cell(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_7k_plus` icon. """ def _7k_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `window` icon. """ def window(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cottage` icon. """ def cottage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_shapes` icon. """ def format_shapes(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_offer` icon. """ def local_offer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_road` icon. """ def add_road(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `layers_clear` icon. """ def layers_clear(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `featured_play_list` icon. """ def featured_play_list(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exposure_zero` icon. """ def exposure_zero(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_road` icon. """ def edit_road(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_camera_front` icon. """ def video_camera_front(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fmd_good` icon. """ def fmd_good(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `qr_code_scanner` icon. """ def qr_code_scanner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shuffle` icon. """ def shuffle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_1` icon. """ def brightness_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_bad` icon. """ def signal_wifi_bad(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `install_mobile` icon. """ def install_mobile(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `device_hub` icon. """ def device_hub(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `luggage` icon. """ def luggage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fire_extinguisher` icon. """ def fire_extinguisher(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `warning_amber` icon. """ def warning_amber(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `password` icon. """ def password(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `attractions` icon. """ def attractions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `highlight_off` icon. """ def highlight_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flare` icon. """ def flare(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_16_9` icon. """ def crop_16_9(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `medical_services` icon. """ def medical_services(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `maximize` icon. """ def maximize(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_6` icon. """ def brightness_6(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_wifi_3_bar` icon. """ def network_wifi_3_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dirty_lens` icon. """ def dirty_lens(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_4g_plus_mobiledata` icon. """ def _4g_plus_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_transportation` icon. """ def emoji_transportation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `spellcheck` icon. """ def spellcheck(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `repeat` icon. """ def repeat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_style` icon. """ def border_style(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_upload` icon. """ def cloud_upload(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star` icon. """ def star(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `delivery_dining` icon. """ def delivery_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phonelink_setup` icon. """ def phonelink_setup(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `splitscreen` icon. """ def splitscreen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `kitchen` icon. """ def kitchen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exposure_plus_1` icon. """ def exposure_plus_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_pizza` icon. """ def local_pizza(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_textdirection_r_to_l` icon. """ def format_textdirection_r_to_l(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `new_label` icon. """ def new_label(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_of_travel` icon. """ def mode_of_travel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `imagesearch_roller` icon. """ def imagesearch_roller(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_exchange` icon. """ def currency_exchange(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_emoticon` icon. """ def insert_emoticon(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `store_mall_directory` icon. """ def store_mall_directory(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_movies` icon. """ def local_movies(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `alarm_add` icon. """ def alarm_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_alt` icon. """ def keyboard_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `summarize` icon. """ def summarize(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `weekend` icon. """ def weekend(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_drama` icon. """ def filter_drama(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `synagogue` icon. """ def synagogue(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dinner_dining` icon. """ def dinner_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vrpano` icon. """ def vrpano(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `show_chart` icon. """ def show_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_meeting_room` icon. """ def no_meeting_room(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `star_rate` icon. """ def star_rate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `collections` icon. """ def collections(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `key` icon. """ def key(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `group` icon. """ def group(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_suggest` icon. """ def settings_suggest(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dangerous` icon. """ def dangerous(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_system_daydream` icon. """ def settings_system_daydream(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_railway_filled` icon. """ def directions_railway_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `home_max` icon. """ def home_max(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_front` icon. """ def camera_front(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `alternate_email` icon. """ def alternate_email(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_chart` icon. """ def insert_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chair_alt` icon. """ def chair_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `next_plan` icon. """ def next_plan(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `punch_clock` icon. """ def punch_clock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_subway_filled` icon. """ def directions_subway_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `scale` icon. """ def scale(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gite` icon. """ def gite(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_4` icon. """ def face_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `image_aspect_ratio` icon. """ def image_aspect_ratio(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emergency_share` icon. """ def emergency_share(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_disturb_off` icon. """ def do_not_disturb_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_4_bar` icon. """ def signal_wifi_4_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_hockey` icon. """ def sports_hockey(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sip` icon. """ def sip(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `find_replace` icon. """ def find_replace(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_attributes` icon. """ def edit_attributes(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_headline` icon. """ def view_headline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder` icon. """ def folder(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lock_clock` icon. """ def lock_clock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_1x_mobiledata` icon. """ def _1x_mobiledata(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `thumb_up` icon. """ def thumb_up(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `maps_ugc` icon. """ def maps_ugc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `font_download` icon. """ def font_download(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fiber_pin` icon. """ def fiber_pin(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `architecture` icon. """ def architecture(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove_road` icon. """ def remove_road(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_search` icon. """ def person_search(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `home_mini` icon. """ def home_mini(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `agriculture` icon. """ def agriculture(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_landscape` icon. """ def crop_landscape(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drive_file_move` icon. """ def drive_file_move(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fire_hydrant_alt` icon. """ def fire_hydrant_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lightbulb_circle` icon. """ def lightbulb_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `heart_broken` icon. """ def heart_broken(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `density_large` icon. """ def density_large(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bookmark` icon. """ def bookmark(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nightlife` icon. """ def nightlife(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tips_and_updates` icon. """ def tips_and_updates(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grid_3x3` icon. """ def grid_3x3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flight_takeoff` icon. """ def flight_takeoff(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `insert_link` icon. """ def insert_link(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `api` icon. """ def api(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dynamic_form` icon. """ def dynamic_form(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flip_to_back` icon. """ def flip_to_back(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `video_file` icon. """ def video_file(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swap_calls` icon. """ def swap_calls(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `alarm_on` icon. """ def alarm_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_back` icon. """ def arrow_back(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `escalator` icon. """ def escalator(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nat` icon. """ def nat(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airlines` icon. """ def airlines(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_compact` icon. """ def view_compact(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `adf_scanner` icon. """ def adf_scanner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vape_free` icon. """ def vape_free(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flip` icon. """ def flip(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cruelty_free` icon. """ def cruelty_free(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `surround_sound` icon. """ def surround_sound(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `repeat_on` icon. """ def repeat_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `vpn_key` icon. """ def vpn_key(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `category` icon. """ def category(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `filter_3` icon. """ def filter_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gps_off` icon. """ def gps_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `abc` icon. """ def abc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `archive` icon. """ def archive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_cell` icon. """ def network_cell(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_plus` icon. """ def hdr_plus(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `noise_aware` icon. """ def noise_aware(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swap_horiz` icon. """ def swap_horiz(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `system_update` icon. """ def system_update(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `school` icon. """ def school(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_received` icon. """ def call_received(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_football` icon. """ def sports_football(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `menu_open` icon. """ def menu_open(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `music_video` icon. """ def music_video(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `report_off` icon. """ def report_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `piano` icon. """ def piano(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_drink` icon. """ def local_drink(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `apartment` icon. """ def apartment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_locked` icon. """ def network_locked(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `not_listed_location` icon. """ def not_listed_location(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `zoom_in` icon. """ def zoom_in(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `elderly_woman` icon. """ def elderly_woman(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mark_email_read` icon. """ def mark_email_read(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pan_tool` icon. """ def pan_tool(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stroller` icon. """ def stroller(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mic` icon. """ def mic(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swap_vert` icon. """ def swap_vert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grade` icon. """ def grade(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `slow_motion_video` icon. """ def slow_motion_video(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_4_bar` icon. """ def signal_cellular_4_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `refresh` icon. """ def refresh(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_copy` icon. """ def file_copy(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `u_turn_left` icon. """ def u_turn_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ramp_left` icon. """ def ramp_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_din` icon. """ def crop_din(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_auto_select` icon. """ def hdr_auto_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pause_presentation` icon. """ def pause_presentation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_upload` icon. """ def file_upload(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exit_to_app` icon. """ def exit_to_app(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stairs` icon. """ def stairs(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `security_update_warning` icon. """ def security_update_warning(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `translate` icon. """ def translate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_17mp` icon. """ def _17mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `table_restaurant` icon. """ def table_restaurant(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `roundabout_right` icon. """ def roundabout_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `running_with_errors` icon. """ def running_with_errors(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pinch` icon. """ def pinch(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_phone` icon. """ def settings_phone(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_original` icon. """ def crop_original(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_2` icon. """ def face_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_size_select_actual` icon. """ def photo_size_select_actual(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pie_chart` icon. """ def pie_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sell` icon. """ def sell(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_cell` icon. """ def no_cell(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_edit_outline` icon. """ def mode_edit_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `calendar_month` icon. """ def calendar_month(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_double_arrow_left` icon. """ def keyboard_double_arrow_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `duo` icon. """ def duo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `other_houses` icon. """ def other_houses(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `line_axis` icon. """ def line_axis(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `merge_type` icon. """ def merge_type(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `single_bed` icon. """ def single_bed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `iron` icon. """ def iron(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `credit_score` icon. """ def credit_score(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_8mp` icon. """ def _8mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `history` icon. """ def history(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pest_control` icon. """ def pest_control(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `spatial_tracking` icon. """ def spatial_tracking(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `all_inclusive` icon. """ def all_inclusive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bluetooth_connected` icon. """ def bluetooth_connected(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `family_restroom` icon. """ def family_restroom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_to_queue` icon. """ def add_to_queue(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `colorize` icon. """ def colorize(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `question_answer` icon. """ def question_answer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `man_3` icon. """ def man_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_7` icon. """ def brightness_7(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `exposure_neg_1` icon. """ def exposure_neg_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `graphic_eq` icon. """ def graphic_eq(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_motorsports` icon. """ def sports_motorsports(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `drag_indicator` icon. """ def drag_indicator(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assignment_returned` icon. """ def assignment_returned(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lock_open` icon. """ def lock_open(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `toc` icon. """ def toc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `blinds` icon. """ def blinds(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `safety_check` icon. """ def safety_check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `question_mark` icon. """ def question_mark(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `people_outline` icon. """ def people_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `invert_colors` icon. """ def invert_colors(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_array` icon. """ def data_array(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `join_right` icon. """ def join_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `functions` icon. """ def functions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `repeat_one_on` icon. """ def repeat_one_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mood` icon. """ def mood(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_6_bar` icon. """ def battery_6_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `scoreboard` icon. """ def scoreboard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wallpaper` icon. """ def wallpaper(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `elderly` icon. """ def elderly(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `youtube_searched_for` icon. """ def youtube_searched_for(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `widgets` icon. """ def widgets(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_14mp` icon. """ def _14mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `north` icon. """ def north(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `brightness_2` icon. """ def brightness_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `help` icon. """ def help(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sign_language` icon. """ def sign_language(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks_5` icon. """ def looks_5(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dark_mode` icon. """ def dark_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stream` icon. """ def stream(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `interpreter_mode` icon. """ def interpreter_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flag_circle` icon. """ def flag_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `railway_alert` icon. """ def railway_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_arrow_left` icon. """ def keyboard_arrow_left(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_library` icon. """ def photo_library(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electrical_services` icon. """ def electrical_services(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_events` icon. """ def emoji_events(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tag_faces` icon. """ def tag_faces(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `public_off` icon. """ def public_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `check_box` icon. """ def check_box(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `check_circle` icon. """ def check_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edgesensor_high` icon. """ def edgesensor_high(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `approval` icon. """ def approval(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `location_searching` icon. """ def location_searching(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sailing` icon. """ def sailing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_off` icon. """ def directions_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `opacity` icon. """ def opacity(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `backpack` icon. """ def backpack(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `data_usage` icon. """ def data_usage(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_capslock` icon. """ def keyboard_capslock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `apps` icon. """ def apps(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `science` icon. """ def science(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_module` icon. """ def view_module(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `power_settings_new` icon. """ def power_settings_new(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_alarm` icon. """ def add_alarm(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `escalator_warning` icon. """ def escalator_warning(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `report` icon. """ def report(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `import_export` icon. """ def import_export(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `border_bottom` icon. """ def border_bottom(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lock` icon. """ def lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assistant` icon. """ def assistant(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `videocam` icon. """ def videocam(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `file_open` icon. """ def file_open(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `egg` icon. """ def egg(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `launch` icon. """ def launch(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flip_to_front` icon. """ def flip_to_front(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_format` icon. """ def text_format(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gamepad` icon. """ def gamepad(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shutter_speed` icon. """ def shutter_speed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_camera_front` icon. """ def photo_camera_front(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smoke_free` icon. """ def smoke_free(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_circle_down` icon. """ def arrow_circle_down(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `face_6` icon. """ def face_6(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `list` icon. """ def list(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `directions_boat_filled` icon. """ def directions_boat_filled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `egg_alt` icon. """ def egg_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bluetooth_drive` icon. """ def bluetooth_drive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `light_mode` icon. """ def light_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `qr_code_2` icon. """ def qr_code_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `date_range` icon. """ def date_range(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `network_ping` icon. """ def network_ping(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fork_right` icon. """ def fork_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bluetooth_audio` icon. """ def bluetooth_audio(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timer_3` icon. """ def timer_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `compress` icon. """ def compress(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `album` icon. """ def album(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `arrow_back_ios_new` icon. """ def arrow_back_ios_new(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subdirectory_arrow_right` icon. """ def subdirectory_arrow_right(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_wide_angle` icon. """ def panorama_wide_angle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_9mp` icon. """ def _9mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `keyboard_command_key` icon. """ def keyboard_command_key(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cell_wifi` icon. """ def cell_wifi(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `alarm_off` icon. """ def alarm_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `line_style` icon. """ def line_style(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flag` icon. """ def flag(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `remove` icon. """ def remove(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `supervised_user_circle` icon. """ def supervised_user_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `share_location` icon. """ def share_location(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `memory` icon. """ def memory(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lens` icon. """ def lens(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `swipe_up_alt` icon. """ def swipe_up_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_add_disabled` icon. """ def person_add_disabled(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `block` icon. """ def block(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ssid_chart` icon. """ def ssid_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `markunread_mailbox` icon. """ def markunread_mailbox(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_delete` icon. """ def folder_delete(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `lightbulb` icon. """ def lightbulb(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `toggle_on` icon. """ def toggle_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `table_view` icon. """ def table_view(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `motion_photos_paused` icon. """ def motion_photos_paused(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sensors_off` icon. """ def sensors_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `radar` icon. """ def radar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bar_chart` icon. """ def bar_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ev_station` icon. """ def ev_station(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `electric_moped` icon. """ def electric_moped(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rounded_corner` icon. """ def rounded_corner(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `diversity_1` icon. """ def diversity_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `dock` icon. """ def dock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `quiz` icon. """ def quiz(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `html` icon. """ def html(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `male` icon. """ def male(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_bar` icon. """ def local_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `reply` icon. """ def reply(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `stop_circle` icon. """ def stop_circle(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assignment_late` icon. """ def assignment_late(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_portrait` icon. """ def crop_portrait(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rv_hookup` icon. """ def rv_hookup(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_florist` icon. """ def local_florist(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_square` icon. """ def crop_square(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `image_not_supported` icon. """ def image_not_supported(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `card_travel` icon. """ def card_travel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rss_feed` icon. """ def rss_feed(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `candlestick_chart` icon. """ def candlestick_chart(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bakery_dining` icon. """ def bakery_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `create_new_folder` icon. """ def create_new_folder(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `zoom_in_map` icon. """ def zoom_in_map(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_seat_individual_suite` icon. """ def airline_seat_individual_suite(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `clear_all` icon. """ def clear_all(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `open_in_new` icon. """ def open_in_new(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `app_settings_alt` icon. """ def app_settings_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `disabled_by_default` icon. """ def disabled_by_default(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_dining` icon. """ def local_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `subway` icon. """ def subway(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `badge` icon. """ def badge(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `rotate_90_degrees_cw` icon. """ def rotate_90_degrees_cw(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tab` icon. """ def tab(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `back_hand` icon. """ def back_hand(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add` icon. """ def add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `save_as` icon. """ def save_as(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contrast` icon. """ def contrast(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hide_image` icon. """ def hide_image(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unfold_more_double` icon. """ def unfold_more_double(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gif_box` icon. """ def gif_box(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `taxi_alert` icon. """ def taxi_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `man` icon. """ def man(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `shopping_bag` icon. """ def shopping_bag(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gavel` icon. """ def gavel(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unsubscribe` icon. """ def unsubscribe(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_statusbar_4_bar` icon. """ def signal_wifi_statusbar_4_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_18mp` icon. """ def _18mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_2k` icon. """ def _2k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `space_dashboard` icon. """ def space_dashboard(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `microwave` icon. """ def microwave(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `north_east` icon. """ def north_east(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `engineering` icon. """ def engineering(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hourglass_empty` icon. """ def hourglass_empty(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cleaning_services` icon. """ def cleaning_services(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fact_check` icon. """ def fact_check(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud` icon. """ def cloud(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `aod` icon. """ def aod(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `severe_cold` icon. """ def severe_cold(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `playlist_add` icon. """ def playlist_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_7k` icon. """ def _7k(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unfold_less` icon. """ def unfold_less(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `takeout_dining` icon. """ def takeout_dining(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `menu_book` icon. """ def menu_book(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_nature` icon. """ def emoji_nature(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `markunread` icon. """ def markunread(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_mall` icon. """ def local_mall(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `text_fields` icon. """ def text_fields(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `watch_later` icon. """ def watch_later(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop_5_4` icon. """ def crop_5_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_alert` icon. """ def add_alert(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `chrome_reader_mode` icon. """ def chrome_reader_mode(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `ads_click` icon. """ def ads_click(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fence` icon. """ def fence(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `note_alt` icon. """ def note_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `webhook` icon. """ def webhook(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_cellular_alt` icon. """ def signal_cellular_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_enhance` icon. """ def camera_enhance(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `car_rental` icon. """ def car_rental(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_color_fill` icon. """ def format_color_fill(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `panorama_photosphere` icon. """ def panorama_photosphere(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `compare` icon. """ def compare(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cancel_presentation` icon. """ def cancel_presentation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `temple_hindu` icon. """ def temple_hindu(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `settings_backup_restore` icon. """ def settings_backup_restore(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `switch_access_shortcut_add` icon. """ def switch_access_shortcut_add(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `g_translate` icon. """ def g_translate(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `note` icon. """ def note(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airline_stops` icon. """ def airline_stops(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `do_not_disturb_alt` icon. """ def do_not_disturb_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tungsten` icon. """ def tungsten(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `on_device_training` icon. """ def on_device_training(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `home_repair_service` icon. """ def home_repair_service(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contacts` icon. """ def contacts(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `view_sidebar` icon. """ def view_sidebar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `biotech` icon. """ def biotech(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_filter` icon. """ def photo_filter(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `place` icon. """ def place(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `repartition` icon. """ def repartition(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `picture_in_picture_alt` icon. """ def picture_in_picture_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `man_2` icon. """ def man_2(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `local_post_office` icon. """ def local_post_office(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pest_control_rodent` icon. """ def pest_control_rodent(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `smart_button` icon. """ def smart_button(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `merge` icon. """ def merge(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `center_focus_weak` icon. """ def center_focus_weak(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `kitesurfing` icon. """ def kitesurfing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_link` icon. """ def add_link(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `emoji_emotions` icon. """ def emoji_emotions(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `sports_bar` icon. """ def sports_bar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gpp_maybe` icon. """ def gpp_maybe(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `edit_calendar` icon. """ def edit_calendar(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `bookmarks` icon. """ def bookmarks(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `screen_rotation` icon. """ def screen_rotation(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mic_external_off` icon. """ def mic_external_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `camera_alt` icon. """ def camera_alt(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `download_for_offline` icon. """ def download_for_offline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `width_full` icon. """ def width_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `photo_size_select_small` icon. """ def photo_size_select_small(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `hdr_enhanced_select` icon. """ def hdr_enhanced_select(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `looks_3` icon. """ def looks_3(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `laptop` icon. """ def laptop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `horizontal_rule` icon. """ def horizontal_rule(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person` icon. """ def person(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `wifi_lock` icon. """ def wifi_lock(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `airplanemode_inactive` icon. """ def airplanemode_inactive(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_align_center` icon. """ def format_align_center(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `gpp_good` icon. """ def gpp_good(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `crop` icon. """ def crop(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `title` icon. """ def title(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `person_add_alt_1` icon. """ def person_add_alt_1(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_to_photos` icon. """ def add_to_photos(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `folder_special` icon. """ def folder_special(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `receipt_long` icon. """ def receipt_long(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `miscellaneous_services` icon. """ def miscellaneous_services(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `label` icon. """ def label(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `pets` icon. """ def pets(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `width_wide` icon. """ def width_wide(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `adjust` icon. """ def adjust(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `inventory` icon. """ def inventory(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `join_full` icon. """ def join_full(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `low_priority` icon. """ def low_priority(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `output` icon. """ def output(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_business` icon. """ def add_business(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `fingerprint` icon. """ def fingerprint(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `assured_workload` icon. """ def assured_workload(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `tv_off` icon. """ def tv_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `format_size` icon. """ def format_size(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_11mp` icon. """ def _11mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `soap` icon. """ def soap(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `straight` icon. """ def straight(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `add_circle_outline` icon. """ def add_circle_outline(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `no_transfer` icon. """ def no_transfer(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `signal_wifi_statusbar_connected_no_internet_4` icon. """ def signal_wifi_statusbar_connected_no_internet_4(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `timer_off` icon. """ def timer_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_6mp` icon. """ def _6mp(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `nfc` icon. """ def nfc(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `battery_unknown` icon. """ def battery_unknown(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mood_bad` icon. """ def mood_bad(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `roofing` icon. """ def roofing(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `currency_yen` icon. """ def currency_yen(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `door_front` icon. """ def door_front(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `phonelink_ring` icon. """ def phonelink_ring(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `unfold_less_double` icon. """ def unfold_less_double(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `toll` icon. """ def toll(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `alt_route` icon. """ def alt_route(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `content_paste_off` icon. """ def content_paste_off(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `contactless` icon. """ def contactless(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `http` icon. """ def http(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `explore` icon. """ def explore(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `work` icon. """ def work(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `grid_on` icon. """ def grid_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `compass_calibration` icon. """ def compass_calibration(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `flash_on` icon. """ def flash_on(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `_123` icon. """ def _123(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `snowboarding` icon. """ def snowboarding(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `info` icon. """ def info(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `mode_comment` icon. """ def mode_comment(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `message` icon. """ def message(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `cloud_queue` icon. """ def cloud_queue(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `call_merge` icon. """ def call_merge(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `recommend` icon. """ def recommend(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) @doc """ Renders the `undo` icon. """ def undo(assigns), do: svg( assign(assigns, paths: %{ "filled" => "", "outlined" => "", "round" => "", "sharp" => "", "two-tone" => "" } ) ) end