//! Centralized icon registry for fast const data lookup
//!
//! This module replaces the individual icon component functions with a single
//! registry-based lookup system for improved build performance.
//!
//! 🤖 AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
//! Generated by: generate_icon_registry.sh
use std::collections::HashMap;
use std::sync::OnceLock;
use dioxus::prelude::*;
use super::icon_type::IconType;
// Static version of SvgElement that uses &'static str
#[derive(Debug, Clone)]
pub enum StaticSvgElement {
Path {
d: &'static str,
},
Circle {
cx: &'static str,
cy: &'static str,
r: &'static str,
},
Rect {
x: &'static str,
y: &'static str,
width: &'static str,
height: &'static str,
rx: Option<&'static str>,
ry: Option<&'static str>,
},
Ellipse {
cx: &'static str,
cy: &'static str,
rx: &'static str,
ry: &'static str,
},
Line {
x1: &'static str,
y1: &'static str,
x2: &'static str,
y2: &'static str,
},
Polyline {
points: &'static str,
},
Polygon {
points: &'static str,
},
}
impl StaticSvgElement {
pub fn to_dioxus_element(&self) -> dioxus::prelude::Element {
match self {
StaticSvgElement::Path { d } => rsx! {
path { d: "{d}" }
},
StaticSvgElement::Circle { cx, cy, r } => rsx! {
circle { cx: "{cx}", cy: "{cy}", r: "{r}" }
},
StaticSvgElement::Rect { x, y, width, height, rx, ry } => match (rx, ry) {
(Some(rx), Some(ry)) => rsx! {
rect {
x: "{x}",
y: "{y}",
width: "{width}",
height: "{height}",
rx: "{rx}",
ry: "{ry}",
}
},
(Some(rx), None) => rsx! {
rect {
x: "{x}",
y: "{y}",
width: "{width}",
height: "{height}",
rx: "{rx}",
}
},
(None, Some(ry)) => rsx! {
rect {
x: "{x}",
y: "{y}",
width: "{width}",
height: "{height}",
ry: "{ry}",
}
},
(None, None) => rsx! {
rect {
x: "{x}",
y: "{y}",
width: "{width}",
height: "{height}",
}
},
},
StaticSvgElement::Ellipse { cx, cy, rx, ry } => rsx! {
ellipse {
cx: "{cx}",
cy: "{cy}",
rx: "{rx}",
ry: "{ry}",
}
},
StaticSvgElement::Line { x1, y1, x2, y2 } => rsx! {
line {
x1: "{x1}",
y1: "{y1}",
x2: "{x2}",
y2: "{y2}",
}
},
StaticSvgElement::Polyline { points } => rsx! {
polyline { points: "{points}" }
},
StaticSvgElement::Polygon { points } => rsx! {
polygon { points: "{points}" }
},
}
}
}
// Static icon data definitions using &'static str
static A_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3.5 13h6" },
StaticSvgElement::Path { d: "m2 16 4.5-9 4.5 9" },
StaticSvgElement::Path { d: "M18 7v9" },
StaticSvgElement::Path { d: "m14 12 4 4 4-4" },
];
static A_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3.5 13h6" },
StaticSvgElement::Path { d: "m2 16 4.5-9 4.5 9" },
StaticSvgElement::Path { d: "M18 16V7" },
StaticSvgElement::Path { d: "m14 11 4-4 4 4" },
];
static A_LARGE_SMALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 14h-5" },
StaticSvgElement::Path { d: "M16 16v-3.5a2.5 2.5 0 0 1 5 0V16" },
StaticSvgElement::Path { d: "M4.5 13h6" },
StaticSvgElement::Path { d: "m3 16 4.5-9 4.5 9" },
];
static ACCESSIBILITY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "16", cy: "4", r: "1" },
StaticSvgElement::Path { d: "m18 19 1-7-6 1" },
StaticSvgElement::Path { d: "m5 8 3-3 5.5 3-2.36 3.5" },
StaticSvgElement::Path { d: "M4.24 14.5a5 5 0 0 0 6.88 6" },
StaticSvgElement::Path { d: "M13.76 17.5a5 5 0 0 0-6.88-6" },
];
static ACTIVITY_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",
}];
static AIR_VENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 17.5a2.5 2.5 0 1 1-4 2.03V12" },
StaticSvgElement::Path { d: "M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M6 8h12" },
StaticSvgElement::Path { d: "M6.6 15.572A2 2 0 1 0 10 17v-5" },
];
static AIRPLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1" },
StaticSvgElement::Path { d: "m12 15 5 6H7Z" },
];
static ALARM_CLOCK_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "13", r: "8" },
StaticSvgElement::Path { d: "M5 3 2 6" },
StaticSvgElement::Path { d: "m22 6-3-3" },
StaticSvgElement::Path { d: "M6.38 18.7 4 21" },
StaticSvgElement::Path { d: "M17.64 18.67 20 21" },
StaticSvgElement::Path { d: "m9 13 2 2 4-4" },
];
static ALARM_CLOCK_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "13", r: "8" },
StaticSvgElement::Path { d: "M5 3 2 6" },
StaticSvgElement::Path { d: "m22 6-3-3" },
StaticSvgElement::Path { d: "M6.38 18.7 4 21" },
StaticSvgElement::Path { d: "M17.64 18.67 20 21" },
StaticSvgElement::Path { d: "M9 13h6" },
];
static ALARM_CLOCK_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6.87 6.87a8 8 0 1 0 11.26 11.26" },
StaticSvgElement::Path { d: "M19.9 14.25a8 8 0 0 0-9.15-9.15" },
StaticSvgElement::Path { d: "m22 6-3-3" },
StaticSvgElement::Path { d: "M6.26 18.67 4 21" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M4 4 2 6" },
];
static ALARM_CLOCK_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "13", r: "8" },
StaticSvgElement::Path { d: "M5 3 2 6" },
StaticSvgElement::Path { d: "m22 6-3-3" },
StaticSvgElement::Path { d: "M6.38 18.7 4 21" },
StaticSvgElement::Path { d: "M17.64 18.67 20 21" },
StaticSvgElement::Path { d: "M12 10v6" },
StaticSvgElement::Path { d: "M9 13h6" },
];
static ALARM_CLOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "13", r: "8" },
StaticSvgElement::Path { d: "M12 9v4l2 2" },
StaticSvgElement::Path { d: "M5 3 2 6" },
StaticSvgElement::Path { d: "m22 6-3-3" },
StaticSvgElement::Path { d: "M6.38 18.7 4 21" },
StaticSvgElement::Path { d: "M17.64 18.67 20 21" },
];
static ALARM_SMOKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 21c0-2.5 2-2.5 2-5" },
StaticSvgElement::Path { d: "M16 21c0-2.5 2-2.5 2-5" },
StaticSvgElement::Path { d: "m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8" },
StaticSvgElement::Path { d: "M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z" },
StaticSvgElement::Path { d: "M6 21c0-2.5 2-2.5 2-5" },
];
static ALBUM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Polyline { points: "11 3 11 11 14 8 17 11 17 3" },
];
static ALIGN_CENTER_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 12h20" },
StaticSvgElement::Path { d: "M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4" },
StaticSvgElement::Path { d: "M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1" },
StaticSvgElement::Path { d: "M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1" },
];
static ALIGN_CENTER_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v20" },
StaticSvgElement::Path { d: "M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4" },
StaticSvgElement::Path { d: "M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4" },
StaticSvgElement::Path { d: "M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1" },
StaticSvgElement::Path { d: "M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1" },
];
static ALIGN_CENTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 12H7" },
StaticSvgElement::Path { d: "M19 18H5" },
StaticSvgElement::Path { d: "M21 6H3" },
];
static ALIGN_END_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "2", width: "6", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "14", y: "9", width: "6", height: "9", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M22 22H2" },
];
static ALIGN_END_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "16", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "9", y: "14", width: "9", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M22 22V2" },
];
static ALIGN_HORIZONTAL_DISTRIBUTE_CENTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "14", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M17 22v-5" },
StaticSvgElement::Path { d: "M17 7V2" },
StaticSvgElement::Path { d: "M7 22v-3" },
StaticSvgElement::Path { d: "M7 5V2" },
];
static ALIGN_HORIZONTAL_DISTRIBUTE_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "14", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M10 2v20" },
StaticSvgElement::Path { d: "M20 2v20" },
];
static ALIGN_HORIZONTAL_DISTRIBUTE_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "14", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M4 2v20" },
StaticSvgElement::Path { d: "M14 2v20" },
];
static ALIGN_HORIZONTAL_JUSTIFY_CENTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "16", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 2v20" },
];
static ALIGN_HORIZONTAL_JUSTIFY_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "12", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M22 2v20" },
];
static ALIGN_HORIZONTAL_JUSTIFY_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "6", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "16", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 2v20" },
];
static ALIGN_HORIZONTAL_SPACE_AROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "9", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M4 22V2" },
StaticSvgElement::Path { d: "M20 22V2" },
];
static ALIGN_HORIZONTAL_SPACE_BETWEEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "5", width: "6", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "15", y: "7", width: "6", height: "10", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 2v20" },
StaticSvgElement::Path { d: "M21 2v20" },
];
static ALIGN_JUSTIFY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 12h18" },
StaticSvgElement::Path { d: "M3 18h18" },
StaticSvgElement::Path { d: "M3 6h18" },
];
static ALIGN_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 12H3" },
StaticSvgElement::Path { d: "M17 18H3" },
StaticSvgElement::Path { d: "M21 6H3" },
];
static ALIGN_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12H9" },
StaticSvgElement::Path { d: "M21 18H7" },
StaticSvgElement::Path { d: "M21 6H3" },
];
static ALIGN_START_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "6", width: "6", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "14", y: "6", width: "6", height: "9", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M22 2H2" },
];
static ALIGN_START_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "6", y: "14", width: "9", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "6", y: "4", width: "16", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 2v20" },
];
static ALIGN_VERTICAL_DISTRIBUTE_CENTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 17h-3" },
StaticSvgElement::Path { d: "M22 7h-5" },
StaticSvgElement::Path { d: "M5 17H2" },
StaticSvgElement::Path { d: "M7 7H2" },
StaticSvgElement::Rect { x: "5", y: "14", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "4", width: "10", height: "6", rx: Some("2"), ry: None },
];
static ALIGN_VERTICAL_DISTRIBUTE_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "14", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "4", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 20h20" },
StaticSvgElement::Path { d: "M2 10h20" },
];
static ALIGN_VERTICAL_DISTRIBUTE_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "14", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "4", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 14h20" },
StaticSvgElement::Path { d: "M2 4h20" },
];
static ALIGN_VERTICAL_JUSTIFY_CENTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "16", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "2", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 12h20" },
];
static ALIGN_VERTICAL_JUSTIFY_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "12", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "2", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 22h20" },
];
static ALIGN_VERTICAL_JUSTIFY_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "16", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "6", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 2h20" },
];
static ALIGN_VERTICAL_SPACE_AROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "7", y: "9", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M22 20H2" },
StaticSvgElement::Path { d: "M22 4H2" },
];
static ALIGN_VERTICAL_SPACE_BETWEEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "15", width: "14", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "7", y: "3", width: "10", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 21h20" },
StaticSvgElement::Path { d: "M2 3h20" },
];
static AMBULANCE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10H6" },
StaticSvgElement::Path { d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2" },
StaticSvgElement::Path {
d: "M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14",
},
StaticSvgElement::Path { d: "M8 8v4" },
StaticSvgElement::Path { d: "M9 18h6" },
StaticSvgElement::Circle { cx: "17", cy: "18", r: "2" },
StaticSvgElement::Circle { cx: "7", cy: "18", r: "2" },
];
static AMPERSAND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13",
},
StaticSvgElement::Path { d: "M16 12h3" },
];
static AMPERSANDS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" },
StaticSvgElement::Path { d: "M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5" },
];
static AMPHORA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8" },
StaticSvgElement::Path { d: "M10 5H8a2 2 0 0 0 0 4h.68" },
StaticSvgElement::Path { d: "M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8" },
StaticSvgElement::Path { d: "M14 5h2a2 2 0 0 1 0 4h-.68" },
StaticSvgElement::Path { d: "M18 22H6" },
StaticSvgElement::Path { d: "M9 2h6" },
];
static ANCHOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22V8" },
StaticSvgElement::Path { d: "M5 12H2a10 10 0 0 0 20 0h-3" },
StaticSvgElement::Circle { cx: "12", cy: "5", r: "3" },
];
static ANGRY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M16 16s-1.5-2-4-2-4 2-4 2" },
StaticSvgElement::Path { d: "M7.5 8 10 9" },
StaticSvgElement::Path { d: "m14 9 2.5-1" },
StaticSvgElement::Path { d: "M9 10h.01" },
StaticSvgElement::Path { d: "M15 10h.01" },
];
static ANNOYED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M8 15h8" },
StaticSvgElement::Path { d: "M8 9h2" },
StaticSvgElement::Path { d: "M14 9h2" },
];
static ANTENNA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 12 7 2" },
StaticSvgElement::Path { d: "m7 12 5-10" },
StaticSvgElement::Path { d: "m12 12 5-10" },
StaticSvgElement::Path { d: "m17 12 5-10" },
StaticSvgElement::Path { d: "M4.5 7h15" },
StaticSvgElement::Path { d: "M12 16v6" },
];
static ANVIL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4" },
StaticSvgElement::Path { d: "M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z" },
StaticSvgElement::Path { d: "M9 12v5" },
StaticSvgElement::Path { d: "M15 12v5" },
StaticSvgElement::Path { d: "M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1" },
];
static APERTURE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m14.31 8 5.74 9.94" },
StaticSvgElement::Path { d: "M9.69 8h11.48" },
StaticSvgElement::Path { d: "m7.38 12 5.74-9.94" },
StaticSvgElement::Path { d: "M9.69 16 3.95 6.06" },
StaticSvgElement::Path { d: "M14.31 16H2.83" },
StaticSvgElement::Path { d: "m16.62 12-5.74 9.94" },
];
static APP_WINDOW_MAC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 8h.01" },
StaticSvgElement::Path { d: "M10 8h.01" },
StaticSvgElement::Path { d: "M14 8h.01" },
];
static APP_WINDOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M10 4v4" },
StaticSvgElement::Path { d: "M2 8h20" },
StaticSvgElement::Path { d: "M6 4v4" },
];
static APPLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z",
},
StaticSvgElement::Path { d: "M10 2c1 .5 2 2 2 5" },
];
static ARCHIVE_RESTORE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M4 8v11a2 2 0 0 0 2 2h2" },
StaticSvgElement::Path { d: "M20 8v11a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "m9 15 3-3 3 3" },
StaticSvgElement::Path { d: "M12 12v9" },
];
static ARCHIVE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" },
StaticSvgElement::Path { d: "m9.5 17 5-5" },
StaticSvgElement::Path { d: "m9.5 12 5 5" },
];
static ARCHIVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" },
StaticSvgElement::Path { d: "M10 12h4" },
];
static ARMCHAIR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path {
d: "M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",
},
StaticSvgElement::Path { d: "M5 18v2" },
StaticSvgElement::Path { d: "M19 18v2" },
];
static ARROW_BIG_DOWN_DASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M9 4h6" },
];
static ARROW_BIG_DOWN_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z",
}];
static ARROW_BIG_LEFT_DASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",
},
StaticSvgElement::Path { d: "M20 9v6" },
];
static ARROW_BIG_LEFT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",
}];
static ARROW_BIG_RIGHT_DASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",
},
StaticSvgElement::Path { d: "M4 9v6" },
];
static ARROW_BIG_RIGHT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",
}];
static ARROW_BIG_UP_DASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z",
},
StaticSvgElement::Path { d: "M9 20h6" },
];
static ARROW_BIG_UP_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z",
}];
static ARROW_DOWN01_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 20V4" },
StaticSvgElement::Rect { x: "15", y: "4", width: "4", height: "6", rx: None, ry: Some("2") },
StaticSvgElement::Path { d: "M17 20v-6h-2" },
StaticSvgElement::Path { d: "M15 20h4" },
];
static ARROW_DOWN10_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 20V4" },
StaticSvgElement::Path { d: "M17 10V4h-2" },
StaticSvgElement::Path { d: "M15 10h4" },
StaticSvgElement::Rect { x: "15", y: "14", width: "4", height: "6", rx: None, ry: Some("2") },
];
static ARROW_DOWN_A_Z_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 20V4" },
StaticSvgElement::Path { d: "M20 8h-5" },
StaticSvgElement::Path { d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10" },
StaticSvgElement::Path { d: "M15 14h5l-5 6h5" },
];
static ARROW_DOWN_FROM_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 3H5" },
StaticSvgElement::Path { d: "M12 21V7" },
StaticSvgElement::Path { d: "m6 15 6 6 6-6" },
];
static ARROW_DOWN_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M17 7 7 17" }, StaticSvgElement::Path { d: "M17 17H7V7" }];
static ARROW_DOWN_NARROW_WIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 20V4" },
StaticSvgElement::Path { d: "M11 4h4" },
StaticSvgElement::Path { d: "M11 8h7" },
StaticSvgElement::Path { d: "M11 12h10" },
];
static ARROW_DOWN_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m7 7 10 10" }, StaticSvgElement::Path { d: "M17 7v10H7" }];
static ARROW_DOWN_TO_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v14" },
StaticSvgElement::Path { d: "m19 9-7 7-7-7" },
StaticSvgElement::Circle { cx: "12", cy: "21", r: "1" },
];
static ARROW_DOWN_TO_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17V3" },
StaticSvgElement::Path { d: "m6 11 6 6 6-6" },
StaticSvgElement::Path { d: "M19 21H5" },
];
static ARROW_DOWN_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 20V4" },
StaticSvgElement::Path { d: "m21 8-4-4-4 4" },
StaticSvgElement::Path { d: "M17 4v16" },
];
static ARROW_DOWN_WIDE_NARROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 20V4" },
StaticSvgElement::Path { d: "M11 4h10" },
StaticSvgElement::Path { d: "M11 8h7" },
StaticSvgElement::Path { d: "M11 12h4" },
];
static ARROW_DOWN_Z_A_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 16 4 4 4-4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Path { d: "M15 4h5l-5 6h5" },
StaticSvgElement::Path { d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" },
StaticSvgElement::Path { d: "M20 18h-5" },
];
static ARROW_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 5v14" }, StaticSvgElement::Path { d: "m19 12-7 7-7-7" }];
static ARROW_LEFT_FROM_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m9 6-6 6 6 6" },
StaticSvgElement::Path { d: "M3 12h14" },
StaticSvgElement::Path { d: "M21 19V5" },
];
static ARROW_LEFT_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 3 4 7l4 4" },
StaticSvgElement::Path { d: "M4 7h16" },
StaticSvgElement::Path { d: "m16 21 4-4-4-4" },
StaticSvgElement::Path { d: "M20 17H4" },
];
static ARROW_LEFT_TO_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 19V5" },
StaticSvgElement::Path { d: "m13 6-6 6 6 6" },
StaticSvgElement::Path { d: "M7 12h14" },
];
static ARROW_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m12 19-7-7 7-7" }, StaticSvgElement::Path { d: "M19 12H5" }];
static ARROW_RIGHT_FROM_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 5v14" },
StaticSvgElement::Path { d: "M21 12H7" },
StaticSvgElement::Path { d: "m15 18 6-6-6-6" },
];
static ARROW_RIGHT_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 3 4 4-4 4" },
StaticSvgElement::Path { d: "M20 7H4" },
StaticSvgElement::Path { d: "m8 21-4-4 4-4" },
StaticSvgElement::Path { d: "M4 17h16" },
];
static ARROW_RIGHT_TO_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 12H3" },
StaticSvgElement::Path { d: "m11 18 6-6-6-6" },
StaticSvgElement::Path { d: "M21 5v14" },
];
static ARROW_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M5 12h14" }, StaticSvgElement::Path { d: "m12 5 7 7-7 7" }];
static ARROW_UP01_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Rect { x: "15", y: "4", width: "4", height: "6", rx: None, ry: Some("2") },
StaticSvgElement::Path { d: "M17 20v-6h-2" },
StaticSvgElement::Path { d: "M15 20h4" },
];
static ARROW_UP10_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Path { d: "M17 10V4h-2" },
StaticSvgElement::Path { d: "M15 10h4" },
StaticSvgElement::Rect { x: "15", y: "14", width: "4", height: "6", rx: None, ry: Some("2") },
];
static ARROW_UP_A_Z_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Path { d: "M20 8h-5" },
StaticSvgElement::Path { d: "M15 10V6.5a2.5 2.5 0 0 1 5 0V10" },
StaticSvgElement::Path { d: "M15 14h5l-5 6h5" },
];
static ARROW_UP_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m21 16-4 4-4-4" },
StaticSvgElement::Path { d: "M17 20V4" },
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
];
static ARROW_UP_FROM_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m5 9 7-7 7 7" },
StaticSvgElement::Path { d: "M12 16V2" },
StaticSvgElement::Circle { cx: "12", cy: "21", r: "1" },
];
static ARROW_UP_FROM_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m18 9-6-6-6 6" },
StaticSvgElement::Path { d: "M12 3v14" },
StaticSvgElement::Path { d: "M5 21h14" },
];
static ARROW_UP_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M7 17V7h10" }, StaticSvgElement::Path { d: "M17 17 7 7" }];
static ARROW_UP_NARROW_WIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Path { d: "M11 12h4" },
StaticSvgElement::Path { d: "M11 16h7" },
StaticSvgElement::Path { d: "M11 20h10" },
];
static ARROW_UP_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M7 7h10v10" }, StaticSvgElement::Path { d: "M7 17 17 7" }];
static ARROW_UP_TO_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 3h14" },
StaticSvgElement::Path { d: "m18 13-6-6-6 6" },
StaticSvgElement::Path { d: "M12 7v14" },
];
static ARROW_UP_WIDE_NARROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Path { d: "M11 12h10" },
StaticSvgElement::Path { d: "M11 16h7" },
StaticSvgElement::Path { d: "M11 20h4" },
];
static ARROW_UP_Z_A_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 8 4-4 4 4" },
StaticSvgElement::Path { d: "M7 4v16" },
StaticSvgElement::Path { d: "M15 4h5l-5 6h5" },
StaticSvgElement::Path { d: "M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" },
StaticSvgElement::Path { d: "M20 18h-5" },
];
static ARROW_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m5 12 7-7 7 7" }, StaticSvgElement::Path { d: "M12 19V5" }];
static ARROWS_UP_FROM_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m4 6 3-3 3 3" },
StaticSvgElement::Path { d: "M7 17V3" },
StaticSvgElement::Path { d: "m14 6 3-3 3 3" },
StaticSvgElement::Path { d: "M17 17V3" },
StaticSvgElement::Path { d: "M4 21h16" },
];
static ASTERISK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v12" },
StaticSvgElement::Path { d: "M17.196 9 6.804 15" },
StaticSvgElement::Path { d: "m6.804 9 10.392 6" },
];
static AT_SIGN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Path { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" },
];
static ATOM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
StaticSvgElement::Path {
d: "M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z",
},
StaticSvgElement::Path {
d: "M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z",
},
];
static AUDIO_LINES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 10v3" },
StaticSvgElement::Path { d: "M6 6v11" },
StaticSvgElement::Path { d: "M10 3v18" },
StaticSvgElement::Path { d: "M14 8v7" },
StaticSvgElement::Path { d: "M18 5v13" },
StaticSvgElement::Path { d: "M22 10v3" },
];
static AUDIO_WAVEFORM_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2",
}];
static AWARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526",
},
StaticSvgElement::Circle { cx: "12", cy: "8", r: "6" },
];
static AXE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9" },
StaticSvgElement::Path {
d: "M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z",
},
];
static AXIS3_D_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.5 10.5 15 9" },
StaticSvgElement::Path { d: "M4 4v15a1 1 0 0 0 1 1h15" },
StaticSvgElement::Path { d: "M4.293 19.707 6 18" },
StaticSvgElement::Path { d: "m9 15 1.5-1.5" },
];
static BABY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5" },
StaticSvgElement::Path { d: "M15 12h.01" },
StaticSvgElement::Path {
d: "M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1",
},
StaticSvgElement::Path { d: "M9 12h.01" },
];
static BACKPACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z" },
StaticSvgElement::Path { d: "M8 10h8" },
StaticSvgElement::Path { d: "M8 18h8" },
StaticSvgElement::Path { d: "M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6" },
StaticSvgElement::Path { d: "M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2" },
];
static BADGE_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "16", x2: "12.01", y2: "16" },
];
static BADGE_CENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M12 7v10" },
StaticSvgElement::Path { d: "M15.4 10a4 4 0 1 0 0 4" },
];
static BADGE_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "m9 12 2 2 4-4" },
];
static BADGE_DOLLAR_SIGN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" },
StaticSvgElement::Path { d: "M12 18V6" },
];
static BADGE_EURO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M7 12h5" },
StaticSvgElement::Path { d: "M15 9.4a4 4 0 1 0 0 5.2" },
];
static BADGE_HELP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" },
StaticSvgElement::Line { x1: "12", y1: "17", x2: "12.01", y2: "17" },
];
static BADGE_INDIAN_RUPEE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M8 8h8" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "m13 17-5-1h1a4 4 0 0 0 0-8" },
];
static BADGE_INFO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Line { x1: "12", y1: "16", x2: "12", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12.01", y2: "8" },
];
static BADGE_JAPANESE_YEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "m9 8 3 3v7" },
StaticSvgElement::Path { d: "m12 11 3-3" },
StaticSvgElement::Path { d: "M9 12h6" },
StaticSvgElement::Path { d: "M9 16h6" },
];
static BADGE_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Line { x1: "8", y1: "12", x2: "16", y2: "12" },
];
static BADGE_PERCENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "M9 9h.01" },
StaticSvgElement::Path { d: "M15 15h.01" },
];
static BADGE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12", y2: "16" },
StaticSvgElement::Line { x1: "8", y1: "12", x2: "16", y2: "12" },
];
static BADGE_POUND_STERLING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M8 12h4" },
StaticSvgElement::Path { d: "M10 16V9.5a2.5 2.5 0 0 1 5 0" },
StaticSvgElement::Path { d: "M8 16h7" },
];
static BADGE_QUESTION_MARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" },
StaticSvgElement::Line { x1: "12", y1: "17", x2: "12.01", y2: "17" },
];
static BADGE_RUSSIAN_RUBLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M9 16h5" },
StaticSvgElement::Path { d: "M9 12h5a2 2 0 1 0 0-4h-3v9" },
];
static BADGE_SWISS_FRANC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Path { d: "M11 17V8h4" },
StaticSvgElement::Path { d: "M11 12h3" },
StaticSvgElement::Path { d: "M9 16h4" },
];
static BADGE_TURKISH_LIRA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 7v10a5 5 0 0 0 5-5" },
StaticSvgElement::Path { d: "m15 8-6 3" },
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76",
},
];
static BADGE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
},
StaticSvgElement::Line { x1: "15", y1: "9", x2: "9", y2: "15" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "15", y2: "15" },
];
static BADGE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",
}];
static BAGGAGE_CLAIM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2" },
StaticSvgElement::Path { d: "M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10" },
StaticSvgElement::Rect { x: "8", y: "6", width: "13", height: "8", rx: Some("1"), ry: None },
StaticSvgElement::Circle { cx: "18", cy: "20", r: "2" },
StaticSvgElement::Circle { cx: "9", cy: "20", r: "2" },
];
static BAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4.929 4.929 19.07 19.071" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static BANANA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5" },
StaticSvgElement::Path {
d: "M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z",
},
];
static BANDAGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10.01h.01" },
StaticSvgElement::Path { d: "M10 14.01h.01" },
StaticSvgElement::Path { d: "M14 10.01h.01" },
StaticSvgElement::Path { d: "M14 14.01h.01" },
StaticSvgElement::Path { d: "M18 6v11.5" },
StaticSvgElement::Path { d: "M6 6v12" },
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "12", rx: Some("2"), ry: None },
];
static BANKNOTE_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" },
StaticSvgElement::Path { d: "m16 19 3 3 3-3" },
StaticSvgElement::Path { d: "M18 12h.01" },
StaticSvgElement::Path { d: "M19 16v6" },
StaticSvgElement::Path { d: "M6 12h.01" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static BANKNOTE_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" },
StaticSvgElement::Path { d: "M18 12h.01" },
StaticSvgElement::Path { d: "M19 22v-6" },
StaticSvgElement::Path { d: "m22 19-3-3-3 3" },
StaticSvgElement::Path { d: "M6 12h.01" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static BANKNOTE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" },
StaticSvgElement::Path { d: "m17 17 5 5" },
StaticSvgElement::Path { d: "M18 12h.01" },
StaticSvgElement::Path { d: "m22 17-5 5" },
StaticSvgElement::Path { d: "M6 12h.01" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static BANKNOTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
StaticSvgElement::Path { d: "M6 12h.01M18 12h.01" },
];
static BARCODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 5v14" },
StaticSvgElement::Path { d: "M8 5v14" },
StaticSvgElement::Path { d: "M12 5v14" },
StaticSvgElement::Path { d: "M17 5v14" },
StaticSvgElement::Path { d: "M21 5v14" },
];
static BARREL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 3a41 41 0 0 0 0 18" },
StaticSvgElement::Path { d: "M14 3a41 41 0 0 1 0 18" },
StaticSvgElement::Path {
d: "M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z",
},
StaticSvgElement::Path { d: "M3.84 17h16.32" },
StaticSvgElement::Path { d: "M3.84 7h16.32" },
];
static BASELINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 20h16" },
StaticSvgElement::Path { d: "m6 16 6-12 6 12" },
StaticSvgElement::Path { d: "M8 12h8" },
];
static BATH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 4 8 6" },
StaticSvgElement::Path { d: "M17 19v2" },
StaticSvgElement::Path { d: "M2 12h20" },
StaticSvgElement::Path { d: "M7 19v2" },
StaticSvgElement::Path { d: "M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5" },
];
static BATTERY_CHARGING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m11 7-3 5h4l-3 5" },
StaticSvgElement::Path { d: "M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935" },
StaticSvgElement::Path { d: "M22 14v-4" },
StaticSvgElement::Path { d: "M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936" },
];
static BATTERY_FULL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10v4" },
StaticSvgElement::Path { d: "M14 10v4" },
StaticSvgElement::Path { d: "M22 14v-4" },
StaticSvgElement::Path { d: "M6 10v4" },
StaticSvgElement::Rect { x: "2", y: "6", width: "16", height: "12", rx: Some("2"), ry: None },
];
static BATTERY_LOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 14v-4" },
StaticSvgElement::Path { d: "M6 14v-4" },
StaticSvgElement::Rect { x: "2", y: "6", width: "16", height: "12", rx: Some("2"), ry: None },
];
static BATTERY_MEDIUM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 14v-4" },
StaticSvgElement::Path { d: "M22 14v-4" },
StaticSvgElement::Path { d: "M6 14v-4" },
StaticSvgElement::Rect { x: "2", y: "6", width: "16", height: "12", rx: Some("2"), ry: None },
];
static BATTERY_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 9v6" },
StaticSvgElement::Path { d: "M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605" },
StaticSvgElement::Path { d: "M22 14v-4" },
StaticSvgElement::Path { d: "M7 12h6" },
StaticSvgElement::Path { d: "M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606" },
];
static BATTERY_WARNING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 17h.01" },
StaticSvgElement::Path { d: "M10 7v6" },
StaticSvgElement::Path { d: "M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M22 14v-4" },
StaticSvgElement::Path { d: "M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2" },
];
static BATTERY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M 22 14 L 22 10" },
StaticSvgElement::Rect { x: "2", y: "6", width: "16", height: "12", rx: Some("2"), ry: None },
];
static BEAKER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4.5 3h15" },
StaticSvgElement::Path { d: "M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3" },
StaticSvgElement::Path { d: "M6 14h12" },
];
static BEAN_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1" },
StaticSvgElement::Path { d: "M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66" },
StaticSvgElement::Path { d: "M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static BEAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z",
},
StaticSvgElement::Path { d: "M5.341 10.62a4 4 0 1 0 5.279-5.28" },
];
static BED_DOUBLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8" },
StaticSvgElement::Path { d: "M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" },
StaticSvgElement::Path { d: "M12 4v6" },
StaticSvgElement::Path { d: "M2 18h20" },
];
static BED_SINGLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8" },
StaticSvgElement::Path { d: "M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4" },
StaticSvgElement::Path { d: "M3 18h18" },
];
static BED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 4v16" },
StaticSvgElement::Path { d: "M2 8h18a2 2 0 0 1 2 2v10" },
StaticSvgElement::Path { d: "M2 17h20" },
StaticSvgElement::Path { d: "M6 8v9" },
];
static BEEF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3",
},
StaticSvgElement::Path {
d: "m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5",
},
StaticSvgElement::Circle { cx: "12.5", cy: "8.5", r: "2.5" },
];
static BEER_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 13v5" },
StaticSvgElement::Path { d: "M17 11.47V8" },
StaticSvgElement::Path { d: "M17 11h1a3 3 0 0 1 2.745 4.211" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3" },
StaticSvgElement::Path { d: "M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268" },
StaticSvgElement::Path {
d: "M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12",
},
StaticSvgElement::Path { d: "M9 14.6V18" },
];
static BEER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 11h1a3 3 0 0 1 0 6h-1" },
StaticSvgElement::Path { d: "M9 12v6" },
StaticSvgElement::Path { d: "M13 12v6" },
StaticSvgElement::Path {
d: "M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z",
},
StaticSvgElement::Path { d: "M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8" },
];
static BELL_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.268 21a2 2 0 0 0 3.464 0" },
StaticSvgElement::Path {
d: "M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665",
},
StaticSvgElement::Circle { cx: "18", cy: "8", r: "3" },
];
static BELL_ELECTRIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18.518 17.347A7 7 0 0 1 14 19" },
StaticSvgElement::Path { d: "M18.8 4A11 11 0 0 1 20 9" },
StaticSvgElement::Path { d: "M9 9h.01" },
StaticSvgElement::Circle { cx: "20", cy: "16", r: "2" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "7" },
StaticSvgElement::Rect { x: "4", y: "16", width: "10", height: "6", rx: Some("2"), ry: None },
];
static BELL_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.268 21a2 2 0 0 0 3.464 0" },
StaticSvgElement::Path { d: "M15 8h6" },
StaticSvgElement::Path {
d: "M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12",
},
];
static BELL_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.268 21a2 2 0 0 0 3.464 0" },
StaticSvgElement::Path { d: "M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05" },
];
static BELL_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.268 21a2 2 0 0 0 3.464 0" },
StaticSvgElement::Path { d: "M15 8h6" },
StaticSvgElement::Path { d: "M18 5v6" },
StaticSvgElement::Path {
d: "M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332",
},
];
static BELL_RING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.268 21a2 2 0 0 0 3.464 0" },
StaticSvgElement::Path { d: "M22 8c0-2.3-.8-4.3-2-6" },
StaticSvgElement::Path {
d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",
},
StaticSvgElement::Path { d: "M4 2C2.8 3.7 2 5.7 2 8" },
];
static BELL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.268 21a2 2 0 0 0 3.464 0" },
StaticSvgElement::Path {
d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",
},
];
static BETWEEN_HORIZONTAL_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "13", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "m22 15-3-3 3-3" },
StaticSvgElement::Rect { x: "3", y: "14", width: "13", height: "7", rx: Some("1"), ry: None },
];
static BETWEEN_HORIZONTAL_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "3", width: "13", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "m2 9 3 3-3 3" },
StaticSvgElement::Rect { x: "8", y: "14", width: "13", height: "7", rx: Some("1"), ry: None },
];
static BETWEEN_VERTICAL_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "7", height: "13", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "m9 22 3-3 3 3" },
StaticSvgElement::Rect { x: "14", y: "3", width: "7", height: "13", rx: Some("1"), ry: None },
];
static BETWEEN_VERTICAL_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "8", width: "7", height: "13", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "m15 2-3 3-3-3" },
StaticSvgElement::Rect { x: "14", y: "8", width: "7", height: "13", rx: Some("1"), ry: None },
];
static BICEPS_FLEXED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1",
},
StaticSvgElement::Path { d: "M15 14a5 5 0 0 0-7.584 2" },
StaticSvgElement::Path { d: "M9.964 6.825C8.019 7.977 9.5 13 8 15" },
];
static BIKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "18.5", cy: "17.5", r: "3.5" },
StaticSvgElement::Circle { cx: "5.5", cy: "17.5", r: "3.5" },
StaticSvgElement::Circle { cx: "15", cy: "5", r: "1" },
StaticSvgElement::Path { d: "M12 17.5V14l-3-3 4-3 2 3h2" },
];
static BINARY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "14", y: "14", width: "4", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "6", y: "4", width: "4", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 20h4" },
StaticSvgElement::Path { d: "M14 10h4" },
StaticSvgElement::Path { d: "M6 14h2v6" },
StaticSvgElement::Path { d: "M14 4h2v6" },
];
static BINOCULARS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10h4" },
StaticSvgElement::Path { d: "M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3" },
StaticSvgElement::Path {
d: "M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z",
},
StaticSvgElement::Path { d: "M 22 16 L 2 16" },
StaticSvgElement::Path {
d: "M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z",
},
StaticSvgElement::Path { d: "M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3" },
];
static BIOHAZARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "11.9", r: "2" },
StaticSvgElement::Path { d: "M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6" },
StaticSvgElement::Path { d: "m8.9 10.1 1.4.8" },
StaticSvgElement::Path { d: "M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5" },
StaticSvgElement::Path { d: "m15.1 10.1-1.4.8" },
StaticSvgElement::Path { d: "M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2" },
StaticSvgElement::Path { d: "M12 13.9v1.6" },
StaticSvgElement::Path { d: "M13.5 5.4c-1-.2-2-.2-3 0" },
StaticSvgElement::Path { d: "M17 16.4c.7-.7 1.2-1.6 1.5-2.5" },
StaticSvgElement::Path { d: "M5.5 13.9c.3.9.8 1.8 1.5 2.5" },
];
static BIRD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 7h.01" },
StaticSvgElement::Path { d: "M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20" },
StaticSvgElement::Path { d: "m20 7 2 .5-2 .5" },
StaticSvgElement::Path { d: "M10 18v3" },
StaticSvgElement::Path { d: "M14 17.75V21" },
StaticSvgElement::Path { d: "M7 18a6 6 0 0 0 3.84-10.61" },
];
static BITCOIN_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",
}];
static BLEND_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "9", cy: "9", r: "7" }, StaticSvgElement::Circle { cx: "15", cy: "15", r: "7" }];
static BLINDS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3h18" },
StaticSvgElement::Path { d: "M20 7H8" },
StaticSvgElement::Path { d: "M20 11H8" },
StaticSvgElement::Path { d: "M10 19h10" },
StaticSvgElement::Path { d: "M8 15h12" },
StaticSvgElement::Path { d: "M4 3v14" },
StaticSvgElement::Circle { cx: "4", cy: "19", r: "2" },
];
static BLOCKS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2",
},
StaticSvgElement::Rect { x: "14", y: "2", width: "8", height: "8", rx: Some("1"), ry: None },
];
static BLUETOOTH_CONNECTED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m7 7 10 10-5 5V2l5 5L7 17" },
StaticSvgElement::Line { x1: "18", y1: "12", x2: "21", y2: "12" },
StaticSvgElement::Line { x1: "3", y1: "12", x2: "6", y2: "12" },
];
static BLUETOOTH_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m17 17-5 5V12l-5 5" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M14.5 9.5 17 7l-5-5v4.5" },
];
static BLUETOOTH_SEARCHING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m7 7 10 10-5 5V2l5 5L7 17" },
StaticSvgElement::Path { d: "M20.83 14.83a4 4 0 0 0 0-5.66" },
StaticSvgElement::Path { d: "M18 12h.01" },
];
static BLUETOOTH_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "m7 7 10 10-5 5V2l5 5L7 17" }];
static BOLD_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" }];
static BOLT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",
},
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
];
static BOMB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11", cy: "13", r: "9" },
StaticSvgElement::Path { d: "M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95" },
StaticSvgElement::Path { d: "m22 2-1.5 1.5" },
];
static BONE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z",
}];
static BOOK_A_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "m8 13 4-7 4 7" },
StaticSvgElement::Path { d: "M9.1 11h5.7" },
];
static BOOK_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13h.01" },
StaticSvgElement::Path { d: "M12 6v3" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
];
static BOOK_AUDIO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v7" },
StaticSvgElement::Path { d: "M16 8v3" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "M8 8v3" },
];
static BOOK_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "m9 9.5 2 2 4-4" },
];
static BOOK_COPY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 16V4a2 2 0 0 1 2-2h11" },
StaticSvgElement::Path {
d: "M22 18H11a2 2 0 1 0 0 4h10.5a.5.5 0 0 0 .5-.5v-15a.5.5 0 0 0-.5-.5H11a2 2 0 0 0-2 2v12",
},
StaticSvgElement::Path { d: "M5 14H4a2 2 0 1 0 0 4h1" },
];
static BOOK_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17h1.5" },
StaticSvgElement::Path { d: "M12 22h1.5" },
StaticSvgElement::Path { d: "M12 2h1.5" },
StaticSvgElement::Path { d: "M17.5 22H19a1 1 0 0 0 1-1" },
StaticSvgElement::Path { d: "M17.5 2H19a1 1 0 0 1 1 1v1.5" },
StaticSvgElement::Path { d: "M20 14v3h-2.5" },
StaticSvgElement::Path { d: "M20 8.5V10" },
StaticSvgElement::Path { d: "M4 10V8.5" },
StaticSvgElement::Path { d: "M4 19.5V14" },
StaticSvgElement::Path { d: "M4 4.5A2.5 2.5 0 0 1 6.5 2H8" },
StaticSvgElement::Path { d: "M8 22H6.5a1 1 0 0 1 0-5H8" },
];
static BOOK_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13V7" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "m9 10 3 3 3-3" },
];
static BOOK_HEADPHONES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "M8 12v-2a4 4 0 0 1 8 0v2" },
StaticSvgElement::Circle { cx: "15", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "9", cy: "12", r: "1" },
];
static BOOK_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16 8.2A2.22 2.22 0 0 0 13.8 6c-.8 0-1.4.3-1.8.9-.4-.6-1-.9-1.8-.9A2.22 2.22 0 0 0 8 8.2c0 .6.3 1.2.7 1.6A226.652 226.652 0 0 0 12 13a404 404 0 0 0 3.3-3.1 2.413 2.413 0 0 0 .7-1.7",
},
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
];
static BOOK_IMAGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Circle { cx: "10", cy: "8", r: "2" },
];
static BOOK_KEY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 3 1 1" },
StaticSvgElement::Path { d: "m20 2-4.5 4.5" },
StaticSvgElement::Path { d: "M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" },
StaticSvgElement::Path { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844" },
StaticSvgElement::Circle { cx: "14", cy: "8", r: "2" },
];
static BOOK_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 6V4a2 2 0 1 0-4 0v2" },
StaticSvgElement::Path { d: "M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" },
StaticSvgElement::Path { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10" },
StaticSvgElement::Rect { x: "12", y: "6", width: "8", height: "5", rx: Some("1"), ry: None },
];
static BOOK_MARKED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v8l3-3 3 3V2" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
];
static BOOK_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "M9 10h6" },
];
static BOOK_OPEN_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 21V7" },
StaticSvgElement::Path { d: "m16 12 2 2 4-4" },
StaticSvgElement::Path {
d: "M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",
},
];
static BOOK_OPEN_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 7v14" },
StaticSvgElement::Path { d: "M16 12h2" },
StaticSvgElement::Path { d: "M16 8h2" },
StaticSvgElement::Path {
d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",
},
StaticSvgElement::Path { d: "M6 12h2" },
StaticSvgElement::Path { d: "M6 8h2" },
];
static BOOK_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 7v14" },
StaticSvgElement::Path {
d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",
},
];
static BOOK_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 7v6" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "M9 10h6" },
];
static BOOK_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "M8 11h8" },
StaticSvgElement::Path { d: "M8 7h6" },
];
static BOOK_TYPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 13h4" },
StaticSvgElement::Path { d: "M12 6v7" },
StaticSvgElement::Path { d: "M16 8V6H8v2" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
];
static BOOK_UP2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13V7" },
StaticSvgElement::Path { d: "M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" },
StaticSvgElement::Path { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2" },
StaticSvgElement::Path { d: "m9 10 3-3 3 3" },
StaticSvgElement::Path { d: "m9 5 3-3 3 3" },
];
static BOOK_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13V7" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "m9 10 3-3 3 3" },
];
static BOOK_USER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 13a3 3 0 1 0-6 0" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Circle { cx: "12", cy: "8", r: "2" },
];
static BOOK_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.5 7-5 5" },
StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
},
StaticSvgElement::Path { d: "m9.5 7 5 5" },
];
static BOOK_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",
}];
static BOOKMARK_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z" },
StaticSvgElement::Path { d: "m9 10 2 2 4-4" },
];
static BOOKMARK_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" },
StaticSvgElement::Line { x1: "15", y1: "10", x2: "9", y2: "10" },
];
static BOOKMARK_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" },
StaticSvgElement::Line { x1: "12", y1: "7", x2: "12", y2: "13" },
StaticSvgElement::Line { x1: "15", y1: "10", x2: "9", y2: "10" },
];
static BOOKMARK_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z" },
StaticSvgElement::Path { d: "m14.5 7.5-5 5" },
StaticSvgElement::Path { d: "m9.5 7.5 5 5" },
];
static BOOKMARK_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" }];
static BOOM_BOX_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" },
StaticSvgElement::Path { d: "M8 8v1" },
StaticSvgElement::Path { d: "M12 8v1" },
StaticSvgElement::Path { d: "M16 8v1" },
StaticSvgElement::Rect { x: "2", y: "9", width: "20", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "8", cy: "15", r: "2" },
StaticSvgElement::Circle { cx: "16", cy: "15", r: "2" },
];
static BOT_MESSAGE_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6V2H8" },
StaticSvgElement::Path { d: "m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z" },
StaticSvgElement::Path { d: "M2 12h2" },
StaticSvgElement::Path { d: "M9 11v2" },
StaticSvgElement::Path { d: "M15 11v2" },
StaticSvgElement::Path { d: "M20 12h2" },
];
static BOT_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.67 8H18a2 2 0 0 1 2 2v4.33" },
StaticSvgElement::Path { d: "M2 14h2" },
StaticSvgElement::Path { d: "M20 14h2" },
StaticSvgElement::Path { d: "M22 22 2 2" },
StaticSvgElement::Path { d: "M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586" },
StaticSvgElement::Path { d: "M9 13v2" },
StaticSvgElement::Path { d: "M9.67 4H12v2.33" },
];
static BOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 8V4H8" },
StaticSvgElement::Rect { x: "4", y: "8", width: "16", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 14h2" },
StaticSvgElement::Path { d: "M20 14h2" },
StaticSvgElement::Path { d: "M15 13v2" },
StaticSvgElement::Path { d: "M9 13v2" },
];
static BOTTLE_WINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z",
},
StaticSvgElement::Path { d: "M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4" },
];
static BOW_ARROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 3h4v4" },
StaticSvgElement::Path { d: "M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17" },
StaticSvgElement::Path { d: "M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05" },
StaticSvgElement::Path {
d: "M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z",
},
StaticSvgElement::Path { d: "M9.707 14.293 21 3" },
];
// static BOX_ELEMENTS: &[StaticSvgElement] = &[
// StaticSvgElement::Path { d: "M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z" },
// StaticSvgElement::Path { d: "m3.3 7 8.7 5 8.7-5" },
// StaticSvgElement::Path { d: "M12 22V12" },];
static BOXES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",
},
StaticSvgElement::Path { d: "m7 16.5-4.74-2.85" },
StaticSvgElement::Path { d: "m7 16.5 5-3" },
StaticSvgElement::Path { d: "M7 16.5v5.17" },
StaticSvgElement::Path {
d: "M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",
},
StaticSvgElement::Path { d: "m17 16.5-5-3" },
StaticSvgElement::Path { d: "m17 16.5 4.74-2.85" },
StaticSvgElement::Path { d: "M17 16.5v5.17" },
StaticSvgElement::Path {
d: "M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",
},
StaticSvgElement::Path { d: "M12 8 7.26 5.15" },
StaticSvgElement::Path { d: "m12 8 4.74-2.85" },
StaticSvgElement::Path { d: "M12 13.5V8" },
];
static BRACES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1" },
StaticSvgElement::Path { d: "M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1" },
];
static BRACKETS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3" },
StaticSvgElement::Path { d: "M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3" },
];
static BRAIN_CIRCUIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",
},
StaticSvgElement::Path { d: "M9 13a4.5 4.5 0 0 0 3-4" },
StaticSvgElement::Path { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5" },
StaticSvgElement::Path { d: "M3.477 10.896a4 4 0 0 1 .585-.396" },
StaticSvgElement::Path { d: "M6 18a4 4 0 0 1-1.967-.516" },
StaticSvgElement::Path { d: "M12 13h4" },
StaticSvgElement::Path { d: "M12 18h6a2 2 0 0 1 2 2v1" },
StaticSvgElement::Path { d: "M12 8h8" },
StaticSvgElement::Path { d: "M16 8V5a2 2 0 0 1 2-2" },
StaticSvgElement::Circle { cx: "16", cy: "13", r: ".5" },
StaticSvgElement::Circle { cx: "18", cy: "3", r: ".5" },
StaticSvgElement::Circle { cx: "20", cy: "21", r: ".5" },
StaticSvgElement::Circle { cx: "20", cy: "8", r: ".5" },
];
static BRAIN_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10.852 14.772-.383.923" },
StaticSvgElement::Path { d: "m10.852 9.228-.383-.923" },
StaticSvgElement::Path { d: "m13.148 14.772.382.924" },
StaticSvgElement::Path { d: "m13.531 8.305-.383.923" },
StaticSvgElement::Path { d: "m14.772 10.852.923-.383" },
StaticSvgElement::Path { d: "m14.772 13.148.923.383" },
StaticSvgElement::Path {
d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771",
},
StaticSvgElement::Path { d: "M17.998 5.125a4 4 0 0 1 2.525 5.771" },
StaticSvgElement::Path { d: "M19.505 10.294a4 4 0 0 1-1.5 7.706" },
StaticSvgElement::Path { d: "M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516" },
StaticSvgElement::Path { d: "M4.5 10.291A4 4 0 0 0 6 18" },
StaticSvgElement::Path { d: "M6.002 5.125a3 3 0 0 0 .4 1.375" },
StaticSvgElement::Path { d: "m9.228 10.852-.923-.383" },
StaticSvgElement::Path { d: "m9.228 13.148-.923.383" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
];
static BRAIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 18V5" },
StaticSvgElement::Path { d: "M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4" },
StaticSvgElement::Path { d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5" },
StaticSvgElement::Path { d: "M17.997 5.125a4 4 0 0 1 2.526 5.77" },
StaticSvgElement::Path { d: "M18 18a4 4 0 0 0 2-7.464" },
StaticSvgElement::Path { d: "M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517" },
StaticSvgElement::Path { d: "M6 18a4 4 0 0 1-2-7.464" },
StaticSvgElement::Path { d: "M6.003 5.125a4 4 0 0 0-2.526 5.77" },
];
static BRICK_WALL_FIRE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 3v2.107" },
StaticSvgElement::Path {
d: "M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9",
},
StaticSvgElement::Path { d: "M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938" },
StaticSvgElement::Path { d: "M3 15h5.253" },
StaticSvgElement::Path { d: "M3 9h8.228" },
StaticSvgElement::Path { d: "M8 15v6" },
StaticSvgElement::Path { d: "M8 3v6" },
];
static BRICK_WALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 9v6" },
StaticSvgElement::Path { d: "M16 15v6" },
StaticSvgElement::Path { d: "M16 3v6" },
StaticSvgElement::Path { d: "M3 15h18" },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Path { d: "M8 15v6" },
StaticSvgElement::Path { d: "M8 3v6" },
];
static BRIEFCASE_BUSINESS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2" },
StaticSvgElement::Path { d: "M22 13a18.15 18.15 0 0 1-20 0" },
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "14", rx: Some("2"), ry: None },
];
static BRIEFCASE_CONVEYOR_BELT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 20v2" },
StaticSvgElement::Path { d: "M14 20v2" },
StaticSvgElement::Path { d: "M18 20v2" },
StaticSvgElement::Path { d: "M21 20H3" },
StaticSvgElement::Path { d: "M6 20v2" },
StaticSvgElement::Path { d: "M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12" },
StaticSvgElement::Rect { x: "4", y: "6", width: "16", height: "10", rx: Some("2"), ry: None },
];
static BRIEFCASE_MEDICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 11v4" },
StaticSvgElement::Path { d: "M14 13h-4" },
StaticSvgElement::Path { d: "M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2" },
StaticSvgElement::Path { d: "M18 6v14" },
StaticSvgElement::Path { d: "M6 6v14" },
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "14", rx: Some("2"), ry: None },
];
static BRIEFCASE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" },
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "14", rx: Some("2"), ry: None },
];
static BRING_TO_FRONT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "8", width: "8", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2" },
];
static BRUSH_CLEANING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 22-1-4" },
StaticSvgElement::Path {
d: "M19 13.99a1 1 0 0 0 1-1V12a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v.99a1 1 0 0 0 1 1",
},
StaticSvgElement::Path { d: "M5 14h14l1.973 6.767A1 1 0 0 1 20 22H4a1 1 0 0 1-.973-1.233z" },
StaticSvgElement::Path { d: "m8 22 1-4" },
];
static BRUSH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m11 10 3 3" },
StaticSvgElement::Path { d: "M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z" },
StaticSvgElement::Path { d: "M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031" },
];
static BUBBLES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.2 14.8a2 2 0 0 1 2 2" },
StaticSvgElement::Circle { cx: "18.5", cy: "8.5", r: "3.5" },
StaticSvgElement::Circle { cx: "7.5", cy: "16.5", r: "5.5" },
StaticSvgElement::Circle { cx: "7.5", cy: "4.5", r: "2.5" },
];
static BUG_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2" },
StaticSvgElement::Path { d: "M14.12 3.88 16 2" },
StaticSvgElement::Path { d: "M22 13h-4v-2a4 4 0 0 0-4-4h-1.3" },
StaticSvgElement::Path { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13" },
StaticSvgElement::Path { d: "M12 20v-8" },
StaticSvgElement::Path { d: "M6 13H2" },
StaticSvgElement::Path { d: "M3 21c0-2.1 1.7-3.9 3.8-4" },
];
static BUG_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97" },
StaticSvgElement::Path {
d: "M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",
},
StaticSvgElement::Path { d: "M14.12 3.88 16 2" },
StaticSvgElement::Path { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" },
StaticSvgElement::Path { d: "M3 21c0-2.1 1.7-3.9 3.8-4" },
StaticSvgElement::Path { d: "M6 13H2" },
StaticSvgElement::Path { d: "M6.53 9C4.6 8.8 3 7.1 3 5" },
StaticSvgElement::Path { d: "m8 2 1.88 1.88" },
StaticSvgElement::Path { d: "M9 7.13v-1a3 3 0 0 1 4.18-2.895 3 3 0 0 1 1.821 2.896v1" },
];
static BUG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m8 2 1.88 1.88" },
StaticSvgElement::Path { d: "M14.12 3.88 16 2" },
StaticSvgElement::Path { d: "M9 7.13v-1a3.003 3.003 0 1 1 6 0v1" },
StaticSvgElement::Path { d: "M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6" },
StaticSvgElement::Path { d: "M12 20v-9" },
StaticSvgElement::Path { d: "M6.53 9C4.6 8.8 3 7.1 3 5" },
StaticSvgElement::Path { d: "M6 13H2" },
StaticSvgElement::Path { d: "M3 21c0-2.1 1.7-3.9 3.8-4" },
StaticSvgElement::Path { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" },
StaticSvgElement::Path { d: "M22 13h-4" },
StaticSvgElement::Path { d: "M17.2 17c2.1.1 3.8 1.9 3.8 4" },
];
static BUILDING2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z" },
StaticSvgElement::Path { d: "M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2" },
StaticSvgElement::Path { d: "M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M10 6h4" },
StaticSvgElement::Path { d: "M10 10h4" },
StaticSvgElement::Path { d: "M10 14h4" },
StaticSvgElement::Path { d: "M10 18h4" },
];
static BUILDING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M9 22v-4h6v4" },
StaticSvgElement::Path { d: "M8 6h.01" },
StaticSvgElement::Path { d: "M16 6h.01" },
StaticSvgElement::Path { d: "M12 6h.01" },
StaticSvgElement::Path { d: "M12 10h.01" },
StaticSvgElement::Path { d: "M12 14h.01" },
StaticSvgElement::Path { d: "M16 10h.01" },
StaticSvgElement::Path { d: "M16 14h.01" },
StaticSvgElement::Path { d: "M8 10h.01" },
StaticSvgElement::Path { d: "M8 14h.01" },
];
static BUS_FRONT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 6 2 7" },
StaticSvgElement::Path { d: "M10 6h4" },
StaticSvgElement::Path { d: "m22 7-2-1" },
StaticSvgElement::Rect { x: "4", y: "3", width: "16", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M4 11h16" },
StaticSvgElement::Path { d: "M8 15h.01" },
StaticSvgElement::Path { d: "M16 15h.01" },
StaticSvgElement::Path { d: "M6 19v2" },
StaticSvgElement::Path { d: "M18 21v-2" },
];
static BUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 6v6" },
StaticSvgElement::Path { d: "M15 6v6" },
StaticSvgElement::Path { d: "M2 12h19.6" },
StaticSvgElement::Path {
d: "M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3",
},
StaticSvgElement::Circle { cx: "7", cy: "18", r: "2" },
StaticSvgElement::Path { d: "M9 18h5" },
StaticSvgElement::Circle { cx: "16", cy: "18", r: "2" },
];
static CABLE_CAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 3h.01" },
StaticSvgElement::Path { d: "M14 2h.01" },
StaticSvgElement::Path { d: "m2 9 20-5" },
StaticSvgElement::Path { d: "M12 12V6.5" },
StaticSvgElement::Rect { x: "4", y: "12", width: "16", height: "10", rx: Some("3"), ry: None },
StaticSvgElement::Path { d: "M9 12v5" },
StaticSvgElement::Path { d: "M15 12v5" },
StaticSvgElement::Path { d: "M4 17h16" },
];
static CABLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z" },
StaticSvgElement::Path { d: "M17 21v-2" },
StaticSvgElement::Path { d: "M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10" },
StaticSvgElement::Path { d: "M21 21v-2" },
StaticSvgElement::Path { d: "M3 5V3" },
StaticSvgElement::Path { d: "M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z" },
StaticSvgElement::Path { d: "M7 5V3" },
];
static CAKE_SLICE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "9", cy: "7", r: "2" },
StaticSvgElement::Path { d: "M7.2 7.9 3 11v9c0 .6.4 1 1 1h16c.6 0 1-.4 1-1v-9c0-2-3-6-7-8l-3.6 2.6" },
StaticSvgElement::Path { d: "M16 13H3" },
StaticSvgElement::Path { d: "M16 17H3" },
];
static CAKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8" },
StaticSvgElement::Path { d: "M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1" },
StaticSvgElement::Path { d: "M2 21h20" },
StaticSvgElement::Path { d: "M7 8v3" },
StaticSvgElement::Path { d: "M12 8v3" },
StaticSvgElement::Path { d: "M17 8v3" },
StaticSvgElement::Path { d: "M7 4h.01" },
StaticSvgElement::Path { d: "M12 4h.01" },
StaticSvgElement::Path { d: "M17 4h.01" },
];
static CALCULATOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Line { x1: "8", y1: "6", x2: "16", y2: "6" },
StaticSvgElement::Line { x1: "16", y1: "14", x2: "16", y2: "18" },
StaticSvgElement::Path { d: "M16 10h.01" },
StaticSvgElement::Path { d: "M12 10h.01" },
StaticSvgElement::Path { d: "M8 10h.01" },
StaticSvgElement::Path { d: "M12 14h.01" },
StaticSvgElement::Path { d: "M8 14h.01" },
StaticSvgElement::Path { d: "M12 18h.01" },
StaticSvgElement::Path { d: "M8 18h.01" },
];
static CALENDAR1_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 14h1v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
];
static CALENDAR_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14 18 4 4 4-4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M18 14v8" },
StaticSvgElement::Path { d: "M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
];
static CALENDAR_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14 18 4-4 4 4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M18 22v-8" },
StaticSvgElement::Path { d: "M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
];
static CALENDAR_CHECK2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "m16 20 2 2 4-4" },
];
static CALENDAR_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "m9 16 2 2 4-4" },
];
static CALENDAR_CLOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 14v2.2l1.6 1" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5" },
StaticSvgElement::Path { d: "M3 10h5" },
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Circle { cx: "16", cy: "16", r: "6" },
];
static CALENDAR_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15.228 16.852-.923-.383" },
StaticSvgElement::Path { d: "m15.228 19.148-.923.383" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "m16.47 14.305.382.923" },
StaticSvgElement::Path { d: "m16.852 20.772-.383.924" },
StaticSvgElement::Path { d: "m19.148 15.228.383-.923" },
StaticSvgElement::Path { d: "m19.53 21.696-.382-.924" },
StaticSvgElement::Path { d: "m20.772 16.852.924-.383" },
StaticSvgElement::Path { d: "m20.772 19.148.924.383" },
StaticSvgElement::Path { d: "M21 11V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static CALENDAR_DAYS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 14h.01" },
StaticSvgElement::Path { d: "M12 14h.01" },
StaticSvgElement::Path { d: "M16 14h.01" },
StaticSvgElement::Path { d: "M8 18h.01" },
StaticSvgElement::Path { d: "M12 18h.01" },
StaticSvgElement::Path { d: "M16 18h.01" },
];
static CALENDAR_FOLD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M15 22v-4a2 2 0 0 1 2-2h4" },
];
static CALENDAR_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 10h18V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7" },
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path {
d: "M21.29 14.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 22l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",
},
];
static CALENDAR_MINUS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M10 16h4" },
];
static CALENDAR_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 19h6" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
];
static CALENDAR_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18" },
StaticSvgElement::Path { d: "M21 15.5V6a2 2 0 0 0-2-2H9.5" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M3 10h7" },
StaticSvgElement::Path { d: "M21 10h-5.5" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static CALENDAR_PLUS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M10 16h4" },
StaticSvgElement::Path { d: "M12 14v4" },
];
static CALENDAR_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 19h6" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M19 16v6" },
StaticSvgElement::Path { d: "M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
];
static CALENDAR_RANGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M17 14h-6" },
StaticSvgElement::Path { d: "M13 18H7" },
StaticSvgElement::Path { d: "M7 14h.01" },
StaticSvgElement::Path { d: "M17 18h.01" },
];
static CALENDAR_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25" },
StaticSvgElement::Path { d: "m22 22-1.875-1.875" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static CALENDAR_SYNC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 10v4h4" },
StaticSvgElement::Path { d: "m11 14 1.535-1.605a5 5 0 0 1 8 1.5" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "m21 18-1.535 1.605a5 5 0 0 1-8-1.5" },
StaticSvgElement::Path { d: "M21 22v-4h-4" },
StaticSvgElement::Path { d: "M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3" },
StaticSvgElement::Path { d: "M3 10h4" },
StaticSvgElement::Path { d: "M8 2v4" },
];
static CALENDAR_X2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "m17 22 5-5" },
StaticSvgElement::Path { d: "m17 17 5 5" },
];
static CALENDAR_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 10h18" },
StaticSvgElement::Path { d: "m14 14-4 4" },
StaticSvgElement::Path { d: "m10 14 4 4" },
];
static CALENDAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 10h18" },
];
static CAMERA_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
StaticSvgElement::Path { d: "M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5" },
StaticSvgElement::Path { d: "M14.121 15.121A3 3 0 1 1 9.88 10.88" },
];
static CAMERA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z",
},
StaticSvgElement::Circle { cx: "12", cy: "13", r: "3" },
];
static CANDY_CANE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z",
},
StaticSvgElement::Path { d: "M17.75 7 15 2.1" },
StaticSvgElement::Path { d: "M10.9 4.8 13 9" },
StaticSvgElement::Path { d: "m7.9 9.7 2 4.4" },
StaticSvgElement::Path { d: "M4.9 14.7 7 18.9" },
];
static CANDY_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10v7.9" },
StaticSvgElement::Path { d: "M11.802 6.145a5 5 0 0 1 6.053 6.053" },
StaticSvgElement::Path { d: "M14 6.1v2.243" },
StaticSvgElement::Path { d: "m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965" },
StaticSvgElement::Path {
d: "M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",
},
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path {
d: "M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",
},
];
static CANDY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 7v10.9" },
StaticSvgElement::Path { d: "M14 6.1V17" },
StaticSvgElement::Path {
d: "M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",
},
StaticSvgElement::Path {
d: "M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07",
},
StaticSvgElement::Path {
d: "M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",
},
];
static CANNABIS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22v-4" },
StaticSvgElement::Path {
d: "M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6",
},
];
static CAPTIONS_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.5 5H19a2 2 0 0 1 2 2v8.5" },
StaticSvgElement::Path { d: "M17 11h-.5" },
StaticSvgElement::Path { d: "M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M7 11h4" },
StaticSvgElement::Path { d: "M7 15h2.5" },
];
static CAPTIONS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "5", width: "18", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M7 15h4M15 15h2M7 11h2M13 11h4" },
];
static CAR_FRONT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8" },
StaticSvgElement::Path { d: "M7 14h.01" },
StaticSvgElement::Path { d: "M17 14h.01" },
StaticSvgElement::Rect { x: "3", y: "10", width: "18", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M5 18v2" },
StaticSvgElement::Path { d: "M19 18v2" },
];
static CAR_TAXI_FRONT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2h4" },
StaticSvgElement::Path { d: "m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8" },
StaticSvgElement::Path { d: "M7 14h.01" },
StaticSvgElement::Path { d: "M17 14h.01" },
StaticSvgElement::Rect { x: "3", y: "10", width: "18", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M5 18v2" },
StaticSvgElement::Path { d: "M19 18v2" },
];
static CAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2",
},
StaticSvgElement::Circle { cx: "7", cy: "17", r: "2" },
StaticSvgElement::Path { d: "M9 17h6" },
StaticSvgElement::Circle { cx: "17", cy: "17", r: "2" },
];
static CARAVAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2" },
StaticSvgElement::Path { d: "M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2" },
StaticSvgElement::Path { d: "M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9" },
StaticSvgElement::Circle { cx: "8", cy: "19", r: "2" },
];
static CARD_SIM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 14v4" },
StaticSvgElement::Path {
d: "M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z",
},
StaticSvgElement::Path { d: "M8 14h8" },
StaticSvgElement::Rect { x: "8", y: "10", width: "8", height: "8", rx: Some("1"), ry: None },
];
static CARROT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46",
},
StaticSvgElement::Path { d: "M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z" },
StaticSvgElement::Path { d: "M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z" },
];
static CASE_LOWER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "7", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M10 9v6" },
StaticSvgElement::Circle { cx: "17", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M14 7v8" },
];
static CASE_SENSITIVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 15 4-8 4 8" },
StaticSvgElement::Path { d: "M4 13h6" },
StaticSvgElement::Circle { cx: "18", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M21 9v6" },
];
static CASE_UPPER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 15 4-8 4 8" },
StaticSvgElement::Path { d: "M4 13h6" },
StaticSvgElement::Path { d: "M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4" },
];
static CASSETTE_TAPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "8", cy: "10", r: "2" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Circle { cx: "16", cy: "10", r: "2" },
StaticSvgElement::Path { d: "m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3" },
];
static CAST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6" },
StaticSvgElement::Path { d: "M2 12a9 9 0 0 1 8 8" },
StaticSvgElement::Path { d: "M2 16a5 5 0 0 1 4 4" },
StaticSvgElement::Line { x1: "2", y1: "20", x2: "2.01", y2: "20" },
];
static CASTLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 5V3" },
StaticSvgElement::Path { d: "M14 5V3" },
StaticSvgElement::Path { d: "M15 21v-3a3 3 0 0 0-6 0v3" },
StaticSvgElement::Path { d: "M18 3v8" },
StaticSvgElement::Path { d: "M18 5H6" },
StaticSvgElement::Path { d: "M22 11H2" },
StaticSvgElement::Path { d: "M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9" },
StaticSvgElement::Path { d: "M6 3v8" },
];
static CAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z",
},
StaticSvgElement::Path { d: "M8 14v.5" },
StaticSvgElement::Path { d: "M16 14v.5" },
StaticSvgElement::Path { d: "M11.25 16.25h1.5L12 17l-.75-.75Z" },
];
static CCTV_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97" },
StaticSvgElement::Path {
d: "M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z",
},
StaticSvgElement::Path { d: "M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15" },
StaticSvgElement::Path { d: "M2 21v-4" },
StaticSvgElement::Path { d: "M7 9h.01" },
];
static CHART_AREA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path {
d: "M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z",
},
];
static CHART_BAR_BIG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Rect { x: "7", y: "13", width: "9", height: "4", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "7", y: "5", width: "12", height: "4", rx: Some("1"), ry: None },
];
static CHART_BAR_DECREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M7 11h8" },
StaticSvgElement::Path { d: "M7 16h3" },
StaticSvgElement::Path { d: "M7 6h12" },
];
static CHART_BAR_INCREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M7 11h8" },
StaticSvgElement::Path { d: "M7 16h12" },
StaticSvgElement::Path { d: "M7 6h3" },
];
static CHART_BAR_STACKED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 13v4" },
StaticSvgElement::Path { d: "M15 5v4" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Rect { x: "7", y: "13", width: "9", height: "4", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "7", y: "5", width: "12", height: "4", rx: Some("1"), ry: None },
];
static CHART_BAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M7 16h8" },
StaticSvgElement::Path { d: "M7 11h12" },
StaticSvgElement::Path { d: "M7 6h3" },
];
static CHART_CANDLESTICK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 5v4" },
StaticSvgElement::Rect { x: "7", y: "9", width: "4", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M9 15v2" },
StaticSvgElement::Path { d: "M17 3v2" },
StaticSvgElement::Rect { x: "15", y: "5", width: "4", height: "8", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M17 13v3" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
];
static CHART_COLUMN_BIG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Rect { x: "15", y: "5", width: "4", height: "12", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "7", y: "8", width: "4", height: "9", rx: Some("1"), ry: None },
];
static CHART_COLUMN_DECREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 17V9" },
StaticSvgElement::Path { d: "M18 17v-3" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M8 17V5" },
];
static CHART_COLUMN_INCREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 17V9" },
StaticSvgElement::Path { d: "M18 17V5" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M8 17v-3" },
];
static CHART_COLUMN_STACKED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 13H7" },
StaticSvgElement::Path { d: "M19 9h-4" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Rect { x: "15", y: "5", width: "4", height: "12", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "7", y: "8", width: "4", height: "9", rx: Some("1"), ry: None },
];
static CHART_COLUMN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M18 17V9" },
StaticSvgElement::Path { d: "M13 17V5" },
StaticSvgElement::Path { d: "M8 17v-3" },
];
static CHART_GANTT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 6h8" },
StaticSvgElement::Path { d: "M12 16h6" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M8 11h7" },
];
static CHART_LINE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" }, StaticSvgElement::Path { d: "m19 9-5 5-4-4-3 3" }];
static CHART_NETWORK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m13.11 7.664 1.78 2.672" },
StaticSvgElement::Path { d: "m14.162 12.788-3.324 1.424" },
StaticSvgElement::Path { d: "m20 4-6.06 1.515" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Circle { cx: "12", cy: "6", r: "2" },
StaticSvgElement::Circle { cx: "16", cy: "12", r: "2" },
StaticSvgElement::Circle { cx: "9", cy: "15", r: "2" },
];
static CHART_NO_AXES_COLUMN_DECREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20V10" },
StaticSvgElement::Path { d: "M18 20v-4" },
StaticSvgElement::Path { d: "M6 20V4" },
];
static CHART_NO_AXES_COLUMN_INCREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "12", y1: "20", x2: "12", y2: "10" },
StaticSvgElement::Line { x1: "18", y1: "20", x2: "18", y2: "4" },
StaticSvgElement::Line { x1: "6", y1: "20", x2: "6", y2: "16" },
];
static CHART_NO_AXES_COLUMN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "18", y1: "20", x2: "18", y2: "10" },
StaticSvgElement::Line { x1: "12", y1: "20", x2: "12", y2: "4" },
StaticSvgElement::Line { x1: "6", y1: "20", x2: "6", y2: "14" },
];
static CHART_NO_AXES_COMBINED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 16v5" },
StaticSvgElement::Path { d: "M16 14v7" },
StaticSvgElement::Path { d: "M20 10v11" },
StaticSvgElement::Path { d: "m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15" },
StaticSvgElement::Path { d: "M4 18v3" },
StaticSvgElement::Path { d: "M8 14v7" },
];
static CHART_NO_AXES_GANTT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 6h10" },
StaticSvgElement::Path { d: "M6 12h9" },
StaticSvgElement::Path { d: "M11 18h7" },
];
static CHART_PIE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z",
},
StaticSvgElement::Path { d: "M21.21 15.89A10 10 0 1 1 8 2.83" },
];
static CHART_SCATTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "7.5", cy: "7.5", r: ".5" },
StaticSvgElement::Circle { cx: "18.5", cy: "5.5", r: ".5" },
StaticSvgElement::Circle { cx: "11.5", cy: "11.5", r: ".5" },
StaticSvgElement::Circle { cx: "7.5", cy: "16.5", r: ".5" },
StaticSvgElement::Circle { cx: "17.5", cy: "14.5", r: ".5" },
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
];
static CHART_SPLINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3v16a2 2 0 0 0 2 2h16" },
StaticSvgElement::Path { d: "M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7" },
];
static CHECK_CHECK_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M18 6 7 17l-5-5" }, StaticSvgElement::Path { d: "m22 10-7.5 7.5L13 16" }];
static CHECK_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 4L9 15" },
StaticSvgElement::Path { d: "M21 19L3 19" },
StaticSvgElement::Path { d: "M9 15L4 10" },
];
static CHECK_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M20 6 9 17l-5-5" }];
static CHEF_HAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z",
},
StaticSvgElement::Path { d: "M6 17h12" },
];
static CHERRY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z" },
StaticSvgElement::Path { d: "M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z" },
StaticSvgElement::Path { d: "M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12" },
StaticSvgElement::Path { d: "M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z" },
];
static CHEVRON_DOWN_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "m6 9 6 6 6-6" }];
static CHEVRON_FIRST_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m17 18-6-6 6-6" }, StaticSvgElement::Path { d: "M7 6v12" }];
static CHEVRON_LAST_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m7 18 6-6-6-6" }, StaticSvgElement::Path { d: "M17 6v12" }];
static CHEVRON_LEFT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "m15 18-6-6 6-6" }];
static CHEVRON_RIGHT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "m9 18 6-6-6-6" }];
static CHEVRON_UP_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "m18 15-6-6-6 6" }];
static CHEVRONS_DOWN_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m7 20 5-5 5 5" }, StaticSvgElement::Path { d: "m7 4 5 5 5-5" }];
static CHEVRONS_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m7 6 5 5 5-5" }, StaticSvgElement::Path { d: "m7 13 5 5 5-5" }];
static CHEVRONS_LEFT_RIGHT_ELLIPSIS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M16 12h.01" },
StaticSvgElement::Path { d: "m17 7 5 5-5 5" },
StaticSvgElement::Path { d: "m7 7-5 5 5 5" },
StaticSvgElement::Path { d: "M8 12h.01" },
];
static CHEVRONS_LEFT_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m9 7-5 5 5 5" }, StaticSvgElement::Path { d: "m15 7 5 5-5 5" }];
static CHEVRONS_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m11 17-5-5 5-5" }, StaticSvgElement::Path { d: "m18 17-5-5 5-5" }];
static CHEVRONS_RIGHT_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m20 17-5-5 5-5" }, StaticSvgElement::Path { d: "m4 17 5-5-5-5" }];
static CHEVRONS_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m6 17 5-5-5-5" }, StaticSvgElement::Path { d: "m13 17 5-5-5-5" }];
static CHEVRONS_UP_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m7 15 5 5 5-5" }, StaticSvgElement::Path { d: "m7 9 5-5 5 5" }];
static CHEVRONS_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m17 11-5-5-5 5" }, StaticSvgElement::Path { d: "m17 18-5-5-5 5" }];
static CHROME_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Line { x1: "21.17", y1: "8", x2: "12", y2: "8" },
StaticSvgElement::Line { x1: "3.95", y1: "6.06", x2: "8.54", y2: "14" },
StaticSvgElement::Line { x1: "10.88", y1: "21.94", x2: "15.46", y2: "14" },
];
static CHURCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 9h4" },
StaticSvgElement::Path { d: "M12 7v5" },
StaticSvgElement::Path { d: "M14 22v-4a2 2 0 0 0-4 0v4" },
StaticSvgElement::Path {
d: "M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22",
},
StaticSvgElement::Path {
d: "m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7",
},
];
static CIGARETTE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13" },
StaticSvgElement::Path { d: "M18 8c0-2.5-2-2.5-2-5" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866" },
StaticSvgElement::Path { d: "M22 8c0-2.5-2-2.5-2-5" },
StaticSvgElement::Path { d: "M7 12v4" },
];
static CIGARETTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14" },
StaticSvgElement::Path { d: "M18 8c0-2.5-2-2.5-2-5" },
StaticSvgElement::Path { d: "M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1" },
StaticSvgElement::Path { d: "M22 8c0-2.5-2-2.5-2-5" },
StaticSvgElement::Path { d: "M7 12v4" },
];
static CIRCLE_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "16", x2: "12.01", y2: "16" },
];
static CIRCLE_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M12 8v8" },
StaticSvgElement::Path { d: "m8 12 4 4 4-4" },
];
static CIRCLE_ARROW_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m12 8-4 4 4 4" },
StaticSvgElement::Path { d: "M16 12H8" },
];
static CIRCLE_ARROW_OUT_DOWN_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 12a10 10 0 1 1 10 10" },
StaticSvgElement::Path { d: "m2 22 10-10" },
StaticSvgElement::Path { d: "M8 22H2v-6" },
];
static CIRCLE_ARROW_OUT_DOWN_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22a10 10 0 1 1 10-10" },
StaticSvgElement::Path { d: "M22 22 12 12" },
StaticSvgElement::Path { d: "M22 16v6h-6" },
];
static CIRCLE_ARROW_OUT_UP_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 8V2h6" },
StaticSvgElement::Path { d: "m2 2 10 10" },
StaticSvgElement::Path { d: "M12 2A10 10 0 1 1 2 12" },
];
static CIRCLE_ARROW_OUT_UP_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 12A10 10 0 1 1 12 2" },
StaticSvgElement::Path { d: "M22 2 12 12" },
StaticSvgElement::Path { d: "M16 2h6v6" },
];
static CIRCLE_ARROW_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m12 16 4-4-4-4" },
StaticSvgElement::Path { d: "M8 12h8" },
];
static CIRCLE_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m16 12-4-4-4 4" },
StaticSvgElement::Path { d: "M12 16V8" },
];
static CIRCLE_CHECK_BIG_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M21.801 10A10 10 0 1 1 17 3.335" }, StaticSvgElement::Path { d: "m9 11 3 3L22 4" }];
static CIRCLE_CHECK_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "m9 12 2 2 4-4" }];
static CIRCLE_CHEVRON_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "m16 10-4 4-4-4" }];
static CIRCLE_CHEVRON_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "m14 16-4-4 4-4" }];
static CIRCLE_CHEVRON_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "m10 8 4 4-4 4" }];
static CIRCLE_CHEVRON_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "m8 14 4-4 4 4" }];
static CIRCLE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.1 2.182a10 10 0 0 1 3.8 0" },
StaticSvgElement::Path { d: "M13.9 21.818a10 10 0 0 1-3.8 0" },
StaticSvgElement::Path { d: "M17.609 3.721a10 10 0 0 1 2.69 2.7" },
StaticSvgElement::Path { d: "M2.182 13.9a10 10 0 0 1 0-3.8" },
StaticSvgElement::Path { d: "M20.279 17.609a10 10 0 0 1-2.7 2.69" },
StaticSvgElement::Path { d: "M21.818 10.1a10 10 0 0 1 0 3.8" },
StaticSvgElement::Path { d: "M3.721 6.391a10 10 0 0 1 2.7-2.69" },
StaticSvgElement::Path { d: "M6.391 20.279a10 10 0 0 1-2.69-2.7" },
];
static CIRCLE_DIVIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "8", y1: "12", x2: "16", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "16", x2: "12", y2: "16" },
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12", y2: "8" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static CIRCLE_DOLLAR_SIGN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" },
StaticSvgElement::Path { d: "M12 18V6" },
];
static CIRCLE_DOT_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.1 2.18a9.93 9.93 0 0 1 3.8 0" },
StaticSvgElement::Path { d: "M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7" },
StaticSvgElement::Path { d: "M21.82 10.1a9.93 9.93 0 0 1 0 3.8" },
StaticSvgElement::Path { d: "M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69" },
StaticSvgElement::Path { d: "M13.9 21.82a9.94 9.94 0 0 1-3.8 0" },
StaticSvgElement::Path { d: "M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7" },
StaticSvgElement::Path { d: "M2.18 13.9a9.93 9.93 0 0 1 0-3.8" },
StaticSvgElement::Path { d: "M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
];
static CIRCLE_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
];
static CIRCLE_ELLIPSIS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M17 12h.01" },
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M7 12h.01" },
];
static CIRCLE_EQUAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 10h10" },
StaticSvgElement::Path { d: "M7 14h10" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static CIRCLE_FADING_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2a10 10 0 0 1 7.38 16.75" },
StaticSvgElement::Path { d: "m16 12-4-4-4 4" },
StaticSvgElement::Path { d: "M12 16V8" },
StaticSvgElement::Path { d: "M2.5 8.875a10 10 0 0 0-.5 3" },
StaticSvgElement::Path { d: "M2.83 16a10 10 0 0 0 2.43 3.4" },
StaticSvgElement::Path { d: "M4.636 5.235a10 10 0 0 1 .891-.857" },
StaticSvgElement::Path { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" },
];
static CIRCLE_FADING_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2a10 10 0 0 1 7.38 16.75" },
StaticSvgElement::Path { d: "M12 8v8" },
StaticSvgElement::Path { d: "M16 12H8" },
StaticSvgElement::Path { d: "M2.5 8.875a10 10 0 0 0-.5 3" },
StaticSvgElement::Path { d: "M2.83 16a10 10 0 0 0 2.43 3.4" },
StaticSvgElement::Path { d: "M4.636 5.235a10 10 0 0 1 .891-.857" },
StaticSvgElement::Path { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" },
];
static CIRCLE_GAUGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15.6 2.7a10 10 0 1 0 5.7 5.7" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
StaticSvgElement::Path { d: "M13.4 10.6 19 5" },
];
static CIRCLE_HELP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static CIRCLE_MINUS_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "M8 12h8" }];
static CIRCLE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M8.35 2.69A10 10 0 0 1 21.3 15.65" },
StaticSvgElement::Path { d: "M19.08 19.08A10 10 0 1 1 4.92 4.92" },
];
static CIRCLE_PARKING_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12.656 7H13a3 3 0 0 1 2.984 3.307" },
StaticSvgElement::Path { d: "M13 13H9" },
StaticSvgElement::Path { d: "M19.071 19.071A1 1 0 0 1 4.93 4.93" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M8.357 2.687a10 10 0 0 1 12.956 12.956" },
StaticSvgElement::Path { d: "M9 17V9" },
];
static CIRCLE_PARKING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M9 17V7h4a3 3 0 0 1 0 6H9" },
];
static CIRCLE_PAUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Line { x1: "10", y1: "15", x2: "10", y2: "9" },
StaticSvgElement::Line { x1: "14", y1: "15", x2: "14", y2: "9" },
];
static CIRCLE_PERCENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "M9 9h.01" },
StaticSvgElement::Path { d: "M15 15h.01" },
];
static CIRCLE_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z",
},
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static CIRCLE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "M12 8v8" },
];
static CIRCLE_POUND_STERLING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 16V9.5a1 1 0 0 1 5 0" },
StaticSvgElement::Path { d: "M8 12h4" },
StaticSvgElement::Path { d: "M8 16h7" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static CIRCLE_POWER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 7v4" },
StaticSvgElement::Path { d: "M7.998 9.003a5 5 0 1 0 8-.005" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static CIRCLE_QUESTION_MARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static CIRCLE_SLASH2_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M22 2 2 22" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CIRCLE_SLASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Line { x1: "9", y1: "15", x2: "15", y2: "9" },
];
static CIRCLE_SMALL_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Circle { cx: "12", cy: "12", r: "6" }];
static CIRCLE_STOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Rect { x: "9", y: "9", width: "6", height: "6", rx: Some("1"), ry: None },
];
static CIRCLE_USER_ROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 20a6 6 0 0 0-12 0" },
StaticSvgElement::Circle { cx: "12", cy: "10", r: "4" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static CIRCLE_USER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662" },
];
static CIRCLE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "m9 9 6 6" },
];
static CIRCLE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CIRCUIT_BOARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M11 9h4a2 2 0 0 0 2-2V3" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
StaticSvgElement::Path { d: "M7 21v-4a2 2 0 0 1 2-2h4" },
StaticSvgElement::Circle { cx: "15", cy: "15", r: "2" },
];
static CITRUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z" },
StaticSvgElement::Path { d: "M19.65 15.66A8 8 0 0 1 8.35 4.34" },
StaticSvgElement::Path { d: "m14 10-5.5 5.5" },
StaticSvgElement::Path { d: "M14 17.85V10H6.15" },
];
static CLAPPERBOARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z" },
StaticSvgElement::Path { d: "m6.2 5.3 3.1 3.9" },
StaticSvgElement::Path { d: "m12.4 3.4 3.1 4" },
StaticSvgElement::Path { d: "M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z" },
];
static CLIPBOARD_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "m9 14 2 2 4-4" },
];
static CLIPBOARD_CLOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 14v2.2l1.6 1" },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v.832" },
StaticSvgElement::Path { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2" },
StaticSvgElement::Circle { cx: "16", cy: "16", r: "6" },
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: None },
];
static CLIPBOARD_COPY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2" },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v4" },
StaticSvgElement::Path { d: "M21 14H11" },
StaticSvgElement::Path { d: "m15 10-4 4 4 4" },
];
static CLIPBOARD_LIST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M12 11h4" },
StaticSvgElement::Path { d: "M12 16h4" },
StaticSvgElement::Path { d: "M8 11h.01" },
StaticSvgElement::Path { d: "M8 16h.01" },
];
static CLIPBOARD_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M9 14h6" },
];
static CLIPBOARD_PASTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 14h10" },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v1.344" },
StaticSvgElement::Path { d: "m17 18 4-4-4-4" },
StaticSvgElement::Path { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113" },
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: None },
];
static CLIPBOARD_PEN_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5" },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 1.73 1" },
StaticSvgElement::Path { d: "M8 18h1" },
StaticSvgElement::Path {
d: "M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
];
static CLIPBOARD_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5" },
StaticSvgElement::Path { d: "M4 13.5V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path {
d: "M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
];
static CLIPBOARD_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M9 14h6" },
StaticSvgElement::Path { d: "M12 17v-6" },
];
static CLIPBOARD_TYPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M9 12v-1h6v1" },
StaticSvgElement::Path { d: "M11 17h2" },
StaticSvgElement::Path { d: "M12 11v6" },
];
static CLIPBOARD_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "m15 11-6 6" },
StaticSvgElement::Path { d: "m9 11 6 6" },
];
static CLIPBOARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "2", width: "8", height: "4", rx: Some("1"), ry: Some("1") },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" },
];
static CLOCK1_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l2-4" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK10_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l-4-2" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK11_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l-2-4" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK12_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK2_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l4-2" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK3_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6h4" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK4_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l4 2" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK5_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l2 4" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK6_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v10" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK7_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l-2 4" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK8_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l-4 2" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK9_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6H8" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOCK_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v6l4 2" },
StaticSvgElement::Path { d: "M20 12v5" },
StaticSvgElement::Path { d: "M20 21h.01" },
StaticSvgElement::Path { d: "M21.25 8.2A10 10 0 1 0 16 21.16" },
];
static CLOCK_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v6l2 1" },
StaticSvgElement::Path { d: "M12.337 21.994a10 10 0 1 1 9.588-8.767" },
StaticSvgElement::Path { d: "m14 18 4 4 4-4" },
StaticSvgElement::Path { d: "M18 14v8" },
];
static CLOCK_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v6l1.56.78" },
StaticSvgElement::Path { d: "M13.227 21.925a10 10 0 1 1 8.767-9.588" },
StaticSvgElement::Path { d: "m14 18 4-4 4 4" },
StaticSvgElement::Path { d: "M18 22v-8" },
];
static CLOCK_FADING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2a10 10 0 0 1 7.38 16.75" },
StaticSvgElement::Path { d: "M12 6v6l4 2" },
StaticSvgElement::Path { d: "M2.5 8.875a10 10 0 0 0-.5 3" },
StaticSvgElement::Path { d: "M2.83 16a10 10 0 0 0 2.43 3.4" },
StaticSvgElement::Path { d: "M4.636 5.235a10 10 0 0 1 .891-.857" },
StaticSvgElement::Path { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" },
];
static CLOCK_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v6l3.644 1.822" },
StaticSvgElement::Path { d: "M16 19h6" },
StaticSvgElement::Path { d: "M19 16v6" },
StaticSvgElement::Path { d: "M21.92 13.267a10 10 0 1 0-8.653 8.653" },
];
static CLOCK_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 6v6l4 2" }, StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }];
static CLOUD_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12v4" },
StaticSvgElement::Path { d: "M12 20h.01" },
StaticSvgElement::Path { d: "M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708" },
];
static CLOUD_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m17 15-5.5 5.5L9 18" },
StaticSvgElement::Path { d: "M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742" },
];
static CLOUD_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10.852 19.772-.383.924" },
StaticSvgElement::Path { d: "m13.148 14.228.383-.923" },
StaticSvgElement::Path { d: "M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923" },
StaticSvgElement::Path { d: "m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544" },
StaticSvgElement::Path { d: "m14.772 15.852.923-.383" },
StaticSvgElement::Path { d: "m14.772 18.148.923.383" },
StaticSvgElement::Path { d: "M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2" },
StaticSvgElement::Path { d: "m9.228 15.852-.923-.383" },
StaticSvgElement::Path { d: "m9.228 18.148-.923.383" },
];
static CLOUD_DOWNLOAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13v8l-4-4" },
StaticSvgElement::Path { d: "m12 21 4-4" },
StaticSvgElement::Path { d: "M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284" },
];
static CLOUD_DRIZZLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "M8 19v1" },
StaticSvgElement::Path { d: "M8 14v1" },
StaticSvgElement::Path { d: "M16 19v1" },
StaticSvgElement::Path { d: "M16 14v1" },
StaticSvgElement::Path { d: "M12 21v1" },
StaticSvgElement::Path { d: "M12 16v1" },
];
static CLOUD_FOG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "M16 17H7" },
StaticSvgElement::Path { d: "M17 21H9" },
];
static CLOUD_HAIL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "M16 14v2" },
StaticSvgElement::Path { d: "M8 14v2" },
StaticSvgElement::Path { d: "M16 20h.01" },
StaticSvgElement::Path { d: "M8 20h.01" },
StaticSvgElement::Path { d: "M12 16v2" },
StaticSvgElement::Path { d: "M12 22h.01" },
];
static CLOUD_LIGHTNING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973" },
StaticSvgElement::Path { d: "m13 12-3 5h4l-3 5" },
];
static CLOUD_MOON_RAIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197" },
StaticSvgElement::Path { d: "M11 20v2" },
StaticSvgElement::Path { d: "M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24" },
StaticSvgElement::Path { d: "M7 19v2" },
];
static CLOUD_MOON_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197" },
StaticSvgElement::Path { d: "M13 16a3 3 0 1 1 0 6H7a5 5 0 1 1 4.9-6Z" },
];
static CLOUD_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193" },
StaticSvgElement::Path { d: "M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07" },
];
static CLOUD_RAIN_WIND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "m9.2 22 3-7" },
StaticSvgElement::Path { d: "m9 13-3 7" },
StaticSvgElement::Path { d: "m17 13-3 7" },
];
static CLOUD_RAIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "M16 14v6" },
StaticSvgElement::Path { d: "M8 14v6" },
StaticSvgElement::Path { d: "M12 16v6" },
];
static CLOUD_SNOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "M8 15h.01" },
StaticSvgElement::Path { d: "M8 19h.01" },
StaticSvgElement::Path { d: "M12 17h.01" },
StaticSvgElement::Path { d: "M12 21h.01" },
StaticSvgElement::Path { d: "M16 15h.01" },
StaticSvgElement::Path { d: "M16 19h.01" },
];
static CLOUD_SUN_RAIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "m4.93 4.93 1.41 1.41" },
StaticSvgElement::Path { d: "M20 12h2" },
StaticSvgElement::Path { d: "m19.07 4.93-1.41 1.41" },
StaticSvgElement::Path { d: "M15.947 12.65a4 4 0 0 0-5.925-4.128" },
StaticSvgElement::Path { d: "M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24" },
StaticSvgElement::Path { d: "M11 20v2" },
StaticSvgElement::Path { d: "M7 19v2" },
];
static CLOUD_SUN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "m4.93 4.93 1.41 1.41" },
StaticSvgElement::Path { d: "M20 12h2" },
StaticSvgElement::Path { d: "m19.07 4.93-1.41 1.41" },
StaticSvgElement::Path { d: "M15.947 12.65a4 4 0 0 0-5.925-4.128" },
StaticSvgElement::Path { d: "M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z" },
];
static CLOUD_UPLOAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13v8" },
StaticSvgElement::Path { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" },
StaticSvgElement::Path { d: "m8 17 4-4 4 4" },
];
static CLOUD_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" }];
static CLOUDY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" },
StaticSvgElement::Path { d: "M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5" },
];
static CLOVER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16.17 7.83 2 22" },
StaticSvgElement::Path {
d: "M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12",
},
StaticSvgElement::Path { d: "m7.83 7.83 8.34 8.34" },
];
static CLUB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z" },
StaticSvgElement::Path { d: "M12 17.66L12 22" },
];
static CODE_XML_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m18 16 4-4-4-4" },
StaticSvgElement::Path { d: "m6 8-4 4 4 4" },
StaticSvgElement::Path { d: "m14.5 4-5 16" },
];
static CODE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m16 18 6-6-6-6" }, StaticSvgElement::Path { d: "m8 6-6 6 6 6" }];
static CODEPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Polygon { points: "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "15.5" },
StaticSvgElement::Polyline { points: "22 8.5 12 15.5 2 8.5" },
StaticSvgElement::Polyline { points: "2 15.5 12 8.5 22 15.5" },
StaticSvgElement::Line { x1: "12", y1: "2", x2: "12", y2: "8.5" },
];
static CODESANDBOX_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",
},
StaticSvgElement::Polyline { points: "7.5 4.21 12 6.81 16.5 4.21" },
StaticSvgElement::Polyline { points: "7.5 19.79 7.5 14.6 3 12" },
StaticSvgElement::Polyline { points: "21 12 16.5 14.6 16.5 19.79" },
StaticSvgElement::Polyline { points: "3.27 6.96 12 12.01 20.73 6.96" },
StaticSvgElement::Line { x1: "12", y1: "22.08", x2: "12", y2: "12" },
];
static COFFEE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v2" },
StaticSvgElement::Path { d: "M14 2v2" },
StaticSvgElement::Path {
d: "M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1",
},
StaticSvgElement::Path { d: "M6 2v2" },
];
static COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z" },
StaticSvgElement::Path { d: "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" },
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "M12 22v-2" },
StaticSvgElement::Path { d: "m17 20.66-1-1.73" },
StaticSvgElement::Path { d: "M11 10.27 7 3.34" },
StaticSvgElement::Path { d: "m20.66 17-1.73-1" },
StaticSvgElement::Path { d: "m3.34 7 1.73 1" },
StaticSvgElement::Path { d: "M14 12h8" },
StaticSvgElement::Path { d: "M2 12h2" },
StaticSvgElement::Path { d: "m20.66 7-1.73 1" },
StaticSvgElement::Path { d: "m3.34 17 1.73-1" },
StaticSvgElement::Path { d: "m17 3.34-1 1.73" },
StaticSvgElement::Path { d: "m11 13.73-4 6.93" },
];
static COINS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "8", cy: "8", r: "6" },
StaticSvgElement::Path { d: "M18.09 10.37A6 6 0 1 1 10.34 18" },
StaticSvgElement::Path { d: "M7 6h1v4" },
StaticSvgElement::Path { d: "m16.71 13.88.7.71-2.82 2.82" },
];
static COLUMNS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 3v18" },
];
static COLUMNS3_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5" },
StaticSvgElement::Path { d: "m14.3 19.6 1-.4" },
StaticSvgElement::Path { d: "M15 3v7.5" },
StaticSvgElement::Path { d: "m15.2 16.9-.9-.3" },
StaticSvgElement::Path { d: "m16.6 21.7.3-.9" },
StaticSvgElement::Path { d: "m16.8 15.3-.4-1" },
StaticSvgElement::Path { d: "m19.1 15.2.3-.9" },
StaticSvgElement::Path { d: "m19.6 21.7-.4-1" },
StaticSvgElement::Path { d: "m20.7 16.8 1-.4" },
StaticSvgElement::Path { d: "m21.7 19.4-.9-.3" },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static COLUMNS3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Path { d: "M15 3v18" },
];
static COLUMNS4_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7.5 3v18" },
StaticSvgElement::Path { d: "M12 3v18" },
StaticSvgElement::Path { d: "M16.5 3v18" },
];
static COMBINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 18H5a3 3 0 0 1-3-3v-1" },
StaticSvgElement::Path { d: "M14 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M20 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "m7 21 3-3-3-3" },
StaticSvgElement::Rect { x: "14", y: "14", width: "8", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "2", y: "2", width: "8", height: "8", rx: Some("2"), ry: None },
];
static COMMAND_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3" }];
static COMPASS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z",
},
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static COMPONENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",
},
StaticSvgElement::Path {
d: "M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",
},
StaticSvgElement::Path {
d: "M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",
},
StaticSvgElement::Path {
d: "M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",
},
];
static COMPUTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "2", width: "14", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "2", y: "14", width: "20", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 18h2" },
StaticSvgElement::Path { d: "M12 18h6" },
];
static CONCIERGE_BELL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z" },
StaticSvgElement::Path { d: "M20 16a8 8 0 1 0-16 0" },
StaticSvgElement::Path { d: "M12 4v4" },
StaticSvgElement::Path { d: "M10 4h4" },
];
static CONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98" },
StaticSvgElement::Ellipse { cx: "12", cy: "19", rx: "9", ry: "3" },
];
static CONSTRUCTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "8", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M17 14v7" },
StaticSvgElement::Path { d: "M7 14v7" },
StaticSvgElement::Path { d: "M17 3v3" },
StaticSvgElement::Path { d: "M7 3v3" },
StaticSvgElement::Path { d: "M10 14 2.3 6.3" },
StaticSvgElement::Path { d: "m14 6 7.7 7.7" },
StaticSvgElement::Path { d: "m8 6 8 8" },
];
static CONTACT_ROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 2v2" },
StaticSvgElement::Path { d: "M17.915 22a6 6 0 0 0-12 0" },
StaticSvgElement::Path { d: "M8 2v2" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
];
static CONTACT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 2v2" },
StaticSvgElement::Path { d: "M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M8 2v2" },
StaticSvgElement::Circle { cx: "12", cy: "11", r: "3" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "18", rx: Some("2"), ry: None },
];
static CONTAINER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z",
},
StaticSvgElement::Path { d: "M10 21.9V14L2.1 9.1" },
StaticSvgElement::Path { d: "m10 14 11.9-6.9" },
StaticSvgElement::Path { d: "M14 19.8v-8.1" },
StaticSvgElement::Path { d: "M18 17.5V9.4" },
];
static CONTRAST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M12 18a6 6 0 0 0 0-12v12z" },
];
static COOKIE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5" },
StaticSvgElement::Path { d: "M8.5 8.5v.01" },
StaticSvgElement::Path { d: "M16 15.5v.01" },
StaticSvgElement::Path { d: "M12 12v.01" },
StaticSvgElement::Path { d: "M11 17v.01" },
StaticSvgElement::Path { d: "M7 14v.01" },
];
static COOKING_POT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 12h20" },
StaticSvgElement::Path { d: "M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8" },
StaticSvgElement::Path { d: "m4 8 16-4" },
StaticSvgElement::Path { d: "m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8" },
];
static COPY_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12 15 2 2 4-4" },
StaticSvgElement::Rect { x: "8", y: "8", width: "14", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" },
];
static COPY_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "12", y1: "15", x2: "18", y2: "15" },
StaticSvgElement::Rect { x: "8", y: "8", width: "14", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" },
];
static COPY_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "15", y1: "12", x2: "15", y2: "18" },
StaticSvgElement::Line { x1: "12", y1: "15", x2: "18", y2: "15" },
StaticSvgElement::Rect { x: "8", y: "8", width: "14", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" },
];
static COPY_SLASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "12", y1: "18", x2: "18", y2: "12" },
StaticSvgElement::Rect { x: "8", y: "8", width: "14", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" },
];
static COPY_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "12", y1: "12", x2: "18", y2: "18" },
StaticSvgElement::Line { x1: "12", y1: "18", x2: "18", y2: "12" },
StaticSvgElement::Rect { x: "8", y: "8", width: "14", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" },
];
static COPY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "8", y: "8", width: "14", height: "14", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" },
];
static COPYLEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M9.17 14.83a4 4 0 1 0 0-5.66" },
];
static COPYRIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M14.83 14.83a4 4 0 1 1 0-5.66" },
];
static CORNER_DOWN_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M20 4v7a4 4 0 0 1-4 4H4" }, StaticSvgElement::Path { d: "m9 10-5 5 5 5" }];
static CORNER_DOWN_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m15 10 5 5-5 5" }, StaticSvgElement::Path { d: "M4 4v7a4 4 0 0 0 4 4h12" }];
static CORNER_LEFT_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m14 15-5 5-5-5" }, StaticSvgElement::Path { d: "M20 4h-7a4 4 0 0 0-4 4v12" }];
static CORNER_LEFT_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M14 9 9 4 4 9" }, StaticSvgElement::Path { d: "M20 20h-7a4 4 0 0 1-4-4V4" }];
static CORNER_RIGHT_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m10 15 5 5 5-5" }, StaticSvgElement::Path { d: "M4 4h7a4 4 0 0 1 4 4v12" }];
static CORNER_RIGHT_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m10 9 5-5 5 5" }, StaticSvgElement::Path { d: "M4 20h7a4 4 0 0 0 4-4V4" }];
static CORNER_UP_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M20 20v-7a4 4 0 0 0-4-4H4" }, StaticSvgElement::Path { d: "M9 14 4 9l5-5" }];
static CORNER_UP_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m15 14 5-5-5-5" }, StaticSvgElement::Path { d: "M4 20v-7a4 4 0 0 1 4-4h12" }];
static CPU_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20v2" },
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "M17 20v2" },
StaticSvgElement::Path { d: "M17 2v2" },
StaticSvgElement::Path { d: "M2 12h2" },
StaticSvgElement::Path { d: "M2 17h2" },
StaticSvgElement::Path { d: "M2 7h2" },
StaticSvgElement::Path { d: "M20 12h2" },
StaticSvgElement::Path { d: "M20 17h2" },
StaticSvgElement::Path { d: "M20 7h2" },
StaticSvgElement::Path { d: "M7 20v2" },
StaticSvgElement::Path { d: "M7 2v2" },
StaticSvgElement::Rect { x: "4", y: "4", width: "16", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "8", y: "8", width: "8", height: "8", rx: Some("1"), ry: None },
];
static CREATIVE_COMMONS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1" },
StaticSvgElement::Path { d: "M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1" },
];
static CREDIT_CARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "5", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Line { x1: "2", y1: "10", x2: "22", y2: "10" },
];
static CROISSANT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487" },
StaticSvgElement::Path { d: "M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132" },
StaticSvgElement::Path { d: "M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42" },
StaticSvgElement::Path { d: "M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14" },
StaticSvgElement::Path {
d: "M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676",
},
];
static CROP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 2v14a2 2 0 0 0 2 2h14" },
StaticSvgElement::Path { d: "M18 22V8a2 2 0 0 0-2-2H2" },
];
static CROSS_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z",
}];
static CROSSHAIR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Line { x1: "22", y1: "12", x2: "18", y2: "12" },
StaticSvgElement::Line { x1: "6", y1: "12", x2: "2", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "6", x2: "12", y2: "2" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "18" },
];
static CROWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",
},
StaticSvgElement::Path { d: "M5 21h14" },
];
static CUBOID_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z",
},
StaticSvgElement::Path { d: "M10 22v-8L2.25 9.15" },
StaticSvgElement::Path { d: "m10 14 11.77-6.87" },
];
static CUP_SODA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8" },
StaticSvgElement::Path { d: "M5 8h14" },
StaticSvgElement::Path { d: "M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0" },
StaticSvgElement::Path { d: "m12 8 1-6h2" },
];
static CURRENCY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "8" },
StaticSvgElement::Line { x1: "3", y1: "3", x2: "6", y2: "6" },
StaticSvgElement::Line { x1: "21", y1: "3", x2: "18", y2: "6" },
StaticSvgElement::Line { x1: "3", y1: "21", x2: "6", y2: "18" },
StaticSvgElement::Line { x1: "21", y1: "21", x2: "18", y2: "18" },
];
static CYLINDER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Ellipse { cx: "12", cy: "5", rx: "9", ry: "3" },
StaticSvgElement::Path { d: "M3 5v14a9 3 0 0 0 18 0V5" },
];
static DAM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" },
StaticSvgElement::Path { d: "M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" },
StaticSvgElement::Path { d: "M2 10h4" },
StaticSvgElement::Path { d: "M2 14h4" },
StaticSvgElement::Path { d: "M2 18h4" },
StaticSvgElement::Path { d: "M2 6h4" },
StaticSvgElement::Path { d: "M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z" },
];
static DATABASE_BACKUP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Ellipse { cx: "12", cy: "5", rx: "9", ry: "3" },
StaticSvgElement::Path { d: "M3 12a9 3 0 0 0 5 2.69" },
StaticSvgElement::Path { d: "M21 9.3V5" },
StaticSvgElement::Path { d: "M3 5v14a9 3 0 0 0 6.47 2.88" },
StaticSvgElement::Path { d: "M12 12v4h4" },
StaticSvgElement::Path { d: "M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16" },
];
static DATABASE_ZAP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Ellipse { cx: "12", cy: "5", rx: "9", ry: "3" },
StaticSvgElement::Path { d: "M3 5V19A9 3 0 0 0 15 21.84" },
StaticSvgElement::Path { d: "M21 5V8" },
StaticSvgElement::Path { d: "M21 12L18 17H22L19 22" },
StaticSvgElement::Path { d: "M3 12A9 3 0 0 0 14.59 14.87" },
];
static DATABASE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Ellipse { cx: "12", cy: "5", rx: "9", ry: "3" },
StaticSvgElement::Path { d: "M3 5V19A9 3 0 0 0 21 19V5" },
StaticSvgElement::Path { d: "M3 12A9 3 0 0 0 21 12" },
];
static DECIMALS_ARROW_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m13 21-3-3 3-3" },
StaticSvgElement::Path { d: "M20 18H10" },
StaticSvgElement::Path { d: "M3 11h.01" },
StaticSvgElement::Rect { x: "6", y: "3", width: "5", height: "8", rx: Some("2.5"), ry: None },
];
static DECIMALS_ARROW_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 18h10" },
StaticSvgElement::Path { d: "m17 21 3-3-3-3" },
StaticSvgElement::Path { d: "M3 11h.01" },
StaticSvgElement::Rect { x: "15", y: "3", width: "5", height: "8", rx: Some("2.5"), ry: None },
StaticSvgElement::Rect { x: "6", y: "3", width: "5", height: "8", rx: Some("2.5"), ry: None },
];
static DELETE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z",
},
StaticSvgElement::Path { d: "m12 9 6 6" },
StaticSvgElement::Path { d: "m18 9-6 6" },
];
static DESSERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826",
},
StaticSvgElement::Path { d: "M20.804 14.869a9 9 0 0 1-17.608 0" },
StaticSvgElement::Circle { cx: "12", cy: "4", r: "2" },
];
static DIAMETER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "19", cy: "19", r: "2" },
StaticSvgElement::Circle { cx: "5", cy: "5", r: "2" },
StaticSvgElement::Path { d: "M6.48 3.66a10 10 0 0 1 13.86 13.86" },
StaticSvgElement::Path { d: "m6.41 6.41 11.18 11.18" },
StaticSvgElement::Path { d: "M3.66 6.48a10 10 0 0 0 13.86 13.86" },
];
static DIAMOND_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",
},
StaticSvgElement::Path { d: "M8 12h8" },
];
static DIAMOND_PERCENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z",
},
StaticSvgElement::Path { d: "M9.2 9.2h.01" },
StaticSvgElement::Path { d: "m14.5 9.5-5 5" },
StaticSvgElement::Path { d: "M14.7 14.8h.01" },
];
static DIAMOND_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 8v8" },
StaticSvgElement::Path {
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",
},
StaticSvgElement::Path { d: "M8 12h8" },
];
static DIAMOND_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",
}];
static DICE1_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M12 12h.01" },
];
static DICE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M15 9h.01" },
StaticSvgElement::Path { d: "M9 15h.01" },
];
static DICE3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M16 8h.01" },
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M8 16h.01" },
];
static DICE4_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M16 8h.01" },
StaticSvgElement::Path { d: "M8 8h.01" },
StaticSvgElement::Path { d: "M8 16h.01" },
StaticSvgElement::Path { d: "M16 16h.01" },
];
static DICE5_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M16 8h.01" },
StaticSvgElement::Path { d: "M8 8h.01" },
StaticSvgElement::Path { d: "M8 16h.01" },
StaticSvgElement::Path { d: "M16 16h.01" },
StaticSvgElement::Path { d: "M12 12h.01" },
];
static DICE6_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M16 8h.01" },
StaticSvgElement::Path { d: "M16 12h.01" },
StaticSvgElement::Path { d: "M16 16h.01" },
StaticSvgElement::Path { d: "M8 8h.01" },
StaticSvgElement::Path { d: "M8 12h.01" },
StaticSvgElement::Path { d: "M8 16h.01" },
];
static DICES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "10", width: "12", height: "12", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6" },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "M10 14h.01" },
StaticSvgElement::Path { d: "M15 6h.01" },
StaticSvgElement::Path { d: "M18 9h.01" },
];
static DIFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v14" },
StaticSvgElement::Path { d: "M5 10h14" },
StaticSvgElement::Path { d: "M5 21h14" },
];
static DISC2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Path { d: "M12 12h.01" },
];
static DISC3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M6 12c0-1.7.7-3.2 1.8-4.2" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
StaticSvgElement::Path { d: "M18 12c0 1.7-.7 3.2-1.8 4.2" },
];
static DISC_ALBUM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "5" },
StaticSvgElement::Path { d: "M12 12h.01" },
];
static DISC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static DIVIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "6", r: "1" },
StaticSvgElement::Line { x1: "5", y1: "12", x2: "19", y2: "12" },
StaticSvgElement::Circle { cx: "12", cy: "18", r: "1" },
];
static DNA_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8" },
StaticSvgElement::Path { d: "m17 6-2.891-2.891" },
StaticSvgElement::Path { d: "M2 15c3.333-3 6.667-3 10-3" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "m20 9 .891.891" },
StaticSvgElement::Path { d: "M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1" },
StaticSvgElement::Path { d: "M3.109 14.109 4 15" },
StaticSvgElement::Path { d: "m6.5 12.5 1 1" },
StaticSvgElement::Path { d: "m7 18 2.891 2.891" },
StaticSvgElement::Path { d: "M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16" },
];
static DNA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 16 1.5 1.5" },
StaticSvgElement::Path { d: "m14 8-1.5-1.5" },
StaticSvgElement::Path { d: "M15 2c-1.798 1.998-2.518 3.995-2.807 5.993" },
StaticSvgElement::Path { d: "m16.5 10.5 1 1" },
StaticSvgElement::Path { d: "m17 6-2.891-2.891" },
StaticSvgElement::Path { d: "M2 15c6.667-6 13.333 0 20-6" },
StaticSvgElement::Path { d: "m20 9 .891.891" },
StaticSvgElement::Path { d: "M3.109 14.109 4 15" },
StaticSvgElement::Path { d: "m6.5 12.5 1 1" },
StaticSvgElement::Path { d: "m7 18 2.891 2.891" },
StaticSvgElement::Path { d: "M9 22c1.798-1.998 2.518-3.995 2.807-5.993" },
];
static DOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 8h20" },
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 16h12" },
];
static DOG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.25 16.25h1.5L12 17z" },
StaticSvgElement::Path { d: "M16 14v.5" },
StaticSvgElement::Path {
d: "M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309",
},
StaticSvgElement::Path { d: "M8 14v.5" },
StaticSvgElement::Path {
d: "M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5",
},
];
static DOLLAR_SIGN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "12", y1: "2", x2: "12", y2: "22" },
StaticSvgElement::Path { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" },
];
static DONUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3",
},
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
];
static DOOR_CLOSED_LOCKED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12h.01" },
StaticSvgElement::Path { d: "M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14" },
StaticSvgElement::Path { d: "M2 20h8" },
StaticSvgElement::Path { d: "M20 17v-2a2 2 0 1 0-4 0v2" },
StaticSvgElement::Rect { x: "14", y: "17", width: "8", height: "5", rx: Some("1"), ry: None },
];
static DOOR_CLOSED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12h.01" },
StaticSvgElement::Path { d: "M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14" },
StaticSvgElement::Path { d: "M2 20h20" },
];
static DOOR_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 20H2" },
StaticSvgElement::Path {
d: "M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z",
},
StaticSvgElement::Path { d: "M11 4H8a2 2 0 0 0-2 2v14" },
StaticSvgElement::Path { d: "M14 12h.01" },
StaticSvgElement::Path { d: "M22 20h-3" },
];
static DOT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Circle { cx: "12.1", cy: "12.1", r: "1" }];
static DOWNLOAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 15V3" },
StaticSvgElement::Path { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" },
StaticSvgElement::Path { d: "m7 10 5 5 5-5" },
];
static DRAFTING_COMPASS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12.99 6.74 1.93 3.44" },
StaticSvgElement::Path { d: "M19.136 12a10 10 0 0 1-14.271 0" },
StaticSvgElement::Path { d: "m21 21-2.16-3.84" },
StaticSvgElement::Path { d: "m3 21 8.02-14.26" },
StaticSvgElement::Circle { cx: "12", cy: "5", r: "2" },
];
static DRAMA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 11h.01" },
StaticSvgElement::Path { d: "M14 6h.01" },
StaticSvgElement::Path { d: "M18 6h.01" },
StaticSvgElement::Path { d: "M6.5 13.1h.01" },
StaticSvgElement::Path { d: "M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3" },
StaticSvgElement::Path { d: "M17.4 9.9c-.8.8-2 .8-2.8 0" },
StaticSvgElement::Path {
d: "M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7",
},
StaticSvgElement::Path { d: "M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4" },
];
static DRIBBBLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94" },
StaticSvgElement::Path { d: "M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32" },
StaticSvgElement::Path { d: "M8.56 2.75c4.37 6 6 9.42 8 17.72" },
];
static DRILL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z" },
StaticSvgElement::Path {
d: "M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8",
},
StaticSvgElement::Path { d: "M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3" },
StaticSvgElement::Path { d: "M18 6h4" },
StaticSvgElement::Path { d: "m5 10-2 8" },
StaticSvgElement::Path { d: "m7 18 2-8" },
];
static DRONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10 7 7" },
StaticSvgElement::Path { d: "m10 14-3 3" },
StaticSvgElement::Path { d: "m14 10 3-3" },
StaticSvgElement::Path { d: "m14 14 3 3" },
StaticSvgElement::Path { d: "M14.205 4.139a4 4 0 1 1 5.439 5.863" },
StaticSvgElement::Path { d: "M19.637 14a4 4 0 1 1-5.432 5.868" },
StaticSvgElement::Path { d: "M4.367 10a4 4 0 1 1 5.438-5.862" },
StaticSvgElement::Path { d: "M9.795 19.862a4 4 0 1 1-5.429-5.873" },
StaticSvgElement::Rect { x: "10", y: "8", width: "4", height: "8", rx: Some("1"), ry: None },
];
static DROPLET_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586",
},
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208" },
];
static DROPLET_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z",
}];
static DROPLETS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z",
},
StaticSvgElement::Path {
d: "M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97",
},
];
static DRUM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 2 8 8" },
StaticSvgElement::Path { d: "m22 2-8 8" },
StaticSvgElement::Ellipse { cx: "12", cy: "9", rx: "10", ry: "5" },
StaticSvgElement::Path { d: "M7 13.4v7.9" },
StaticSvgElement::Path { d: "M12 14v8" },
StaticSvgElement::Path { d: "M17 13.4v7.9" },
StaticSvgElement::Path { d: "M2 9v8a10 5 0 0 0 20 0V9" },
];
static DRUMSTICK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23" },
StaticSvgElement::Path { d: "m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59" },
];
static DUMBBELL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z",
},
StaticSvgElement::Path { d: "m2.5 21.5 1.4-1.4" },
StaticSvgElement::Path { d: "m20.1 3.9 1.4-1.4" },
StaticSvgElement::Path {
d: "M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z",
},
StaticSvgElement::Path { d: "m9.6 14.4 4.8-4.8" },
];
static EAR_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46" },
StaticSvgElement::Path { d: "M6 8.5c0-.75.13-1.47.36-2.14" },
StaticSvgElement::Path { d: "M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76" },
StaticSvgElement::Path { d: "M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static EAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0" },
StaticSvgElement::Path { d: "M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4" },
];
static EARTH_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 3.34V5a3 3 0 0 0 3 3" },
StaticSvgElement::Path { d: "M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05" },
StaticSvgElement::Path { d: "M21.54 15H17a2 2 0 0 0-2 2v4.54" },
StaticSvgElement::Path { d: "M12 2a10 10 0 1 0 9.54 13" },
StaticSvgElement::Path { d: "M20 6V4a2 2 0 1 0-4 0v2" },
StaticSvgElement::Rect { x: "14", y: "6", width: "8", height: "5", rx: Some("1"), ry: None },
];
static EARTH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21.54 15H17a2 2 0 0 0-2 2v4.54" },
StaticSvgElement::Path {
d: "M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17",
},
StaticSvgElement::Path { d: "M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static ECLIPSE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" }, StaticSvgElement::Path { d: "M12 2a7 7 0 1 0 10 10" }];
static EGG_FRIED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11.5", cy: "12.5", r: "3.5" },
StaticSvgElement::Path {
d: "M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z",
},
];
static EGG_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19" },
StaticSvgElement::Path { d: "M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568" },
];
static EGG_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12" }];
static ELLIPSIS_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "12", cy: "5", r: "1" },
StaticSvgElement::Circle { cx: "12", cy: "19", r: "1" },
];
static ELLIPSIS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "5", cy: "12", r: "1" },
];
static EQUAL_APPROXIMATELY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0" },
StaticSvgElement::Path { d: "M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0" },
];
static EQUAL_NOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "5", y1: "9", x2: "19", y2: "9" },
StaticSvgElement::Line { x1: "5", y1: "15", x2: "19", y2: "15" },
StaticSvgElement::Line { x1: "19", y1: "5", x2: "5", y2: "19" },
];
static EQUAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "5", y1: "9", x2: "19", y2: "9" },
StaticSvgElement::Line { x1: "5", y1: "15", x2: "19", y2: "15" },
];
static ERASER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21",
},
StaticSvgElement::Path { d: "m5.082 11.09 8.828 8.828" },
];
static ETHERNET_PORT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z" },
StaticSvgElement::Path { d: "M6 8v1" },
StaticSvgElement::Path { d: "M10 8v1" },
StaticSvgElement::Path { d: "M14 8v1" },
StaticSvgElement::Path { d: "M18 8v1" },
];
static EURO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 10h12" },
StaticSvgElement::Path { d: "M4 14h9" },
StaticSvgElement::Path { d: "M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2" },
];
static EXPAND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 15 6 6" },
StaticSvgElement::Path { d: "m15 9 6-6" },
StaticSvgElement::Path { d: "M21 16v5h-5" },
StaticSvgElement::Path { d: "M21 8V3h-5" },
StaticSvgElement::Path { d: "M3 16v5h5" },
StaticSvgElement::Path { d: "m3 21 6-6" },
StaticSvgElement::Path { d: "M3 8V3h5" },
StaticSvgElement::Path { d: "M9 9 3 3" },
];
static EXTERNAL_LINK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 3h6v6" },
StaticSvgElement::Path { d: "M10 14 21 3" },
StaticSvgElement::Path { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" },
];
static EYE_CLOSED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 18-.722-3.25" },
StaticSvgElement::Path { d: "M2 8a10.645 10.645 0 0 0 20 0" },
StaticSvgElement::Path { d: "m20 15-1.726-2.05" },
StaticSvgElement::Path { d: "m4 15 1.726-2.05" },
StaticSvgElement::Path { d: "m9 18 .722-3.25" },
];
static EYE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
},
StaticSvgElement::Path { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" },
StaticSvgElement::Path {
d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",
},
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static EYE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",
},
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
];
static FACEBOOK_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" }];
static FACTORY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 16h.01" },
StaticSvgElement::Path { d: "M16 16h.01" },
StaticSvgElement::Path {
d: "M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z",
},
StaticSvgElement::Path { d: "M8 16h.01" },
];
static FAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z",
},
StaticSvgElement::Path { d: "M12 12v.01" },
];
static FAST_FORWARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z" },
StaticSvgElement::Path { d: "M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z" },
];
static FEATHER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z",
},
StaticSvgElement::Path { d: "M16 8 2 22" },
StaticSvgElement::Path { d: "M17.5 15H9" },
];
static FENCE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" },
StaticSvgElement::Path { d: "M6 8h4" },
StaticSvgElement::Path { d: "M6 18h4" },
StaticSvgElement::Path { d: "m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" },
StaticSvgElement::Path { d: "M14 8h4" },
StaticSvgElement::Path { d: "M14 18h4" },
StaticSvgElement::Path { d: "m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z" },
];
static FERRIS_WHEEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
StaticSvgElement::Path { d: "M12 2v4" },
StaticSvgElement::Path { d: "m6.8 15-3.5 2" },
StaticSvgElement::Path { d: "m20.7 7-3.5 2" },
StaticSvgElement::Path { d: "M6.8 9 3.3 7" },
StaticSvgElement::Path { d: "m20.7 17-3.5-2" },
StaticSvgElement::Path { d: "m9 22 3-8 3 8" },
StaticSvgElement::Path { d: "M8 22h8" },
StaticSvgElement::Path { d: "M18 18.7a9 9 0 1 0-12 0" },
];
static FIGMA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z" },
StaticSvgElement::Path { d: "M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z" },
StaticSvgElement::Path { d: "M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z" },
StaticSvgElement::Path { d: "M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z" },
StaticSvgElement::Path { d: "M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z" },
];
static FILE_ARCHIVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12v-1" },
StaticSvgElement::Path { d: "M10 18v-2" },
StaticSvgElement::Path { d: "M10 7V6" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01" },
StaticSvgElement::Circle { cx: "10", cy: "20", r: "2" },
];
static FILE_AUDIO2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Circle { cx: "3", cy: "17", r: "1" },
StaticSvgElement::Path { d: "M2 17v-3a4 4 0 0 1 8 0v3" },
StaticSvgElement::Circle { cx: "9", cy: "17", r: "1" },
];
static FILE_AUDIO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path {
d: "M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",
},
];
static FILE_AXIS3_D_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m8 18 4-4" },
StaticSvgElement::Path { d: "M8 10v8h8" },
];
static FILE_BADGE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88",
},
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" },
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
];
static FILE_BADGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path {
d: "m6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88",
},
StaticSvgElement::Circle { cx: "5", cy: "14", r: "3" },
];
static FILE_BOX_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path {
d: "M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z",
},
StaticSvgElement::Path { d: "M7 17v5" },
StaticSvgElement::Path { d: "M11.7 14.2 7 17l-4.7-2.8" },
];
static FILE_CHART_COLUMN_INCREASING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M8 18v-2" },
StaticSvgElement::Path { d: "M12 18v-4" },
StaticSvgElement::Path { d: "M16 18v-6" },
];
static FILE_CHART_COLUMN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M8 18v-1" },
StaticSvgElement::Path { d: "M12 18v-6" },
StaticSvgElement::Path { d: "M16 18v-3" },
];
static FILE_CHART_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m16 13-3.5 3.5-2-2L8 17" },
];
static FILE_CHART_PIE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5" },
StaticSvgElement::Path { d: "M4.017 11.512a6 6 0 1 0 8.466 8.475" },
StaticSvgElement::Path {
d: "M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z",
},
];
static FILE_CHECK2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m3 15 2 2 4-4" },
];
static FILE_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m9 15 2 2 4-4" },
];
static FILE_CLOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "M8 14v2.2l1.6 1" },
StaticSvgElement::Circle { cx: "8", cy: "16", r: "6" },
];
static FILE_CODE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m5 12-3 3 3 3" },
StaticSvgElement::Path { d: "m9 18 3-3-3-3" },
];
static FILE_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12.5 8 15l2 2.5" },
StaticSvgElement::Path { d: "m14 12.5 2 2.5-2 2.5" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" },
];
static FILE_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m2.305 15.53.923-.382" },
StaticSvgElement::Path { d: "m3.228 12.852-.924-.383" },
StaticSvgElement::Path { d: "M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5" },
StaticSvgElement::Path { d: "m4.852 11.228-.383-.923" },
StaticSvgElement::Path { d: "m4.852 16.772-.383.924" },
StaticSvgElement::Path { d: "m7.148 11.228.383-.923" },
StaticSvgElement::Path { d: "m7.53 17.696-.382-.924" },
StaticSvgElement::Path { d: "m8.772 12.852.923-.383" },
StaticSvgElement::Path { d: "m8.772 15.148.923.383" },
StaticSvgElement::Circle { cx: "6", cy: "14", r: "3" },
];
static FILE_DIFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M9 10h6" },
StaticSvgElement::Path { d: "M12 13V7" },
StaticSvgElement::Path { d: "M9 17h6" },
];
static FILE_DIGIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Rect { x: "2", y: "12", width: "4", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M10 12h2v6" },
StaticSvgElement::Path { d: "M10 18h4" },
];
static FILE_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M12 18v-6" },
StaticSvgElement::Path { d: "m9 15 3 3 3-3" },
];
static FILE_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path {
d: "M10.29 10.7a2.43 2.43 0 0 0-2.66-.52c-.29.12-.56.3-.78.53l-.35.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L6.5 18l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",
},
];
static FILE_IMAGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Circle { cx: "10", cy: "12", r: "2" },
StaticSvgElement::Path { d: "m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22" },
];
static FILE_INPUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M2 15h10" },
StaticSvgElement::Path { d: "m9 18 3-3-3-3" },
];
static FILE_JSON2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1" },
StaticSvgElement::Path { d: "M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1" },
];
static FILE_JSON_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1" },
StaticSvgElement::Path { d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1" },
];
static FILE_KEY2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Circle { cx: "4", cy: "16", r: "2" },
StaticSvgElement::Path { d: "m10 10-4.5 4.5" },
StaticSvgElement::Path { d: "m9 11 1 1" },
];
static FILE_KEY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Circle { cx: "10", cy: "16", r: "2" },
StaticSvgElement::Path { d: "m16 10-4.5 4.5" },
StaticSvgElement::Path { d: "m15 11 1 1" },
];
static FILE_LOCK2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Rect { x: "2", y: "13", width: "8", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M8 13v-2a2 2 0 1 0-4 0v2" },
];
static FILE_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Rect { x: "8", y: "12", width: "8", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M10 12v-2a2 2 0 1 1 4 0v2" },
];
static FILE_MINUS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M3 15h6" },
];
static FILE_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M9 15h6" },
];
static FILE_MUSIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4" },
StaticSvgElement::Path { d: "M8 18v-7.7L16 9v7" },
StaticSvgElement::Circle { cx: "14", cy: "16", r: "2" },
StaticSvgElement::Circle { cx: "6", cy: "18", r: "2" },
];
static FILE_OUTPUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6" },
StaticSvgElement::Path { d: "m5 11-3 3" },
StaticSvgElement::Path { d: "m5 17-3-3h10" },
];
static FILE_PEN_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2",
},
StaticSvgElement::Path {
d: "M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
StaticSvgElement::Path { d: "M8 18h1" },
];
static FILE_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path {
d: "M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
];
static FILE_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" },
StaticSvgElement::Path {
d: "M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z",
},
];
static FILE_PLUS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M3 15h6" },
StaticSvgElement::Path { d: "M6 12v6" },
];
static FILE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M9 15h6" },
StaticSvgElement::Path { d: "M12 18v-6" },
];
static FILE_QUESTION_MARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17h.01" },
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" },
StaticSvgElement::Path { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" },
];
static FILE_QUESTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17h.01" },
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" },
StaticSvgElement::Path { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" },
];
static FILE_SCAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M16 14a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M20 14a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M20 22a2 2 0 0 0 2-2" },
StaticSvgElement::Path { d: "M16 22a2 2 0 0 1-2-2" },
];
static FILE_SEARCH2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Circle { cx: "11.5", cy: "14.5", r: "2.5" },
StaticSvgElement::Path { d: "M13.3 16.3 15 18" },
];
static FILE_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "m9 18-1.5-1.5" },
StaticSvgElement::Circle { cx: "5", cy: "14", r: "3" },
];
static FILE_SLIDERS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "M10 11v2" },
StaticSvgElement::Path { d: "M8 17h8" },
StaticSvgElement::Path { d: "M14 16v2" },
];
static FILE_SPREADSHEET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M8 13h2" },
StaticSvgElement::Path { d: "M14 13h2" },
StaticSvgElement::Path { d: "M8 17h2" },
StaticSvgElement::Path { d: "M14 17h2" },
];
static FILE_STACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 7h-3a2 2 0 0 1-2-2V2" },
StaticSvgElement::Path { d: "M21 6v6.5c0 .8-.7 1.5-1.5 1.5h-7c-.8 0-1.5-.7-1.5-1.5v-9c0-.8.7-1.5 1.5-1.5H17Z" },
StaticSvgElement::Path { d: "M7 8v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H15" },
StaticSvgElement::Path { d: "M3 12v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H11" },
];
static FILE_SYMLINK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 18 3-3-3-3" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7" },
];
static FILE_TERMINAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m8 16 2-2-2-2" },
StaticSvgElement::Path { d: "M12 18h4" },
];
static FILE_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M10 9H8" },
StaticSvgElement::Path { d: "M16 13H8" },
StaticSvgElement::Path { d: "M16 17H8" },
];
static FILE_TYPE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M2 13v-1h6v1" },
StaticSvgElement::Path { d: "M5 12v6" },
StaticSvgElement::Path { d: "M4 18h2" },
];
static FILE_TYPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M9 13v-1h6v1" },
StaticSvgElement::Path { d: "M12 12v6" },
StaticSvgElement::Path { d: "M11 18h2" },
];
static FILE_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M12 12v6" },
StaticSvgElement::Path { d: "m15 15-3-3-3 3" },
];
static FILE_USER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M15 18a3 3 0 1 0-6 0" },
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" },
StaticSvgElement::Circle { cx: "12", cy: "13", r: "2" },
];
static FILE_VIDEO2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Rect { x: "2", y: "12", width: "8", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "m10 15.5 4 2.5v-6l-4 2.5" },
];
static FILE_VIDEO_CAMERA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Rect { x: "2", y: "12", width: "8", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Path {
d: "m10 13.843 3.033-1.755a.645.645 0 0 1 .967.56v4.704a.645.645 0 0 1-.967.56L10 16.157",
},
];
static FILE_VIDEO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m10 11 5 3-5 3v-6Z" },
];
static FILE_VOLUME2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M8 15h.01" },
StaticSvgElement::Path { d: "M11.5 13.5a2.5 2.5 0 0 1 0 3" },
StaticSvgElement::Path { d: "M15 12a5 5 0 0 1 0 6" },
];
static FILE_VOLUME_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 11a5 5 0 0 1 0 6" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23" },
StaticSvgElement::Path {
d: "M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z",
},
];
static FILE_WARNING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M12 9v4" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static FILE_X2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m8 12.5-5 5" },
StaticSvgElement::Path { d: "m3 12.5 5 5" },
];
static FILE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "m14.5 12.5-5 5" },
StaticSvgElement::Path { d: "m9.5 12.5 5 5" },
];
static FILE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
];
static FILES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 7h-3a2 2 0 0 1-2-2V2" },
StaticSvgElement::Path { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z" },
StaticSvgElement::Path { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" },
];
static FILM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 3v18" },
StaticSvgElement::Path { d: "M3 7.5h4" },
StaticSvgElement::Path { d: "M3 12h18" },
StaticSvgElement::Path { d: "M3 16.5h4" },
StaticSvgElement::Path { d: "M17 3v18" },
StaticSvgElement::Path { d: "M17 7.5h4" },
StaticSvgElement::Path { d: "M17 16.5h4" },
];
static FILTER_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.013 3H2l8 9.46V19l4 2v-8.54l.9-1.055" },
StaticSvgElement::Path { d: "m22 3-5 5" },
StaticSvgElement::Path { d: "m17 3 5 5" },
];
static FILTER_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Polygon { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" }];
static FINGERPRINT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" },
StaticSvgElement::Path { d: "M14 13.12c0 2.38 0 6.38-1 8.88" },
StaticSvgElement::Path { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" },
StaticSvgElement::Path { d: "M2 12a10 10 0 0 1 18-6" },
StaticSvgElement::Path { d: "M2 16h.01" },
StaticSvgElement::Path { d: "M21.8 16c.2-2 .131-5.354 0-6" },
StaticSvgElement::Path { d: "M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" },
StaticSvgElement::Path { d: "M8.65 22c.21-.66.45-1.32.57-2" },
StaticSvgElement::Path { d: "M9 6.8a6 6 0 0 1 9 5.2v2" },
];
static FIRE_EXTINGUISHER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5" },
StaticSvgElement::Path { d: "M9 18h8" },
StaticSvgElement::Path { d: "M18 3h-3" },
StaticSvgElement::Path { d: "M11 3a6 6 0 0 0-6 6v11" },
StaticSvgElement::Path { d: "M5 13h4" },
StaticSvgElement::Path { d: "M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z" },
];
static FISH_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058",
},
StaticSvgElement::Path {
d: "M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618",
},
StaticSvgElement::Path {
d: "m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20",
},
];
static FISH_SYMBOL_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M2 16s9-15 20-4C11 23 2 8 2 8" }];
static FISH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z",
},
StaticSvgElement::Path { d: "M18 12v.5" },
StaticSvgElement::Path { d: "M16 17.93a9.77 9.77 0 0 1 0-11.86" },
StaticSvgElement::Path {
d: "M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33",
},
StaticSvgElement::Path { d: "M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4" },
StaticSvgElement::Path { d: "m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98" },
];
static FLAG_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M4 22V4" },
StaticSvgElement::Path { d: "M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347" },
];
static FLAG_TRIANGLE_LEFT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M17 22V2L7 7l10 5" }];
static FLAG_TRIANGLE_RIGHT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M7 22V2l10 5-10 5" }];
static FLAG_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",
}];
static FLAME_KINDLING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z",
},
StaticSvgElement::Path { d: "m5 22 14-4" },
StaticSvgElement::Path { d: "m5 18 14 4" },
];
static FLAME_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z",
}];
static FLASHLIGHT_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4" },
StaticSvgElement::Path { d: "M7 2h11v4c0 2-2 2-2 4v1" },
StaticSvgElement::Line { x1: "11", y1: "6", x2: "18", y2: "6" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static FLASHLIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z" },
StaticSvgElement::Line { x1: "6", y1: "6", x2: "18", y2: "6" },
StaticSvgElement::Line { x1: "12", y1: "12", x2: "12", y2: "12" },
];
static FLASK_CONICAL_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v2.343" },
StaticSvgElement::Path { d: "M14 2v6.343" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563" },
StaticSvgElement::Path { d: "M6.453 15H15" },
StaticSvgElement::Path { d: "M8.5 2h7" },
];
static FLASK_CONICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",
},
StaticSvgElement::Path { d: "M6.453 15h11.094" },
StaticSvgElement::Path { d: "M8.5 2h7" },
];
static FLASK_ROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v6.292a7 7 0 1 0 4 0V2" },
StaticSvgElement::Path { d: "M5 15h14" },
StaticSvgElement::Path { d: "M8.5 2h7" },
];
static FLIP_HORIZONTAL2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 7 5 5-5 5V7" },
StaticSvgElement::Path { d: "m21 7-5 5 5 5V7" },
StaticSvgElement::Path { d: "M12 20v2" },
StaticSvgElement::Path { d: "M12 14v2" },
StaticSvgElement::Path { d: "M12 8v2" },
StaticSvgElement::Path { d: "M12 2v2" },
];
static FLIP_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3" },
StaticSvgElement::Path { d: "M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3" },
StaticSvgElement::Path { d: "M12 20v2" },
StaticSvgElement::Path { d: "M12 14v2" },
StaticSvgElement::Path { d: "M12 8v2" },
StaticSvgElement::Path { d: "M12 2v2" },
];
static FLIP_VERTICAL2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m17 3-5 5-5-5h10" },
StaticSvgElement::Path { d: "m17 21-5-5-5 5h10" },
StaticSvgElement::Path { d: "M4 12H2" },
StaticSvgElement::Path { d: "M10 12H8" },
StaticSvgElement::Path { d: "M16 12h-2" },
StaticSvgElement::Path { d: "M22 12h-2" },
];
static FLIP_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3" },
StaticSvgElement::Path { d: "M4 12H2" },
StaticSvgElement::Path { d: "M10 12H8" },
StaticSvgElement::Path { d: "M16 12h-2" },
StaticSvgElement::Path { d: "M22 12h-2" },
];
static FLOWER2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1",
},
StaticSvgElement::Circle { cx: "12", cy: "8", r: "2" },
StaticSvgElement::Path { d: "M12 10v12" },
StaticSvgElement::Path { d: "M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z" },
StaticSvgElement::Path { d: "M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z" },
];
static FLOWER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Path {
d: "M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",
},
StaticSvgElement::Path { d: "M12 7.5V9" },
StaticSvgElement::Path { d: "M7.5 12H9" },
StaticSvgElement::Path { d: "M16.5 12H15" },
StaticSvgElement::Path { d: "M12 16.5V15" },
StaticSvgElement::Path { d: "m8 8 1.88 1.88" },
StaticSvgElement::Path { d: "M14.12 9.88 16 8" },
StaticSvgElement::Path { d: "m8 16 1.88-1.88" },
StaticSvgElement::Path { d: "M14.12 14.12 16 16" },
];
static FOCUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
];
static FOLD_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 12h6" },
StaticSvgElement::Path { d: "M22 12h-6" },
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "M12 8v2" },
StaticSvgElement::Path { d: "M12 14v2" },
StaticSvgElement::Path { d: "M12 20v2" },
StaticSvgElement::Path { d: "m19 9-3 3 3 3" },
StaticSvgElement::Path { d: "m5 15 3-3-3-3" },
];
static FOLD_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22v-6" },
StaticSvgElement::Path { d: "M12 8V2" },
StaticSvgElement::Path { d: "M4 12H2" },
StaticSvgElement::Path { d: "M10 12H8" },
StaticSvgElement::Path { d: "M16 12h-2" },
StaticSvgElement::Path { d: "M22 12h-2" },
StaticSvgElement::Path { d: "m15 19-3-3-3 3" },
StaticSvgElement::Path { d: "m15 5-3 3-3-3" },
];
static FOLDER_ARCHIVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "15", cy: "19", r: "2" },
StaticSvgElement::Path {
d: "M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1",
},
StaticSvgElement::Path { d: "M15 11v-1" },
StaticSvgElement::Path { d: "M15 17v-2" },
];
static FOLDER_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "m9 13 2 2 4-4" },
];
static FOLDER_CLOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 14v2.2l1.6 1" },
StaticSvgElement::Path {
d: "M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2",
},
StaticSvgElement::Circle { cx: "16", cy: "16", r: "6" },
];
static FOLDER_CLOSED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "M2 10h20" },
];
static FOLDER_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10.5 8 13l2 2.5" },
StaticSvgElement::Path { d: "m14 10.5 2 2.5-2 2.5" },
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z",
},
];
static FOLDER_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3",
},
StaticSvgElement::Path { d: "m14.305 19.53.923-.382" },
StaticSvgElement::Path { d: "m15.228 16.852-.923-.383" },
StaticSvgElement::Path { d: "m16.852 15.228-.383-.923" },
StaticSvgElement::Path { d: "m16.852 20.772-.383.924" },
StaticSvgElement::Path { d: "m19.148 15.228.383-.923" },
StaticSvgElement::Path { d: "m19.53 21.696-.382-.924" },
StaticSvgElement::Path { d: "m20.772 16.852.924-.383" },
StaticSvgElement::Path { d: "m20.772 19.148.924.383" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static FOLDER_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",
},
StaticSvgElement::Circle { cx: "12", cy: "13", r: "1" },
];
static FOLDER_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "M12 10v6" },
StaticSvgElement::Path { d: "m15 13-3 3-3-3" },
];
static FOLDER_GIT2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5",
},
StaticSvgElement::Circle { cx: "13", cy: "12", r: "2" },
StaticSvgElement::Path { d: "M18 19c-2.8 0-5-2.2-5-5v8" },
StaticSvgElement::Circle { cx: "20", cy: "19", r: "2" },
];
static FOLDER_GIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "13", r: "2" },
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "M14 13h3" },
StaticSvgElement::Path { d: "M7 13h3" },
];
static FOLDER_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.5",
},
StaticSvgElement::Path {
d: "M13.9 17.45c-1.2-1.2-1.14-2.8-.2-3.73a2.43 2.43 0 0 1 3.44 0l.36.34.34-.34a2.43 2.43 0 0 1 3.45-.01c.95.95 1 2.53-.2 3.74L17.5 21Z",
},
];
static FOLDER_INPUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1",
},
StaticSvgElement::Path { d: "M2 13h10" },
StaticSvgElement::Path { d: "m9 16 3-3-3-3" },
];
static FOLDER_KANBAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",
},
StaticSvgElement::Path { d: "M8 10v4" },
StaticSvgElement::Path { d: "M12 10v2" },
StaticSvgElement::Path { d: "M16 10v6" },
];
static FOLDER_KEY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "16", cy: "20", r: "2" },
StaticSvgElement::Path {
d: "M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2",
},
StaticSvgElement::Path { d: "m22 14-4.5 4.5" },
StaticSvgElement::Path { d: "m21 15 1 1" },
];
static FOLDER_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "14", y: "17", width: "8", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Path {
d: "M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5",
},
StaticSvgElement::Path { d: "M20 17v-2a2 2 0 1 0-4 0v2" },
];
static FOLDER_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 13h6" },
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
];
static FOLDER_OPEN_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2",
},
StaticSvgElement::Circle { cx: "14", cy: "15", r: "1" },
];
static FOLDER_OPEN_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",
}];
static FOLDER_OUTPUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5",
},
StaticSvgElement::Path { d: "M2 13h10" },
StaticSvgElement::Path { d: "m5 10-3 3 3 3" },
];
static FOLDER_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5",
},
StaticSvgElement::Path {
d: "M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
];
static FOLDER_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 10v6" },
StaticSvgElement::Path { d: "M9 13h6" },
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
];
static FOLDER_ROOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",
},
StaticSvgElement::Circle { cx: "12", cy: "13", r: "2" },
StaticSvgElement::Path { d: "M12 15v5" },
];
static FOLDER_SEARCH2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11.5", cy: "12.5", r: "2.5" },
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "M13.3 14.3 15 16" },
];
static FOLDER_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",
},
StaticSvgElement::Path { d: "m21 21-1.9-1.9" },
StaticSvgElement::Circle { cx: "17", cy: "17", r: "3" },
];
static FOLDER_SYMLINK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",
},
StaticSvgElement::Path { d: "m8 16 3-3-3-3" },
];
static FOLDER_SYNC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",
},
StaticSvgElement::Path { d: "M12 10v4h4" },
StaticSvgElement::Path { d: "m12 14 1.535-1.605a5 5 0 0 1 8 1.5" },
StaticSvgElement::Path { d: "M22 22v-4h-4" },
StaticSvgElement::Path { d: "m22 18-1.535 1.605a5 5 0 0 1-8-1.5" },
];
static FOLDER_TREE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",
},
StaticSvgElement::Path {
d: "M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",
},
StaticSvgElement::Path { d: "M3 5a2 2 0 0 0 2 2h3" },
StaticSvgElement::Path { d: "M3 3v13a2 2 0 0 0 2 2h3" },
];
static FOLDER_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "M12 10v6" },
StaticSvgElement::Path { d: "m9 13 3-3 3 3" },
];
static FOLDER_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "m9.5 10.5 5 5" },
StaticSvgElement::Path { d: "m14.5 10.5-5 5" },
];
static FOLDER_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
}];
static FOLDERS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.9a2 2 0 0 1-1.69-.9l-.81-1.2a2 2 0 0 0-1.67-.9H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z",
},
StaticSvgElement::Path { d: "M2 8v11a2 2 0 0 0 2 2h14" },
];
static FOOTPRINTS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z",
},
StaticSvgElement::Path {
d: "M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z",
},
StaticSvgElement::Path { d: "M16 17h4" },
StaticSvgElement::Path { d: "M4 13h4" },
];
static FORKLIFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12H5a2 2 0 0 0-2 2v5" },
StaticSvgElement::Circle { cx: "13", cy: "19", r: "2" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "2" },
StaticSvgElement::Path { d: "M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5" },
];
static FORWARD_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m15 17 5-5-5-5" }, StaticSvgElement::Path { d: "M4 18v-2a4 4 0 0 1 4-4h12" }];
static FRAME_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "22", y1: "6", x2: "2", y2: "6" },
StaticSvgElement::Line { x1: "22", y1: "18", x2: "2", y2: "18" },
StaticSvgElement::Line { x1: "6", y1: "2", x2: "6", y2: "22" },
StaticSvgElement::Line { x1: "18", y1: "2", x2: "18", y2: "22" },
];
static FRAMER_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7" }];
static FROWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M16 16s-1.5-2-4-2-4 2-4 2" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "9.01", y2: "9" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "15.01", y2: "9" },
];
static FUEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "3", y1: "22", x2: "15", y2: "22" },
StaticSvgElement::Line { x1: "4", y1: "9", x2: "14", y2: "9" },
StaticSvgElement::Path { d: "M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18" },
StaticSvgElement::Path { d: "M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5" },
];
static FULLSCREEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Rect { x: "7", y: "8", width: "10", height: "8", rx: Some("1"), ry: None },
];
static FUNNEL_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348",
},
StaticSvgElement::Path { d: "M16 6h6" },
StaticSvgElement::Path { d: "M19 3v6" },
];
static FUNNEL_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473",
},
StaticSvgElement::Path { d: "m16.5 3.5 5 5" },
StaticSvgElement::Path { d: "m21.5 3.5-5 5" },
];
static FUNNEL_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",
}];
static GALLERY_HORIZONTAL_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 7v10" },
StaticSvgElement::Path { d: "M6 5v14" },
StaticSvgElement::Rect { x: "10", y: "3", width: "12", height: "18", rx: Some("2"), ry: None },
];
static GALLERY_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 3v18" },
StaticSvgElement::Rect { x: "6", y: "3", width: "12", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M22 3v18" },
];
static GALLERY_THUMBNAILS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M4 21h1" },
StaticSvgElement::Path { d: "M9 21h1" },
StaticSvgElement::Path { d: "M14 21h1" },
StaticSvgElement::Path { d: "M19 21h1" },
];
static GALLERY_VERTICAL_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 2h10" },
StaticSvgElement::Path { d: "M5 6h14" },
StaticSvgElement::Rect { x: "3", y: "10", width: "18", height: "12", rx: Some("2"), ry: None },
];
static GALLERY_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 2h18" },
StaticSvgElement::Rect { x: "3", y: "6", width: "18", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 22h18" },
];
static GAMEPAD2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "6", y1: "11", x2: "10", y2: "11" },
StaticSvgElement::Line { x1: "8", y1: "9", x2: "8", y2: "13" },
StaticSvgElement::Line { x1: "15", y1: "12", x2: "15.01", y2: "12" },
StaticSvgElement::Line { x1: "18", y1: "10", x2: "18.01", y2: "10" },
StaticSvgElement::Path {
d: "M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z",
},
];
static GAMEPAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "6", y1: "12", x2: "10", y2: "12" },
StaticSvgElement::Line { x1: "8", y1: "10", x2: "8", y2: "14" },
StaticSvgElement::Line { x1: "15", y1: "13", x2: "15.01", y2: "13" },
StaticSvgElement::Line { x1: "18", y1: "11", x2: "18.01", y2: "11" },
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "12", rx: Some("2"), ry: None },
];
static GAUGE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m12 14 4-4" }, StaticSvgElement::Path { d: "M3.34 19a10 10 0 1 1 17.32 0" }];
static GAVEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.499 12.501-8.88 8.879a1 1 0 0 1-3.001-3L11.5 9.5" },
StaticSvgElement::Path { d: "m16 16 6-6" },
StaticSvgElement::Path { d: "m21 11-8-8" },
StaticSvgElement::Path { d: "m8 8 6-6" },
StaticSvgElement::Path { d: "m9 7 8 8" },
];
static GEM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.5 3 8 9l4 13 4-13-2.5-6" },
StaticSvgElement::Path {
d: "M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z",
},
StaticSvgElement::Path { d: "M2 9h20" },
];
static GEORGIAN_LARI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.5 21a7.5 7.5 0 1 1 7.35-9" },
StaticSvgElement::Path { d: "M13 12V3" },
StaticSvgElement::Path { d: "M4 21h16" },
StaticSvgElement::Path { d: "M9 12V3" },
];
static GHOST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 10h.01" },
StaticSvgElement::Path { d: "M15 10h.01" },
StaticSvgElement::Path { d: "M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z" },
];
static GIFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "8", width: "18", height: "4", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M12 8v13" },
StaticSvgElement::Path { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" },
StaticSvgElement::Path { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" },
];
static GIT_BRANCH_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 3v12" },
StaticSvgElement::Path { d: "M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" },
StaticSvgElement::Path { d: "M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" },
StaticSvgElement::Path { d: "M15 6a9 9 0 0 0-9 9" },
StaticSvgElement::Path { d: "M18 15v6" },
StaticSvgElement::Path { d: "M21 18h-6" },
];
static GIT_BRANCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "6", y1: "3", x2: "6", y2: "15" },
StaticSvgElement::Circle { cx: "18", cy: "6", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "18", r: "3" },
StaticSvgElement::Path { d: "M18 9a9 9 0 0 1-9 9" },
];
static GIT_COMMIT_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Line { x1: "3", y1: "12", x2: "9", y2: "12" },
StaticSvgElement::Line { x1: "15", y1: "12", x2: "21", y2: "12" },
];
static GIT_COMMIT_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v6" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M12 15v6" },
];
static GIT_COMPARE_ARROWS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "5", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M12 6h5a2 2 0 0 1 2 2v7" },
StaticSvgElement::Path { d: "m15 9-3-3 3-3" },
StaticSvgElement::Circle { cx: "19", cy: "18", r: "3" },
StaticSvgElement::Path { d: "M12 18H7a2 2 0 0 1-2-2V9" },
StaticSvgElement::Path { d: "m9 15 3 3-3 3" },
];
static GIT_COMPARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M13 6h3a2 2 0 0 1 2 2v7" },
StaticSvgElement::Path { d: "M11 18H8a2 2 0 0 1-2-2V9" },
];
static GIT_FORK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Circle { cx: "18", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9" },
StaticSvgElement::Path { d: "M12 12v3" },
];
static GIT_GRAPH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "5", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M5 9v6" },
StaticSvgElement::Circle { cx: "5", cy: "18", r: "3" },
StaticSvgElement::Path { d: "M12 3v18" },
StaticSvgElement::Circle { cx: "19", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M16 15.7A9 9 0 0 0 19 9" },
];
static GIT_MERGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M6 21V9a9 9 0 0 0 9 9" },
];
static GIT_PULL_REQUEST_ARROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "5", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M5 9v12" },
StaticSvgElement::Circle { cx: "19", cy: "18", r: "3" },
StaticSvgElement::Path { d: "m15 9-3-3 3-3" },
StaticSvgElement::Path { d: "M12 6h5a2 2 0 0 1 2 2v7" },
];
static GIT_PULL_REQUEST_CLOSED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M6 9v12" },
StaticSvgElement::Path { d: "m21 3-6 6" },
StaticSvgElement::Path { d: "m21 9-6-6" },
StaticSvgElement::Path { d: "M18 11.5V15" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static GIT_PULL_REQUEST_CREATE_ARROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "5", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M5 9v12" },
StaticSvgElement::Path { d: "m15 9-3-3 3-3" },
StaticSvgElement::Path { d: "M12 6h5a2 2 0 0 1 2 2v3" },
StaticSvgElement::Path { d: "M19 15v6" },
StaticSvgElement::Path { d: "M22 18h-6" },
];
static GIT_PULL_REQUEST_CREATE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M6 9v12" },
StaticSvgElement::Path { d: "M13 6h3a2 2 0 0 1 2 2v3" },
StaticSvgElement::Path { d: "M18 15v6" },
StaticSvgElement::Path { d: "M21 18h-6" },
];
static GIT_PULL_REQUEST_DRAFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M18 6V5" },
StaticSvgElement::Path { d: "M18 11v-1" },
StaticSvgElement::Line { x1: "6", y1: "9", x2: "6", y2: "21" },
];
static GIT_PULL_REQUEST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M13 6h3a2 2 0 0 1 2 2v7" },
StaticSvgElement::Line { x1: "6", y1: "9", x2: "6", y2: "21" },
];
static GITHUB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",
},
StaticSvgElement::Path { d: "M9 18c-4.51 2-5-2-7-2" },
];
static GITLAB_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z",
}];
static GLASS_WATER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z",
},
StaticSvgElement::Path { d: "M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0" },
];
static GLASSES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "15", r: "4" },
StaticSvgElement::Circle { cx: "18", cy: "15", r: "4" },
StaticSvgElement::Path { d: "M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M2.5 13 5 7c.7-1.3 1.4-2 3-2" },
StaticSvgElement::Path { d: "M21.5 13 19 7c-.7-1.3-1.5-2-3-2" },
];
static GLOBE_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13" },
StaticSvgElement::Path { d: "M2 12h8.5" },
StaticSvgElement::Path { d: "M20 6V4a2 2 0 1 0-4 0v2" },
StaticSvgElement::Rect { x: "14", y: "6", width: "8", height: "5", rx: Some("1"), ry: None },
];
static GLOBE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" },
StaticSvgElement::Path { d: "M2 12h20" },
];
static GOAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13V2l8 4-8 4" },
StaticSvgElement::Path { d: "M20.561 10.222a9 9 0 1 1-12.55-5.29" },
StaticSvgElement::Path { d: "M8.002 9.997a5 5 0 1 0 8.9 2.02" },
];
static GPU_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 21V3" },
StaticSvgElement::Path { d: "M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26" },
StaticSvgElement::Path { d: "M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3" },
StaticSvgElement::Circle { cx: "16", cy: "11", r: "2" },
StaticSvgElement::Circle { cx: "8", cy: "11", r: "2" },
];
static GRAB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4" },
StaticSvgElement::Path { d: "M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2" },
StaticSvgElement::Path { d: "M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5" },
StaticSvgElement::Path { d: "M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0" },
];
static GRADUATION_CAP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z",
},
StaticSvgElement::Path { d: "M22 10v6" },
StaticSvgElement::Path { d: "M6 12.5V16a6 3 0 0 0 12 0v-3.5" },
];
static GRAPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 5V2l-5.89 5.89" },
StaticSvgElement::Circle { cx: "16.6", cy: "15.89", r: "3" },
StaticSvgElement::Circle { cx: "8.11", cy: "7.4", r: "3" },
StaticSvgElement::Circle { cx: "12.35", cy: "11.65", r: "3" },
StaticSvgElement::Circle { cx: "13.91", cy: "5.85", r: "3" },
StaticSvgElement::Circle { cx: "18.15", cy: "10.09", r: "3" },
StaticSvgElement::Circle { cx: "6.56", cy: "13.2", r: "3" },
StaticSvgElement::Circle { cx: "10.8", cy: "17.44", r: "3" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "3" },
];
static GRID2_X2_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",
},
StaticSvgElement::Path { d: "m16 19 2 2 4-4" },
];
static GRID2_X2_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",
},
StaticSvgElement::Path { d: "M16 19h6" },
StaticSvgElement::Path { d: "M19 22v-6" },
];
static GRID2_X2_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",
},
StaticSvgElement::Path { d: "m16 16 5 5" },
StaticSvgElement::Path { d: "m16 21 5-5" },
];
static GRID2_X2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v18" },
StaticSvgElement::Path { d: "M3 12h18" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static GRID3_X2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 3v18" },
StaticSvgElement::Path { d: "M3 12h18" },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static GRID3_X3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Path { d: "M3 15h18" },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Path { d: "M15 3v18" },
];
static GRIP_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "9", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "9", r: "1" },
StaticSvgElement::Circle { cx: "5", cy: "9", r: "1" },
StaticSvgElement::Circle { cx: "12", cy: "15", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "15", r: "1" },
StaticSvgElement::Circle { cx: "5", cy: "15", r: "1" },
];
static GRIP_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "9", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "9", cy: "5", r: "1" },
StaticSvgElement::Circle { cx: "9", cy: "19", r: "1" },
StaticSvgElement::Circle { cx: "15", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "15", cy: "5", r: "1" },
StaticSvgElement::Circle { cx: "15", cy: "19", r: "1" },
];
static GRIP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "5", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "5", r: "1" },
StaticSvgElement::Circle { cx: "5", cy: "5", r: "1" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "5", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "12", cy: "19", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "19", r: "1" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "1" },
];
static GROUP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5c0-1.1.9-2 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2c1.1 0 2 .9 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2c0 1.1-.9 2-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5c-1.1 0-2-.9-2-2v-2" },
StaticSvgElement::Rect { x: "7", y: "7", width: "7", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "10", y: "12", width: "7", height: "5", rx: Some("1"), ry: None },
];
static GUITAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m11.9 12.1 4.514-4.514" },
StaticSvgElement::Path {
d: "M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z",
},
StaticSvgElement::Path { d: "m6 16 2 2" },
StaticSvgElement::Path {
d: "M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z",
},
];
static HAM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856" },
StaticSvgElement::Path { d: "M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288" },
StaticSvgElement::Path {
d: "M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025",
},
StaticSvgElement::Path { d: "m8.5 16.5-1-1" },
];
static HAMBURGER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25" },
StaticSvgElement::Path { d: "M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0" },
StaticSvgElement::Path { d: "m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2" },
];
static HAMMER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" },
StaticSvgElement::Path { d: "m18 15 4-4" },
StaticSvgElement::Path {
d: "m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",
},
];
static HAND_COINS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17" },
StaticSvgElement::Path {
d: "m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",
},
StaticSvgElement::Path { d: "m2 16 6 6" },
StaticSvgElement::Circle { cx: "16", cy: "9", r: "2.9" },
StaticSvgElement::Circle { cx: "6", cy: "5", r: "3" },
];
static HAND_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 14h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16" },
StaticSvgElement::Path {
d: "m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",
},
StaticSvgElement::Path { d: "m2 15 6 6" },
StaticSvgElement::Path {
d: "M19.5 8.5c.7-.7 1.5-1.6 1.5-2.7A2.73 2.73 0 0 0 16 4a2.78 2.78 0 0 0-5 1.8c0 1.2.8 2 1.5 2.8L16 12Z",
},
];
static HAND_HELPING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14" },
StaticSvgElement::Path {
d: "m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",
},
StaticSvgElement::Path { d: "m2 13 6 6" },
];
static HAND_METAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4" },
StaticSvgElement::Path { d: "M14 11V9a2 2 0 1 0-4 0v2" },
StaticSvgElement::Path { d: "M10 10.5V5a2 2 0 1 0-4 0v9" },
StaticSvgElement::Path {
d: "m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5",
},
];
static HAND_PLATTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3V2" },
StaticSvgElement::Path {
d: "m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5",
},
StaticSvgElement::Path { d: "M2 14h12a2 2 0 0 1 0 4h-2" },
StaticSvgElement::Path { d: "M4 10h16" },
StaticSvgElement::Path { d: "M5 10a7 7 0 0 1 14 0" },
StaticSvgElement::Path { d: "M5 14v6a1 1 0 0 1-1 1H2" },
];
static HAND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2" },
StaticSvgElement::Path { d: "M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8" },
StaticSvgElement::Path {
d: "M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",
},
];
static HANDBAG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z",
},
StaticSvgElement::Path { d: "M8 11V6a4 4 0 0 1 8 0v5" },
];
static HANDSHAKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m11 17 2 2a1 1 0 1 0 3-3" },
StaticSvgElement::Path {
d: "m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",
},
StaticSvgElement::Path { d: "m21 3 1 11h-2" },
StaticSvgElement::Path { d: "M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3" },
StaticSvgElement::Path { d: "M3 4h8" },
];
static HARD_DRIVE_DOWNLOAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v8" },
StaticSvgElement::Path { d: "m16 6-4 4-4-4" },
StaticSvgElement::Rect { x: "2", y: "14", width: "20", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "M10 18h.01" },
];
static HARD_DRIVE_UPLOAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 6-4-4-4 4" },
StaticSvgElement::Path { d: "M12 2v8" },
StaticSvgElement::Rect { x: "2", y: "14", width: "20", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "M10 18h.01" },
];
static HARD_DRIVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "22", y1: "12", x2: "2", y2: "12" },
StaticSvgElement::Path {
d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",
},
StaticSvgElement::Line { x1: "6", y1: "16", x2: "6.01", y2: "16" },
StaticSvgElement::Line { x1: "10", y1: "16", x2: "10.01", y2: "16" },
];
static HARD_HAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5" },
StaticSvgElement::Path { d: "M14 6a6 6 0 0 1 6 6v3" },
StaticSvgElement::Path { d: "M4 15v-3a6 6 0 0 1 6-6" },
StaticSvgElement::Rect { x: "2", y: "15", width: "20", height: "4", rx: Some("1"), ry: None },
];
static HASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "4", y1: "9", x2: "20", y2: "9" },
StaticSvgElement::Line { x1: "4", y1: "15", x2: "20", y2: "15" },
StaticSvgElement::Line { x1: "10", y1: "3", x2: "8", y2: "21" },
StaticSvgElement::Line { x1: "16", y1: "3", x2: "14", y2: "21" },
];
static HAT_GLASSES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 18a2 2 0 0 0-4 0" },
StaticSvgElement::Path {
d: "m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11",
},
StaticSvgElement::Path { d: "M2 11h20" },
StaticSvgElement::Circle { cx: "17", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "7", cy: "18", r: "3" },
];
static HAZE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m5.2 6.2 1.4 1.4" },
StaticSvgElement::Path { d: "M2 13h2" },
StaticSvgElement::Path { d: "M20 13h2" },
StaticSvgElement::Path { d: "m17.4 7.6 1.4-1.4" },
StaticSvgElement::Path { d: "M22 17H2" },
StaticSvgElement::Path { d: "M22 21H2" },
StaticSvgElement::Path { d: "M16 13a4 4 0 0 0-8 0" },
StaticSvgElement::Path { d: "M12 5V2.5" },
];
static HDMI_PORT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z" },
StaticSvgElement::Path { d: "M7.5 12h9" },
];
static HEADING1_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 12h8" },
StaticSvgElement::Path { d: "M4 18V6" },
StaticSvgElement::Path { d: "M12 18V6" },
StaticSvgElement::Path { d: "m17 12 3-2v8" },
];
static HEADING2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 12h8" },
StaticSvgElement::Path { d: "M4 18V6" },
StaticSvgElement::Path { d: "M12 18V6" },
StaticSvgElement::Path { d: "M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1" },
];
static HEADING3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 12h8" },
StaticSvgElement::Path { d: "M4 18V6" },
StaticSvgElement::Path { d: "M12 18V6" },
StaticSvgElement::Path { d: "M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2" },
];
static HEADING4_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 18V6" },
StaticSvgElement::Path { d: "M17 10v3a1 1 0 0 0 1 1h3" },
StaticSvgElement::Path { d: "M21 10v8" },
StaticSvgElement::Path { d: "M4 12h8" },
StaticSvgElement::Path { d: "M4 18V6" },
];
static HEADING5_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 12h8" },
StaticSvgElement::Path { d: "M4 18V6" },
StaticSvgElement::Path { d: "M12 18V6" },
StaticSvgElement::Path { d: "M17 13v-3h4" },
StaticSvgElement::Path { d: "M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17" },
];
static HEADING6_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 12h8" },
StaticSvgElement::Path { d: "M4 18V6" },
StaticSvgElement::Path { d: "M12 18V6" },
StaticSvgElement::Circle { cx: "19", cy: "16", r: "2" },
StaticSvgElement::Path { d: "M20 10c-2 2-3 3.5-3 6" },
];
static HEADING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 12h12" },
StaticSvgElement::Path { d: "M6 20V4" },
StaticSvgElement::Path { d: "M18 20V4" },
];
static HEADPHONE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 14h-1.343" },
StaticSvgElement::Path { d: "M9.128 3.47A9 9 0 0 1 21 12v3.343" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3" },
StaticSvgElement::Path { d: "M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364" },
];
static HEADPHONES_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",
}];
static HEADSET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",
},
StaticSvgElement::Path { d: "M21 16v2a4 4 0 0 1-4 4h-5" },
];
static HEART_CRACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
},
StaticSvgElement::Path { d: "m12 13-1-1 2-2-3-3 2-2" },
];
static HEART_HANDSHAKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
},
StaticSvgElement::Path {
d: "M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66",
},
StaticSvgElement::Path { d: "m18 15-2-2" },
StaticSvgElement::Path { d: "m15 18-2-2" },
];
static HEART_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M13.5 19.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5A5.5 5.5 0 0 1 7.5 3c1.76 0 3 .5 4.5 2 1.5-1.5 2.74-2 4.5-2a5.5 5.5 0 0 1 5.402 6.5",
},
StaticSvgElement::Path { d: "M15 15h6" },
];
static HEART_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
StaticSvgElement::Path { d: "M16.5 16.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5a5.5 5.5 0 0 1 2.14-4.35" },
StaticSvgElement::Path {
d: "M8.76 3.1c1.15.22 2.13.78 3.24 1.9 1.5-1.5 2.74-2 4.5-2A5.5 5.5 0 0 1 22 8.5c0 2.12-1.3 3.78-2.67 5.17",
},
];
static HEART_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M13.5 19.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5A5.5 5.5 0 0 1 7.5 3c1.76 0 3 .5 4.5 2 1.5-1.5 2.74-2 4.5-2a5.5 5.5 0 0 1 5.402 6.5",
},
StaticSvgElement::Path { d: "M15 15h6" },
StaticSvgElement::Path { d: "M18 12v6" },
];
static HEART_PULSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
},
StaticSvgElement::Path { d: "M3.22 12H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27" },
];
static HEART_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
}];
static HEATER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 8c2-3-2-3 0-6" },
StaticSvgElement::Path { d: "M15.5 8c2-3-2-3 0-6" },
StaticSvgElement::Path { d: "M6 10h.01" },
StaticSvgElement::Path { d: "M6 14h.01" },
StaticSvgElement::Path { d: "M10 16v-4" },
StaticSvgElement::Path { d: "M14 16v-4" },
StaticSvgElement::Path { d: "M18 16v-4" },
StaticSvgElement::Path { d: "M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3" },
StaticSvgElement::Path { d: "M5 20v2" },
StaticSvgElement::Path { d: "M19 20v2" },
];
static HEXAGON_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",
}];
static HIGHLIGHTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m9 11-6 6v3h9l3-3" },
StaticSvgElement::Path { d: "m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4" },
];
static HISTORY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" },
StaticSvgElement::Path { d: "M3 3v5h5" },
StaticSvgElement::Path { d: "M12 7v5l4 2" },
];
static HOP_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27" },
StaticSvgElement::Path { d: "M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28" },
StaticSvgElement::Path { d: "M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26" },
StaticSvgElement::Path { d: "M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25" },
StaticSvgElement::Path { d: "M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75" },
StaticSvgElement::Path {
d: "M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24",
},
StaticSvgElement::Path {
d: "M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28",
},
StaticSvgElement::Path { d: "M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static HOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18" },
StaticSvgElement::Path {
d: "M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88",
},
StaticSvgElement::Path { d: "M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36" },
StaticSvgElement::Path { d: "M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87" },
StaticSvgElement::Path { d: "M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08" },
StaticSvgElement::Path { d: "M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57" },
StaticSvgElement::Path { d: "M4.93 4.93 3 3a.7.7 0 0 1 0-1" },
StaticSvgElement::Path {
d: "M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15",
},
];
static HOSPITAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v4" },
StaticSvgElement::Path { d: "M14 14h-4" },
StaticSvgElement::Path { d: "M14 18h-4" },
StaticSvgElement::Path { d: "M14 8h-4" },
StaticSvgElement::Path { d: "M18 12h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M18 22V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v18" },
];
static HOTEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 22v-6.57" },
StaticSvgElement::Path { d: "M12 11h.01" },
StaticSvgElement::Path { d: "M12 7h.01" },
StaticSvgElement::Path { d: "M14 15.43V22" },
StaticSvgElement::Path { d: "M15 16a5 5 0 0 0-6 0" },
StaticSvgElement::Path { d: "M16 11h.01" },
StaticSvgElement::Path { d: "M16 7h.01" },
StaticSvgElement::Path { d: "M8 11h.01" },
StaticSvgElement::Path { d: "M8 7h.01" },
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: None },
];
static HOURGLASS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 22h14" },
StaticSvgElement::Path { d: "M5 2h14" },
StaticSvgElement::Path { d: "M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22" },
StaticSvgElement::Path { d: "M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2" },
];
static HOUSE_PLUG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12V8.964" },
StaticSvgElement::Path { d: "M14 12V8.964" },
StaticSvgElement::Path { d: "M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z" },
StaticSvgElement::Path {
d: "M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2",
},
];
static HOUSE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.662 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v2.475",
},
StaticSvgElement::Path { d: "M14.959 12.717A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8" },
StaticSvgElement::Path { d: "M15 18h6" },
StaticSvgElement::Path { d: "M18 15v6" },
];
static HOUSE_WIFI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9.5 13.866a4 4 0 0 1 5 .01" },
StaticSvgElement::Path { d: "M12 17h.01" },
StaticSvgElement::Path {
d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",
},
StaticSvgElement::Path { d: "M7 10.754a8 8 0 0 1 10 0" },
];
static HOUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" },
StaticSvgElement::Path {
d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",
},
];
static ICE_CREAM_BOWL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0" },
StaticSvgElement::Path { d: "M12.14 11a3.5 3.5 0 1 1 6.71 0" },
StaticSvgElement::Path { d: "M15.5 6.5a3.5 3.5 0 1 0-7 0" },
];
static ICE_CREAM_CONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11" },
StaticSvgElement::Path { d: "M17 7A5 5 0 0 0 7 7" },
StaticSvgElement::Path { d: "M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4" },
];
static ID_CARD_LANYARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.5 8h-3" },
StaticSvgElement::Path { d: "m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3" },
StaticSvgElement::Path { d: "M16.899 22A5 5 0 0 0 7.1 22" },
StaticSvgElement::Path { d: "m9 2 3 6" },
StaticSvgElement::Circle { cx: "12", cy: "15", r: "3" },
];
static ID_CARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 10h2" },
StaticSvgElement::Path { d: "M16 14h2" },
StaticSvgElement::Path { d: "M6.17 15a3 3 0 0 1 5.66 0" },
StaticSvgElement::Circle { cx: "9", cy: "11", r: "2" },
StaticSvgElement::Rect { x: "2", y: "5", width: "20", height: "14", rx: Some("2"), ry: None },
];
static IMAGE_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",
},
StaticSvgElement::Path { d: "m14 19 3 3v-5.5" },
StaticSvgElement::Path { d: "m17 22 3-3" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
];
static IMAGE_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7" },
StaticSvgElement::Line { x1: "16", y1: "5", x2: "22", y2: "5" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
StaticSvgElement::Path { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" },
];
static IMAGE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
StaticSvgElement::Path { d: "M10.41 10.41a2 2 0 1 1-2.83-2.83" },
StaticSvgElement::Line { x1: "13.5", y1: "13.5", x2: "6", y2: "21" },
StaticSvgElement::Line { x1: "18", y1: "12", x2: "21", y2: "15" },
StaticSvgElement::Path { d: "M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59" },
StaticSvgElement::Path { d: "M21 15V5a2 2 0 0 0-2-2H9" },
];
static IMAGE_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",
},
StaticSvgElement::Path { d: "M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" },
StaticSvgElement::Path { d: "m6 21 5-5" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
];
static IMAGE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 5h6" },
StaticSvgElement::Path { d: "M19 2v6" },
StaticSvgElement::Path { d: "M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5" },
StaticSvgElement::Path { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
];
static IMAGE_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",
},
StaticSvgElement::Path { d: "m14 19.5 3-3 3 3" },
StaticSvgElement::Path { d: "M17 22v-5.5" },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
];
static IMAGE_UPSCALE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 3h5v5" },
StaticSvgElement::Path { d: "M17 21h2a2 2 0 0 0 2-2" },
StaticSvgElement::Path { d: "M21 12v3" },
StaticSvgElement::Path { d: "m21 3-5 5" },
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19" },
StaticSvgElement::Path { d: "M9 3h3" },
StaticSvgElement::Rect { x: "3", y: "11", width: "10", height: "10", rx: Some("1"), ry: None },
];
static IMAGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Circle { cx: "9", cy: "9", r: "2" },
StaticSvgElement::Path { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" },
];
static IMAGES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 22H4a2 2 0 0 1-2-2V6" },
StaticSvgElement::Path { d: "m22 13-1.296-1.296a2.41 2.41 0 0 0-3.408 0L11 18" },
StaticSvgElement::Circle { cx: "12", cy: "8", r: "2" },
StaticSvgElement::Rect { x: "6", y: "2", width: "16", height: "16", rx: Some("2"), ry: None },
];
static IMPORT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v12" },
StaticSvgElement::Path { d: "m8 11 4 4 4-4" },
StaticSvgElement::Path { d: "M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4" },
];
static INBOX_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Polyline { points: "22 12 16 12 14 15 10 15 8 12 2 12" },
StaticSvgElement::Path {
d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",
},
];
static INDENT_DECREASE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12H11" },
StaticSvgElement::Path { d: "M21 18H11" },
StaticSvgElement::Path { d: "M21 6H11" },
StaticSvgElement::Path { d: "m7 8-4 4 4 4" },
];
static INDENT_INCREASE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12H11" },
StaticSvgElement::Path { d: "M21 18H11" },
StaticSvgElement::Path { d: "M21 6H11" },
StaticSvgElement::Path { d: "m3 8 4 4-4 4" },
];
static INDIAN_RUPEE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 3h12" },
StaticSvgElement::Path { d: "M6 8h12" },
StaticSvgElement::Path { d: "m6 13 8.5 8" },
StaticSvgElement::Path { d: "M6 13h3" },
StaticSvgElement::Path { d: "M9 13c6.667 0 6.667-10 0-10" },
];
static INFINITY_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8" }];
static INFO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M12 16v-4" },
StaticSvgElement::Path { d: "M12 8h.01" },
];
static INSPECTION_PANEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 7h.01" },
StaticSvgElement::Path { d: "M17 7h.01" },
StaticSvgElement::Path { d: "M7 17h.01" },
StaticSvgElement::Path { d: "M17 17h.01" },
];
static INSTAGRAM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "2", width: "20", height: "20", rx: Some("5"), ry: Some("5") },
StaticSvgElement::Path { d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" },
StaticSvgElement::Line { x1: "17.5", y1: "6.5", x2: "17.51", y2: "6.5" },
];
static ITALIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "19", y1: "4", x2: "10", y2: "4" },
StaticSvgElement::Line { x1: "14", y1: "20", x2: "5", y2: "20" },
StaticSvgElement::Line { x1: "15", y1: "4", x2: "9", y2: "20" },
];
static ITERATION_CCW_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m16 14 4 4-4 4" }, StaticSvgElement::Path { d: "M20 10a8 8 0 1 0-8 8h8" }];
static ITERATION_CW_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M4 10a8 8 0 1 1 8 8H4" }, StaticSvgElement::Path { d: "m8 22-4-4 4-4" }];
static JAPANESE_YEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 9.5V21m0-11.5L6 3m6 6.5L18 3" },
StaticSvgElement::Path { d: "M6 15h12" },
StaticSvgElement::Path { d: "M6 11h12" },
];
static JOYSTICK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z" },
StaticSvgElement::Path { d: "M6 15v-2" },
StaticSvgElement::Path { d: "M12 15V9" },
StaticSvgElement::Circle { cx: "12", cy: "6", r: "3" },
];
static KANBAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 5v11" },
StaticSvgElement::Path { d: "M12 5v6" },
StaticSvgElement::Path { d: "M18 5v14" },
];
static KEY_ROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",
},
StaticSvgElement::Circle { cx: "16.5", cy: "7.5", r: ".5" },
];
static KEY_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z",
},
StaticSvgElement::Path { d: "m14 7 3 3" },
StaticSvgElement::Path {
d: "m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814",
},
];
static KEY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" },
StaticSvgElement::Path { d: "m21 2-9.6 9.6" },
StaticSvgElement::Circle { cx: "7.5", cy: "15.5", r: "5.5" },
];
static KEYBOARD_MUSIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6 8h4" },
StaticSvgElement::Path { d: "M14 8h.01" },
StaticSvgElement::Path { d: "M18 8h.01" },
StaticSvgElement::Path { d: "M2 12h20" },
StaticSvgElement::Path { d: "M6 12v4" },
StaticSvgElement::Path { d: "M10 12v4" },
StaticSvgElement::Path { d: "M14 12v4" },
StaticSvgElement::Path { d: "M18 12v4" },
];
static KEYBOARD_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M 20 4 A2 2 0 0 1 22 6" },
StaticSvgElement::Path { d: "M 22 6 L 22 16.41" },
StaticSvgElement::Path { d: "M 7 16 L 16 16" },
StaticSvgElement::Path { d: "M 9.69 4 L 20 4" },
StaticSvgElement::Path { d: "M14 8h.01" },
StaticSvgElement::Path { d: "M18 8h.01" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "M6 8h.01" },
StaticSvgElement::Path { d: "M8 12h.01" },
];
static KEYBOARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 8h.01" },
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M14 8h.01" },
StaticSvgElement::Path { d: "M16 12h.01" },
StaticSvgElement::Path { d: "M18 8h.01" },
StaticSvgElement::Path { d: "M6 8h.01" },
StaticSvgElement::Path { d: "M7 16h10" },
StaticSvgElement::Path { d: "M8 12h.01" },
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
];
static LAMP_CEILING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v5" },
StaticSvgElement::Path { d: "M14.829 15.998a3 3 0 1 1-5.658 0" },
StaticSvgElement::Path {
d: "M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z",
},
];
static LAMP_DESK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z",
},
StaticSvgElement::Path { d: "m14.207 4.793-3.414 3.414" },
StaticSvgElement::Path { d: "M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z" },
StaticSvgElement::Path { d: "m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18" },
];
static LAMP_FLOOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 10v12" },
StaticSvgElement::Path {
d: "M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z",
},
StaticSvgElement::Path { d: "M9 22h6" },
];
static LAMP_WALL_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z",
},
StaticSvgElement::Path { d: "M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z" },
StaticSvgElement::Path { d: "M8 6h4a2 2 0 0 1 2 2v5" },
];
static LAMP_WALL_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z",
},
StaticSvgElement::Path { d: "M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z" },
StaticSvgElement::Path { d: "M8 18h4a2 2 0 0 0 2-2v-5" },
];
static LAMP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12v6" },
StaticSvgElement::Path {
d: "M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z",
},
StaticSvgElement::Path { d: "M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z" },
];
static LAND_PLOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12 8 6-3-6-3v10" },
StaticSvgElement::Path {
d: "m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12",
},
StaticSvgElement::Path { d: "m6.49 12.85 11.02 6.3" },
StaticSvgElement::Path { d: "M17.51 12.85 6.5 19.15" },
];
static LANDMARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 18v-7" },
StaticSvgElement::Path {
d: "M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z",
},
StaticSvgElement::Path { d: "M14 18v-7" },
StaticSvgElement::Path { d: "M18 18v-7" },
StaticSvgElement::Path { d: "M3 22h18" },
StaticSvgElement::Path { d: "M6 18v-7" },
];
static LANGUAGES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m5 8 6 6" },
StaticSvgElement::Path { d: "m4 14 6-6 2-3" },
StaticSvgElement::Path { d: "M2 5h12" },
StaticSvgElement::Path { d: "M7 2h1" },
StaticSvgElement::Path { d: "m22 22-5-10-5 10" },
StaticSvgElement::Path { d: "M14 18h6" },
];
static LAPTOP_MINIMAL_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 20h20" },
StaticSvgElement::Path { d: "m9 10 2 2 4-4" },
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "12", rx: Some("2"), ry: None },
];
static LAPTOP_MINIMAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "4", width: "18", height: "12", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Line { x1: "2", y1: "20", x2: "22", y2: "20" },
];
static LAPTOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z",
},
StaticSvgElement::Path { d: "M20.054 15.987H3.946" },
];
static LASSO_SELECT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 22a5 5 0 0 1-2-4" },
StaticSvgElement::Path { d: "M7 16.93c.96.43 1.96.74 2.99.91" },
StaticSvgElement::Path { d: "M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2" },
StaticSvgElement::Path { d: "M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" },
StaticSvgElement::Path {
d: "M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",
},
];
static LASSO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.704 14.467A10 8 0 0 1 2 10a10 8 0 0 1 20 0 10 8 0 0 1-10 8 10 8 0 0 1-5.181-1.158",
},
StaticSvgElement::Path { d: "M7 22a5 5 0 0 1-2-3.994" },
StaticSvgElement::Circle { cx: "5", cy: "16", r: "2" },
];
static LAUGH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "9.01", y2: "9" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "15.01", y2: "9" },
];
static LAYERS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z",
},
StaticSvgElement::Path {
d: "m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845",
},
];
static LAYERS3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z",
},
StaticSvgElement::Path {
d: "m6.08 9.5-3.5 1.6a1 1 0 0 0 0 1.81l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9a1 1 0 0 0 0-1.83l-3.5-1.59",
},
StaticSvgElement::Path {
d: "m6.08 14.5-3.5 1.6a1 1 0 0 0 0 1.81l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9a1 1 0 0 0 0-1.83l-3.5-1.59",
},
];
static LAYERS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",
},
StaticSvgElement::Path { d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12" },
StaticSvgElement::Path { d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17" },
];
static LAYOUT_DASHBOARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "7", height: "9", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "3", width: "7", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "12", width: "7", height: "9", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "3", y: "16", width: "7", height: "5", rx: Some("1"), ry: None },
];
static LAYOUT_GRID_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "3", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "3", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
];
static LAYOUT_LIST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "3", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M14 4h7" },
StaticSvgElement::Path { d: "M14 9h7" },
StaticSvgElement::Path { d: "M14 15h7" },
StaticSvgElement::Path { d: "M14 20h7" },
];
static LAYOUT_PANEL_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "7", height: "18", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "3", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
];
static LAYOUT_PANEL_TOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "3", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "14", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
];
static LAYOUT_TEMPLATE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "3", y: "14", width: "9", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "16", y: "14", width: "5", height: "7", rx: Some("1"), ry: None },
];
static LEAF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z" },
StaticSvgElement::Path { d: "M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12" },
];
static LEAFY_GREEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22",
},
StaticSvgElement::Path { d: "M2 22 17 7" },
];
static LECTERN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3",
},
StaticSvgElement::Path { d: "M18 6V3a1 1 0 0 0-1-1h-3" },
StaticSvgElement::Rect { x: "8", y: "10", width: "8", height: "12", rx: Some("1"), ry: None },
];
static LETTER_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 12h6" },
StaticSvgElement::Path { d: "M15 6h6" },
StaticSvgElement::Path { d: "m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13" },
StaticSvgElement::Path { d: "M3 18h18" },
StaticSvgElement::Path { d: "M3.92 11h6.16" },
];
static LIB_ELEMENTS: &[StaticSvgElement] = &[];
static LIBRARY_BIG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "8", height: "18", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M7 3v18" },
StaticSvgElement::Path {
d: "M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z",
},
];
static LIBRARY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 6 4 14" },
StaticSvgElement::Path { d: "M12 6v14" },
StaticSvgElement::Path { d: "M8 8v12" },
StaticSvgElement::Path { d: "M4 4v16" },
];
static LIFE_BUOY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "m4.93 4.93 4.24 4.24" },
StaticSvgElement::Path { d: "m14.83 9.17 4.24-4.24" },
StaticSvgElement::Path { d: "m14.83 14.83 4.24 4.24" },
StaticSvgElement::Path { d: "m9.17 14.83-4.24 4.24" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
];
static LIGATURE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 12h2v8" },
StaticSvgElement::Path { d: "M14 20h4" },
StaticSvgElement::Path { d: "M6 12h4" },
StaticSvgElement::Path { d: "M6 20h4" },
StaticSvgElement::Path { d: "M8 20V8a4 4 0 0 1 7.464-2" },
];
static LIGHTBULB_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5" },
StaticSvgElement::Path { d: "M9 18h6" },
StaticSvgElement::Path { d: "M10 22h4" },
];
static LIGHTBULB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",
},
StaticSvgElement::Path { d: "M9 18h6" },
StaticSvgElement::Path { d: "M10 22h4" },
];
static LINE_SQUIGGLE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2" }];
static LINK2_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 17H7A5 5 0 0 1 7 7" },
StaticSvgElement::Path { d: "M15 7h2a5 5 0 0 1 4 8" },
StaticSvgElement::Line { x1: "8", y1: "12", x2: "12", y2: "12" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static LINK2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 17H7A5 5 0 0 1 7 7h2" },
StaticSvgElement::Path { d: "M15 7h2a5 5 0 1 1 0 10h-2" },
StaticSvgElement::Line { x1: "8", y1: "12", x2: "16", y2: "12" },
];
static LINK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" },
StaticSvgElement::Path { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" },
];
static LINKEDIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" },
StaticSvgElement::Rect { x: "2", y: "9", width: "4", height: "12", rx: None, ry: None },
StaticSvgElement::Circle { cx: "4", cy: "4", r: "2" },
];
static LIST_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 18H3" },
StaticSvgElement::Path { d: "m15 18 2 2 4-4" },
StaticSvgElement::Path { d: "M16 12H3" },
StaticSvgElement::Path { d: "M16 6H3" },
];
static LIST_CHECKS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m3 17 2 2 4-4" },
StaticSvgElement::Path { d: "m3 7 2 2 4-4" },
StaticSvgElement::Path { d: "M13 6h8" },
StaticSvgElement::Path { d: "M13 12h8" },
StaticSvgElement::Path { d: "M13 18h8" },
];
static LIST_COLLAPSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12h11" },
StaticSvgElement::Path { d: "M10 18h11" },
StaticSvgElement::Path { d: "M10 6h11" },
StaticSvgElement::Path { d: "m3 10 3-3-3-3" },
StaticSvgElement::Path { d: "m3 20 3-3-3-3" },
];
static LIST_END_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 12H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path { d: "M10 18H3" },
StaticSvgElement::Path { d: "M21 6v10a2 2 0 0 1-2 2h-5" },
StaticSvgElement::Path { d: "m16 16-2 2 2 2" },
];
static LIST_FILTER_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 18h4" },
StaticSvgElement::Path { d: "M11 6H3" },
StaticSvgElement::Path { d: "M15 6h6" },
StaticSvgElement::Path { d: "M18 9V3" },
StaticSvgElement::Path { d: "M7 12h8" },
];
static LIST_FILTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 6h18" },
StaticSvgElement::Path { d: "M7 12h10" },
StaticSvgElement::Path { d: "M10 18h4" },
];
static LIST_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 12H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path { d: "M16 18H3" },
StaticSvgElement::Path { d: "M21 12h-6" },
];
static LIST_MUSIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15V6" },
StaticSvgElement::Path { d: "M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" },
StaticSvgElement::Path { d: "M12 12H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path { d: "M12 18H3" },
];
static LIST_ORDERED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 12h11" },
StaticSvgElement::Path { d: "M10 18h11" },
StaticSvgElement::Path { d: "M10 6h11" },
StaticSvgElement::Path { d: "M4 10h2" },
StaticSvgElement::Path { d: "M4 6h1v4" },
StaticSvgElement::Path { d: "M6 18H4c0-1 2-2 2-3s-1-1.5-2-1" },
];
static LIST_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 12H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path { d: "M16 18H3" },
StaticSvgElement::Path { d: "M18 9v6" },
StaticSvgElement::Path { d: "M21 12h-6" },
];
static LIST_RESTART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 6H3" },
StaticSvgElement::Path { d: "M7 12H3" },
StaticSvgElement::Path { d: "M7 18H3" },
StaticSvgElement::Path { d: "M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14" },
StaticSvgElement::Path { d: "M11 10v4h4" },
];
static LIST_START_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 12H3" },
StaticSvgElement::Path { d: "M16 18H3" },
StaticSvgElement::Path { d: "M10 6H3" },
StaticSvgElement::Path { d: "M21 18V8a2 2 0 0 0-2-2h-5" },
StaticSvgElement::Path { d: "m16 8-2-2 2-2" },
];
static LIST_TODO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "5", width: "6", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "m3 17 2 2 4-4" },
StaticSvgElement::Path { d: "M13 6h8" },
StaticSvgElement::Path { d: "M13 12h8" },
StaticSvgElement::Path { d: "M13 18h8" },
];
static LIST_TREE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12h-8" },
StaticSvgElement::Path { d: "M21 6H8" },
StaticSvgElement::Path { d: "M21 18h-8" },
StaticSvgElement::Path { d: "M3 6v4c0 1.1.9 2 2 2h3" },
StaticSvgElement::Path { d: "M3 10v6c0 1.1.9 2 2 2h3" },
];
static LIST_VIDEO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12H3" },
StaticSvgElement::Path { d: "M12 18H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path {
d: "M21.033 14.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .968-.56z",
},
];
static LIST_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 12H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path { d: "M16 18H3" },
StaticSvgElement::Path { d: "m19 10-4 4" },
StaticSvgElement::Path { d: "m15 10 4 4" },
];
static LIST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 12h.01" },
StaticSvgElement::Path { d: "M3 18h.01" },
StaticSvgElement::Path { d: "M3 6h.01" },
StaticSvgElement::Path { d: "M8 12h13" },
StaticSvgElement::Path { d: "M8 18h13" },
StaticSvgElement::Path { d: "M8 6h13" },
];
static LOADER_CIRCLE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M21 12a9 9 0 1 1-6.219-8.56" }];
static LOADER_PINWHEEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0" },
StaticSvgElement::Path { d: "M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6" },
StaticSvgElement::Path { d: "M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static LOADER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v4" },
StaticSvgElement::Path { d: "m16.2 7.8 2.9-2.9" },
StaticSvgElement::Path { d: "M18 12h4" },
StaticSvgElement::Path { d: "m16.2 16.2 2.9 2.9" },
StaticSvgElement::Path { d: "M12 18v4" },
StaticSvgElement::Path { d: "m4.9 19.1 2.9-2.9" },
StaticSvgElement::Path { d: "M2 12h4" },
StaticSvgElement::Path { d: "m4.9 4.9 2.9 2.9" },
];
static LOCATE_FIXED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "2", y1: "12", x2: "5", y2: "12" },
StaticSvgElement::Line { x1: "19", y1: "12", x2: "22", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "2", x2: "12", y2: "5" },
StaticSvgElement::Line { x1: "12", y1: "19", x2: "12", y2: "22" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "7" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
];
static LOCATE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 19v3" },
StaticSvgElement::Path { d: "M12 2v3" },
StaticSvgElement::Path { d: "M18.89 13.24a7 7 0 0 0-8.13-8.13" },
StaticSvgElement::Path { d: "M19 12h3" },
StaticSvgElement::Path { d: "M2 12h3" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M7.05 7.05a7 7 0 0 0 9.9 9.9" },
];
static LOCATE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "2", y1: "12", x2: "5", y2: "12" },
StaticSvgElement::Line { x1: "19", y1: "12", x2: "22", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "2", x2: "12", y2: "5" },
StaticSvgElement::Line { x1: "12", y1: "19", x2: "12", y2: "22" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "7" },
];
static LOCATION_EDIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468" },
StaticSvgElement::Path {
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
StaticSvgElement::Circle { cx: "10", cy: "10", r: "3" },
];
static LOCK_KEYHOLE_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "16", r: "1" },
StaticSvgElement::Rect { x: "3", y: "10", width: "18", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 10V7a5 5 0 0 1 9.33-2.5" },
];
static LOCK_KEYHOLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "16", r: "1" },
StaticSvgElement::Rect { x: "3", y: "10", width: "18", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 10V7a5 5 0 0 1 10 0v3" },
];
static LOCK_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "11", width: "18", height: "11", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M7 11V7a5 5 0 0 1 9.9-1" },
];
static LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "11", width: "18", height: "11", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M7 11V7a5 5 0 0 1 10 0v4" },
];
static LOG_IN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 17 5-5-5-5" },
StaticSvgElement::Path { d: "M15 12H3" },
StaticSvgElement::Path { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" },
];
static LOG_OUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 17 5-5-5-5" },
StaticSvgElement::Path { d: "M21 12H9" },
StaticSvgElement::Path { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" },
];
static LOGS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 12h8" },
StaticSvgElement::Path { d: "M13 18h8" },
StaticSvgElement::Path { d: "M13 6h8" },
StaticSvgElement::Path { d: "M3 12h1" },
StaticSvgElement::Path { d: "M3 18h1" },
StaticSvgElement::Path { d: "M3 6h1" },
StaticSvgElement::Path { d: "M8 12h1" },
StaticSvgElement::Path { d: "M8 18h1" },
StaticSvgElement::Path { d: "M8 6h1" },
];
static LOLLIPOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
StaticSvgElement::Path { d: "m21 21-4.3-4.3" },
StaticSvgElement::Path { d: "M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0" },
];
static LUGGAGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14" },
StaticSvgElement::Path { d: "M10 20h4" },
StaticSvgElement::Circle { cx: "16", cy: "20", r: "2" },
StaticSvgElement::Circle { cx: "8", cy: "20", r: "2" },
];
static MAGNET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12 15 4 4" },
StaticSvgElement::Path {
d: "M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z",
},
StaticSvgElement::Path { d: "m5 8 4 4" },
];
static MAIL_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "m16 19 2 2 4-4" },
];
static MAIL_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "M16 19h6" },
];
static MAIL_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z",
},
StaticSvgElement::Path { d: "m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10" },
];
static MAIL_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "M19 16v6" },
StaticSvgElement::Path { d: "M16 19h6" },
];
static MAIL_QUESTION_MARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2" },
StaticSvgElement::Path { d: "M20 22v.01" },
];
static MAIL_QUESTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2" },
StaticSvgElement::Path { d: "M20 22v.01" },
];
static MAIL_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
StaticSvgElement::Path { d: "m22 22-1.5-1.5" },
];
static MAIL_WARNING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "M20 14v4" },
StaticSvgElement::Path { d: "M20 22v.01" },
];
static MAIL_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9" },
StaticSvgElement::Path { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" },
StaticSvgElement::Path { d: "m17 17 4 4" },
StaticSvgElement::Path { d: "m21 17-4 4" },
];
static MAIL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7" },
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
];
static MAILBOX_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z" },
StaticSvgElement::Polyline { points: "15,9 18,9 18,11" },
StaticSvgElement::Path { d: "M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2" },
StaticSvgElement::Line { x1: "6", y1: "10", x2: "7", y2: "10" },
];
static MAILS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "6", y: "4", width: "16", height: "13", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7" },
StaticSvgElement::Path { d: "M2 8v11c0 1.1.9 2 2 2h14" },
];
static MAP_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14",
},
StaticSvgElement::Path { d: "M15 5.764V14" },
StaticSvgElement::Path { d: "M21 18h-6" },
StaticSvgElement::Path { d: "M9 3.236v15" },
];
static MAP_PIN_CHECK_INSIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
},
StaticSvgElement::Path { d: "m9 10 2 2 4-4" },
];
static MAP_PIN_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728",
},
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "m16 18 2 2 4-4" },
];
static MAP_PIN_HOUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z",
},
StaticSvgElement::Path { d: "M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2" },
StaticSvgElement::Path { d: "M18 22v-3" },
StaticSvgElement::Circle { cx: "10", cy: "10", r: "3" },
];
static MAP_PIN_MINUS_INSIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
},
StaticSvgElement::Path { d: "M9 10h6" },
];
static MAP_PIN_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",
},
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "M16 18h6" },
];
static MAP_PIN_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12.75 7.09a3 3 0 0 1 2.16 2.16" },
StaticSvgElement::Path {
d: "M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568",
},
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533" },
StaticSvgElement::Path { d: "M9.13 9.13a3 3 0 0 0 3.74 3.74" },
];
static MAP_PIN_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468" },
StaticSvgElement::Path {
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
StaticSvgElement::Circle { cx: "10", cy: "10", r: "3" },
];
static MAP_PIN_PLUS_INSIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
},
StaticSvgElement::Path { d: "M12 7v6" },
StaticSvgElement::Path { d: "M9 10h6" },
];
static MAP_PIN_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",
},
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "M16 18h6" },
StaticSvgElement::Path { d: "M19 15v6" },
];
static MAP_PIN_X_INSIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
},
StaticSvgElement::Path { d: "m14.5 7.5-5 5" },
StaticSvgElement::Path { d: "m9.5 7.5 5 5" },
];
static MAP_PIN_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077",
},
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "m21.5 15.5-5 5" },
StaticSvgElement::Path { d: "m21.5 20.5-5-5" },
];
static MAP_PIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
},
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
];
static MAP_PINNED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",
},
StaticSvgElement::Circle { cx: "12", cy: "8", r: "2" },
StaticSvgElement::Path {
d: "M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",
},
];
static MAP_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12",
},
StaticSvgElement::Path { d: "M15 5.764V12" },
StaticSvgElement::Path { d: "M18 15v6" },
StaticSvgElement::Path { d: "M21 18h-6" },
StaticSvgElement::Path { d: "M9 3.236v15" },
];
static MAP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",
},
StaticSvgElement::Path { d: "M15 5.764v15" },
StaticSvgElement::Path { d: "M9 3.236v15" },
];
static MARS_STROKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14 6 4 4" },
StaticSvgElement::Path { d: "M17 3h4v4" },
StaticSvgElement::Path { d: "m21 3-7.75 7.75" },
StaticSvgElement::Circle { cx: "9", cy: "15", r: "6" },
];
static MARS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 3h5v5" },
StaticSvgElement::Path { d: "m21 3-6.75 6.75" },
StaticSvgElement::Circle { cx: "10", cy: "14", r: "6" },
];
static MARTINI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 22h8" },
StaticSvgElement::Path { d: "M12 11v11" },
StaticSvgElement::Path { d: "m19 3-7 8-7-8Z" },
];
static MAXIMIZE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 3h6v6" },
StaticSvgElement::Path { d: "m21 3-7 7" },
StaticSvgElement::Path { d: "m3 21 7-7" },
StaticSvgElement::Path { d: "M9 21H3v-6" },
];
static MAXIMIZE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 3H5a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "M21 8V5a2 2 0 0 0-2-2h-3" },
StaticSvgElement::Path { d: "M3 16v3a2 2 0 0 0 2 2h3" },
StaticSvgElement::Path { d: "M16 21h3a2 2 0 0 0 2-2v-3" },
];
static MEDAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15",
},
StaticSvgElement::Path { d: "M11 12 5.12 2.2" },
StaticSvgElement::Path { d: "m13 12 5.88-9.8" },
StaticSvgElement::Path { d: "M8 7h8" },
StaticSvgElement::Circle { cx: "12", cy: "17", r: "5" },
StaticSvgElement::Path { d: "M12 18v-2h-.5" },
];
static MEGAPHONE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344" },
StaticSvgElement::Path { d: "M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" },
StaticSvgElement::Path { d: "M8 8v6" },
];
static MEGAPHONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",
},
StaticSvgElement::Path { d: "M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14" },
StaticSvgElement::Path { d: "M8 6v8" },
];
static MEH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Line { x1: "8", y1: "15", x2: "16", y2: "15" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "9.01", y2: "9" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "15.01", y2: "9" },
];
static MEMORY_STICK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 19v-3" },
StaticSvgElement::Path { d: "M10 19v-3" },
StaticSvgElement::Path { d: "M14 19v-3" },
StaticSvgElement::Path { d: "M18 19v-3" },
StaticSvgElement::Path { d: "M8 11V9" },
StaticSvgElement::Path { d: "M16 11V9" },
StaticSvgElement::Path { d: "M12 11V9" },
StaticSvgElement::Path { d: "M2 15h20" },
StaticSvgElement::Path {
d: "M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",
},
];
static MENU_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 12h16" },
StaticSvgElement::Path { d: "M4 18h16" },
StaticSvgElement::Path { d: "M4 6h16" },
];
static MERGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m8 6 4-4 4 4" },
StaticSvgElement::Path { d: "M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22" },
StaticSvgElement::Path { d: "m20 22-5-5" },
];
static MESSAGE_CIRCLE_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 9.5 8 12l2 2.5" },
StaticSvgElement::Path { d: "m14 9.5 2 2.5-2 2.5" },
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22z" },
];
static MESSAGE_CIRCLE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.5 3.1c-.5 0-1-.1-1.5-.1s-1 .1-1.5.1" },
StaticSvgElement::Path { d: "M19.3 6.8a10.45 10.45 0 0 0-2.1-2.1" },
StaticSvgElement::Path { d: "M20.9 13.5c.1-.5.1-1 .1-1.5s-.1-1-.1-1.5" },
StaticSvgElement::Path { d: "M17.2 19.3a10.45 10.45 0 0 0 2.1-2.1" },
StaticSvgElement::Path { d: "M10.5 20.9c.5.1 1 .1 1.5.1s1-.1 1.5-.1" },
StaticSvgElement::Path { d: "M3.5 17.5 2 22l4.5-1.5" },
StaticSvgElement::Path { d: "M3.1 10.5c0 .5-.1 1-.1 1.5s.1 1 .1 1.5" },
StaticSvgElement::Path { d: "M6.8 4.7a10.45 10.45 0 0 0-2.1 2.1" },
];
static MESSAGE_CIRCLE_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path {
d: "M15.8 9.2a2.5 2.5 0 0 0-3.5 0l-.3.4-.35-.3a2.42 2.42 0 1 0-3.2 3.6l3.6 3.5 3.6-3.5c1.2-1.2 1.1-2.7.2-3.7",
},
];
static MESSAGE_CIRCLE_MORE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "M8 12h.01" },
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M16 12h.01" },
];
static MESSAGE_CIRCLE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20.5 14.9A9 9 0 0 0 9.1 3.5" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M5.6 5.6C3 8.3 2.2 12.5 4 16l-2 6 6-2c3.4 1.8 7.6 1.1 10.3-1.7" },
];
static MESSAGE_CIRCLE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "M12 8v8" },
];
static MESSAGE_CIRCLE_QUESTION_MARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static MESSAGE_CIRCLE_QUESTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static MESSAGE_CIRCLE_REPLY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "m10 15-3-3 3-3" },
StaticSvgElement::Path { d: "M7 12h7a2 2 0 0 1 2 2v1" },
];
static MESSAGE_CIRCLE_WARNING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "M12 8v4" },
StaticSvgElement::Path { d: "M12 16h.01" },
];
static MESSAGE_CIRCLE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" },
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "m9 9 6 6" },
];
static MESSAGE_CIRCLE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" }];
static MESSAGE_SQUARE_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 7.5 8 10l2 2.5" },
StaticSvgElement::Path { d: "m14 7.5 2 2.5-2 2.5" },
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
];
static MESSAGE_SQUARE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 17H7l-4 4v-7" },
StaticSvgElement::Path { d: "M14 17h1" },
StaticSvgElement::Path { d: "M14 3h1" },
StaticSvgElement::Path { d: "M19 3a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M21 14v1a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M21 9v1" },
StaticSvgElement::Path { d: "M3 9v1" },
StaticSvgElement::Path { d: "M5 3a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M9 3h1" },
];
static MESSAGE_SQUARE_DIFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m5 19-2 2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M9 10h6" },
StaticSvgElement::Path { d: "M12 7v6" },
StaticSvgElement::Path { d: "M9 17h6" },
];
static MESSAGE_SQUARE_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.7 3H5a2 2 0 0 0-2 2v16l4-4h12a2 2 0 0 0 2-2v-2.7" },
StaticSvgElement::Circle { cx: "18", cy: "6", r: "3" },
];
static MESSAGE_SQUARE_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path {
d: "M14.8 7.5a1.84 1.84 0 0 0-2.6 0l-.2.3-.3-.3a1.84 1.84 0 1 0-2.4 2.8L12 13l2.7-2.7c.9-.9.8-2.1.1-2.8",
},
];
static MESSAGE_SQUARE_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 15v-2a2 2 0 1 0-4 0v2" },
StaticSvgElement::Path { d: "M9 17H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5" },
StaticSvgElement::Rect { x: "13", y: "15", width: "8", height: "5", rx: Some("1"), ry: None },
];
static MESSAGE_SQUARE_MORE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "M8 10h.01" },
StaticSvgElement::Path { d: "M12 10h.01" },
StaticSvgElement::Path { d: "M16 10h.01" },
];
static MESSAGE_SQUARE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15V5a2 2 0 0 0-2-2H9" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M3.6 3.6c-.4.3-.6.8-.6 1.4v16l4-4h10" },
];
static MESSAGE_SQUARE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "M12 7v6" },
StaticSvgElement::Path { d: "M9 10h6" },
];
static MESSAGE_SQUARE_QUOTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "M8 12a2 2 0 0 0 2-2V8H8" },
StaticSvgElement::Path { d: "M14 12a2 2 0 0 0 2-2V8h-2" },
];
static MESSAGE_SQUARE_REPLY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "m10 7-3 3 3 3" },
StaticSvgElement::Path { d: "M17 13v-1a2 2 0 0 0-2-2H7" },
];
static MESSAGE_SQUARE_SHARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7" },
StaticSvgElement::Path { d: "M16 3h5v5" },
StaticSvgElement::Path { d: "m16 8 5-5" },
];
static MESSAGE_SQUARE_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "M13 8H7" },
StaticSvgElement::Path { d: "M17 12H7" },
];
static MESSAGE_SQUARE_WARNING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "M12 7v2" },
StaticSvgElement::Path { d: "M12 13h.01" },
];
static MESSAGE_SQUARE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "m14.5 7.5-5 5" },
StaticSvgElement::Path { d: "m9.5 7.5 5 5" },
];
static MESSAGE_SQUARE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" }];
static MESSAGES_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z" },
StaticSvgElement::Path { d: "M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1" },
];
static MIC_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
StaticSvgElement::Path { d: "M18.89 13.23A7.12 7.12 0 0 0 19 12v-2" },
StaticSvgElement::Path { d: "M5 10v2a7 7 0 0 0 12 5" },
StaticSvgElement::Path { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" },
StaticSvgElement::Path { d: "M9 9v3a3 3 0 0 0 5.12 2.12" },
StaticSvgElement::Line { x1: "12", y1: "19", x2: "12", y2: "22" },
];
static MIC_VOCAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12" },
StaticSvgElement::Path {
d: "M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5",
},
StaticSvgElement::Circle { cx: "16", cy: "7", r: "5" },
];
static MIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 19v3" },
StaticSvgElement::Path { d: "M19 10v2a7 7 0 0 1-14 0v-2" },
StaticSvgElement::Rect { x: "9", y: "2", width: "6", height: "13", rx: Some("3"), ry: None },
];
static MICROCHIP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 12h2" },
StaticSvgElement::Path { d: "M18 16h2" },
StaticSvgElement::Path { d: "M18 20h2" },
StaticSvgElement::Path { d: "M18 4h2" },
StaticSvgElement::Path { d: "M18 8h2" },
StaticSvgElement::Path { d: "M4 12h2" },
StaticSvgElement::Path { d: "M4 16h2" },
StaticSvgElement::Path { d: "M4 20h2" },
StaticSvgElement::Path { d: "M4 4h2" },
StaticSvgElement::Path { d: "M4 8h2" },
StaticSvgElement::Path {
d: "M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z",
},
];
static MICROSCOPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 18h8" },
StaticSvgElement::Path { d: "M3 22h18" },
StaticSvgElement::Path { d: "M14 22a7 7 0 1 0 0-14h-1" },
StaticSvgElement::Path { d: "M9 14h2" },
StaticSvgElement::Path { d: "M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z" },
StaticSvgElement::Path { d: "M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3" },
];
static MICROWAVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "15", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "6", y: "8", width: "8", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M18 8v7" },
StaticSvgElement::Path { d: "M6 19v2" },
StaticSvgElement::Path { d: "M18 19v2" },
];
static MILESTONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13v8" },
StaticSvgElement::Path { d: "M12 3v3" },
StaticSvgElement::Path {
d: "M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z",
},
];
static MILK_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2h8" },
StaticSvgElement::Path {
d: "M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3",
},
StaticSvgElement::Path { d: "M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static MILK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2h8" },
StaticSvgElement::Path {
d: "M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2",
},
StaticSvgElement::Path { d: "M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0" },
];
static MINIMIZE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14 10 7-7" },
StaticSvgElement::Path { d: "M20 10h-6V4" },
StaticSvgElement::Path { d: "m3 21 7-7" },
StaticSvgElement::Path { d: "M4 14h6v6" },
];
static MINIMIZE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 3v3a2 2 0 0 1-2 2H3" },
StaticSvgElement::Path { d: "M21 8h-3a2 2 0 0 1-2-2V3" },
StaticSvgElement::Path { d: "M3 16h3a2 2 0 0 1 2 2v3" },
StaticSvgElement::Path { d: "M16 21v-3a2 2 0 0 1 2-2h3" },
];
static MINUS_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M5 12h14" }];
static MONITOR_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m9 10 2 2 4-4" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
];
static MONITOR_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "m14.305 7.53.923-.382" },
StaticSvgElement::Path { d: "m15.228 4.852-.923-.383" },
StaticSvgElement::Path { d: "m16.852 3.228-.383-.924" },
StaticSvgElement::Path { d: "m16.852 8.772-.383.923" },
StaticSvgElement::Path { d: "m19.148 3.228.383-.924" },
StaticSvgElement::Path { d: "m19.53 9.696-.382-.924" },
StaticSvgElement::Path { d: "m20.772 4.852.924-.383" },
StaticSvgElement::Path { d: "m20.772 7.148.924.383" },
StaticSvgElement::Path { d: "M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Circle { cx: "18", cy: "6", r: "3" },
];
static MONITOR_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Circle { cx: "19", cy: "6", r: "3" },
];
static MONITOR_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13V7" },
StaticSvgElement::Path { d: "m15 10-3 3-3-3" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
];
static MONITOR_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2" },
StaticSvgElement::Path { d: "M22 15V5a2 2 0 0 0-2-2H9" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static MONITOR_PAUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 13V7" },
StaticSvgElement::Path { d: "M14 13V7" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
];
static MONITOR_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z",
},
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
];
static MONITOR_SMARTPHONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" },
StaticSvgElement::Path { d: "M10 19v-3.96 3.15" },
StaticSvgElement::Path { d: "M7 19h5" },
StaticSvgElement::Rect { x: "16", y: "12", width: "6", height: "10", rx: Some("2"), ry: None },
];
static MONITOR_SPEAKER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5.5 20H8" },
StaticSvgElement::Path { d: "M17 9h.01" },
StaticSvgElement::Rect { x: "12", y: "4", width: "10", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4" },
StaticSvgElement::Circle { cx: "17", cy: "15", r: "1" },
];
static MONITOR_STOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "9", y: "7", width: "6", height: "6", rx: Some("1"), ry: None },
];
static MONITOR_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m9 10 3-3 3 3" },
StaticSvgElement::Path { d: "M12 13V7" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
];
static MONITOR_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.5 12.5-5-5" },
StaticSvgElement::Path { d: "m9.5 12.5 5-5" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "M8 21h8" },
];
static MONITOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Line { x1: "8", y1: "21", x2: "16", y2: "21" },
StaticSvgElement::Line { x1: "12", y1: "17", x2: "12", y2: "21" },
];
static MOON_STAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9" },
StaticSvgElement::Path { d: "M20 3v4" },
StaticSvgElement::Path { d: "M22 5h-4" },
];
static MOON_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" }];
static MOUNTAIN_SNOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m8 3 4 8 5-5 5 15H2L8 3z" },
StaticSvgElement::Path { d: "M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19" },
];
static MOUNTAIN_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "m8 3 4 8 5-5 5 15H2L8 3z" }];
static MOUSE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6v.343" },
StaticSvgElement::Path { d: "M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218" },
StaticSvgElement::Path { d: "M19 13.343V9A7 7 0 0 0 8.56 2.902" },
StaticSvgElement::Path { d: "M22 22 2 2" },
];
static MOUSE_POINTER2_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",
}];
static MOUSE_POINTER_BAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z",
},
StaticSvgElement::Circle { cx: "16", cy: "16", r: "6" },
StaticSvgElement::Path { d: "m11.8 11.8 8.4 8.4" },
];
static MOUSE_POINTER_CLICK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 4.1 12 6" },
StaticSvgElement::Path { d: "m5.1 8-2.9-.8" },
StaticSvgElement::Path { d: "m6 12-1.9 2" },
StaticSvgElement::Path { d: "M7.2 2.2 8 5.1" },
StaticSvgElement::Path {
d: "M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z",
},
];
static MOUSE_POINTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12.586 12.586 19 19" },
StaticSvgElement::Path {
d: "M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z",
},
];
static MOUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "2", width: "14", height: "20", rx: Some("7"), ry: None },
StaticSvgElement::Path { d: "M12 6v4" },
];
static MOVE3_D_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 3v16h16" },
StaticSvgElement::Path { d: "m5 19 6-6" },
StaticSvgElement::Path { d: "m2 6 3-3 3 3" },
StaticSvgElement::Path { d: "m18 16 3 3-3 3" },
];
static MOVE_DIAGONAL2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 13v6h-6" },
StaticSvgElement::Path { d: "M5 11V5h6" },
StaticSvgElement::Path { d: "m5 5 14 14" },
];
static MOVE_DIAGONAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 19H5v-6" },
StaticSvgElement::Path { d: "M13 5h6v6" },
StaticSvgElement::Path { d: "M19 5 5 19" },
];
static MOVE_DOWN_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M11 19H5V13" }, StaticSvgElement::Path { d: "M19 5L5 19" }];
static MOVE_DOWN_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M19 13V19H13" }, StaticSvgElement::Path { d: "M5 5L19 19" }];
static MOVE_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M8 18L12 22L16 18" }, StaticSvgElement::Path { d: "M12 2V22" }];
static MOVE_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m18 8 4 4-4 4" },
StaticSvgElement::Path { d: "M2 12h20" },
StaticSvgElement::Path { d: "m6 8-4 4 4 4" },
];
static MOVE_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M6 8L2 12L6 16" }, StaticSvgElement::Path { d: "M2 12H22" }];
static MOVE_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M18 8L22 12L18 16" }, StaticSvgElement::Path { d: "M2 12H22" }];
static MOVE_UP_LEFT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M5 11V5H11" }, StaticSvgElement::Path { d: "M5 5L19 19" }];
static MOVE_UP_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M13 5H19V11" }, StaticSvgElement::Path { d: "M19 5L5 19" }];
static MOVE_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M8 6L12 2L16 6" }, StaticSvgElement::Path { d: "M12 2V22" }];
static MOVE_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v20" },
StaticSvgElement::Path { d: "m8 18 4 4 4-4" },
StaticSvgElement::Path { d: "m8 6 4-4 4 4" },
];
static MOVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v20" },
StaticSvgElement::Path { d: "m15 19-3 3-3-3" },
StaticSvgElement::Path { d: "m19 9 3 3-3 3" },
StaticSvgElement::Path { d: "M2 12h20" },
StaticSvgElement::Path { d: "m5 9-3 3 3 3" },
StaticSvgElement::Path { d: "m9 5 3-3 3 3" },
];
static MUSIC2_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "8", cy: "18", r: "4" }, StaticSvgElement::Path { d: "M12 18V2l7 4" }];
static MUSIC3_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "18", r: "4" }, StaticSvgElement::Path { d: "M16 18V2" }];
static MUSIC4_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 18V5l12-2v13" },
StaticSvgElement::Path { d: "m9 9 12-2" },
StaticSvgElement::Circle { cx: "6", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "18", cy: "16", r: "3" },
];
static MUSIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 18V5l12-2v13" },
StaticSvgElement::Circle { cx: "6", cy: "18", r: "3" },
StaticSvgElement::Circle { cx: "18", cy: "16", r: "3" },
];
static NAVIGATION2_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9.31 9.31 5 21l7-4 7 4-1.17-3.17" },
StaticSvgElement::Path { d: "M14.53 8.88 12 2l-1.17 3.17" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static NAVIGATION2_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Polygon { points: "12 2 19 21 12 17 5 21 12 2" }];
static NAVIGATION_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8.43 8.43 3 11l8 2 2 8 2.57-5.43" },
StaticSvgElement::Path { d: "M17.39 11.73 22 2l-9.73 4.61" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static NAVIGATION_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Polygon { points: "3 11 22 2 13 21 11 13 3 11" }];
static NETWORK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "16", y: "16", width: "6", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "2", y: "16", width: "6", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "9", y: "2", width: "6", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3" },
StaticSvgElement::Path { d: "M12 12V8" },
];
static NEWSPAPER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 18h-5" },
StaticSvgElement::Path { d: "M18 14h-8" },
StaticSvgElement::Path {
d: "M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2",
},
StaticSvgElement::Rect { x: "10", y: "6", width: "8", height: "4", rx: Some("1"), ry: None },
];
static NFC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 8.32a7.43 7.43 0 0 1 0 7.36" },
StaticSvgElement::Path { d: "M9.46 6.21a11.76 11.76 0 0 1 0 11.58" },
StaticSvgElement::Path { d: "M12.91 4.1a15.91 15.91 0 0 1 .01 15.8" },
StaticSvgElement::Path { d: "M16.37 2a20.16 20.16 0 0 1 0 20" },
];
static NON_BINARY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v10" },
StaticSvgElement::Path { d: "m8.5 4 7 4" },
StaticSvgElement::Path { d: "m8.5 8 7-4" },
StaticSvgElement::Circle { cx: "12", cy: "17", r: "5" },
];
static NOTEBOOK_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4" },
StaticSvgElement::Path { d: "M2 6h4" },
StaticSvgElement::Path { d: "M2 10h4" },
StaticSvgElement::Path { d: "M2 14h4" },
StaticSvgElement::Path { d: "M2 18h4" },
StaticSvgElement::Path {
d: "M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
];
static NOTEBOOK_TABS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 6h4" },
StaticSvgElement::Path { d: "M2 10h4" },
StaticSvgElement::Path { d: "M2 14h4" },
StaticSvgElement::Path { d: "M2 18h4" },
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M15 2v20" },
StaticSvgElement::Path { d: "M15 7h5" },
StaticSvgElement::Path { d: "M15 12h5" },
StaticSvgElement::Path { d: "M15 17h5" },
];
static NOTEBOOK_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 6h4" },
StaticSvgElement::Path { d: "M2 10h4" },
StaticSvgElement::Path { d: "M2 14h4" },
StaticSvgElement::Path { d: "M2 18h4" },
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9.5 8h5" },
StaticSvgElement::Path { d: "M9.5 12H16" },
StaticSvgElement::Path { d: "M9.5 16H14" },
];
static NOTEBOOK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 6h4" },
StaticSvgElement::Path { d: "M2 10h4" },
StaticSvgElement::Path { d: "M2 14h4" },
StaticSvgElement::Path { d: "M2 18h4" },
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M16 2v20" },
];
static NOTEPAD_TEXT_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M12 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Path { d: "M16 4h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M20 12v2" },
StaticSvgElement::Path { d: "M20 18v2a2 2 0 0 1-2 2h-1" },
StaticSvgElement::Path { d: "M13 22h-2" },
StaticSvgElement::Path { d: "M7 22H6a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Path { d: "M4 14v-2" },
StaticSvgElement::Path { d: "M4 8V6a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M8 10h6" },
StaticSvgElement::Path { d: "M8 14h8" },
StaticSvgElement::Path { d: "M8 18h5" },
];
static NOTEPAD_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 2v4" },
StaticSvgElement::Path { d: "M12 2v4" },
StaticSvgElement::Path { d: "M16 2v4" },
StaticSvgElement::Rect { x: "4", y: "4", width: "16", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 10h6" },
StaticSvgElement::Path { d: "M8 14h8" },
StaticSvgElement::Path { d: "M8 18h5" },
];
static NUT_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 4V2" },
StaticSvgElement::Path {
d: "M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939",
},
StaticSvgElement::Path { d: "M19 10v3.343" },
StaticSvgElement::Path {
d: "M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192",
},
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static NUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 4V2" },
StaticSvgElement::Path {
d: "M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4",
},
StaticSvgElement::Path {
d: "M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z",
},
];
static OCTAGON_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 16h.01" },
StaticSvgElement::Path { d: "M12 8v4" },
StaticSvgElement::Path {
d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",
},
];
static OCTAGON_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
},
StaticSvgElement::Path { d: "M8 12h8" },
];
static OCTAGON_PAUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 15V9" },
StaticSvgElement::Path { d: "M14 15V9" },
StaticSvgElement::Path {
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
},
];
static OCTAGON_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path {
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
},
StaticSvgElement::Path { d: "m9 9 6 6" },
];
static OCTAGON_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",
}];
static OMEGA_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21",
}];
// static OPTION_ELEMENTS: &[StaticSvgElement] =
// &[StaticSvgElement::Path { d: "M3 3h6l6 18h6" }, StaticSvgElement::Path { d: "M14 3h7" }];
static ORBIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20.341 6.484A10 10 0 0 1 10.266 21.85" },
StaticSvgElement::Path { d: "M3.659 17.516A10 10 0 0 1 13.74 2.152" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Circle { cx: "19", cy: "5", r: "2" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "2" },
];
static ORIGAMI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025" },
StaticSvgElement::Path { d: "m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009" },
StaticSvgElement::Path {
d: "m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027",
},
];
static PACKAGE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v6" },
StaticSvgElement::Path {
d: "M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z",
},
StaticSvgElement::Path { d: "M3.054 9.013h17.893" },
];
static PACKAGE_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 16 2 2 4-4" },
StaticSvgElement::Path {
d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",
},
StaticSvgElement::Path { d: "m7.5 4.27 9 5.15" },
StaticSvgElement::Polyline { points: "3.29 7 12 12 20.71 7" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "12" },
];
static PACKAGE_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 16h6" },
StaticSvgElement::Path {
d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",
},
StaticSvgElement::Path { d: "m7.5 4.27 9 5.15" },
StaticSvgElement::Polyline { points: "3.29 7 12 12 20.71 7" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "12" },
];
static PACKAGE_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22v-9" },
StaticSvgElement::Path {
d: "M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z",
},
StaticSvgElement::Path {
d: "M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13",
},
StaticSvgElement::Path {
d: "M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z",
},
];
static PACKAGE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 16h6" },
StaticSvgElement::Path { d: "M19 13v6" },
StaticSvgElement::Path {
d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",
},
StaticSvgElement::Path { d: "m7.5 4.27 9 5.15" },
StaticSvgElement::Polyline { points: "3.29 7 12 12 20.71 7" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "12" },
];
static PACKAGE_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",
},
StaticSvgElement::Path { d: "m7.5 4.27 9 5.15" },
StaticSvgElement::Polyline { points: "3.29 7 12 12 20.71 7" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "12" },
StaticSvgElement::Circle { cx: "18.5", cy: "15.5", r: "2.5" },
StaticSvgElement::Path { d: "M20.27 17.27 22 19" },
];
static PACKAGE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",
},
StaticSvgElement::Path { d: "m7.5 4.27 9 5.15" },
StaticSvgElement::Polyline { points: "3.29 7 12 12 20.71 7" },
StaticSvgElement::Line { x1: "12", y1: "22", x2: "12", y2: "12" },
StaticSvgElement::Path { d: "m17 13 5 5m-5 0 5-5" },
];
static PACKAGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",
},
StaticSvgElement::Path { d: "M12 22V12" },
StaticSvgElement::Polyline { points: "3.29 7 12 12 20.71 7" },
StaticSvgElement::Path { d: "m7.5 4.27 9 5.15" },
];
static PAINT_BUCKET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z" },
StaticSvgElement::Path { d: "m5 2 5 5" },
StaticSvgElement::Path { d: "M2 13h15" },
StaticSvgElement::Path { d: "M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z" },
];
static PAINT_ROLLER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "2", width: "16", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2" },
StaticSvgElement::Rect { x: "8", y: "16", width: "4", height: "6", rx: Some("1"), ry: None },
];
static PAINTBRUSH_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v2" },
StaticSvgElement::Path { d: "M14 2v4" },
StaticSvgElement::Path { d: "M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z" },
StaticSvgElement::Path {
d: "M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1",
},
];
static PAINTBRUSH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.622 17.897-10.68-2.913" },
StaticSvgElement::Path {
d: "M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z",
},
StaticSvgElement::Path {
d: "M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15",
},
];
static PALETTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z",
},
StaticSvgElement::Circle { cx: "13.5", cy: "6.5", r: ".5" },
StaticSvgElement::Circle { cx: "17.5", cy: "10.5", r: ".5" },
StaticSvgElement::Circle { cx: "6.5", cy: "12.5", r: ".5" },
StaticSvgElement::Circle { cx: "8.5", cy: "7.5", r: ".5" },
];
static PANDA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.25 17.25h1.5L12 18z" },
StaticSvgElement::Path { d: "m15 12 2 2" },
StaticSvgElement::Path { d: "M18 6.5a.5.5 0 0 0-.5-.5" },
StaticSvgElement::Path {
d: "M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83",
},
StaticSvgElement::Path { d: "M6 6.5a.495.495 0 0 1 .5-.5" },
StaticSvgElement::Path { d: "m9 12-2 2" },
];
static PANEL_BOTTOM_CLOSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 15h18" },
StaticSvgElement::Path { d: "m15 8-3 3-3-3" },
];
static PANEL_BOTTOM_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M14 15h1" },
StaticSvgElement::Path { d: "M19 15h2" },
StaticSvgElement::Path { d: "M3 15h2" },
StaticSvgElement::Path { d: "M9 15h1" },
];
static PANEL_BOTTOM_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 15h18" },
StaticSvgElement::Path { d: "m9 10 3-3 3 3" },
];
static PANEL_BOTTOM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 15h18" },
];
static PANEL_LEFT_CLOSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Path { d: "m16 15-3-3 3-3" },
];
static PANEL_LEFT_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 14v1" },
StaticSvgElement::Path { d: "M9 19v2" },
StaticSvgElement::Path { d: "M9 3v2" },
StaticSvgElement::Path { d: "M9 9v1" },
];
static PANEL_LEFT_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Path { d: "m14 9 3 3-3 3" },
];
static PANEL_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 3v18" },
];
static PANEL_RIGHT_CLOSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M15 3v18" },
StaticSvgElement::Path { d: "m8 9 3 3-3 3" },
];
static PANEL_RIGHT_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M15 14v1" },
StaticSvgElement::Path { d: "M15 19v2" },
StaticSvgElement::Path { d: "M15 3v2" },
StaticSvgElement::Path { d: "M15 9v1" },
];
static PANEL_RIGHT_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M15 3v18" },
StaticSvgElement::Path { d: "m10 15-3-3 3-3" },
];
static PANEL_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M15 3v18" },
];
static PANEL_TOP_CLOSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Path { d: "m9 16 3-3 3 3" },
];
static PANEL_TOP_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M14 9h1" },
StaticSvgElement::Path { d: "M19 9h2" },
StaticSvgElement::Path { d: "M3 9h2" },
StaticSvgElement::Path { d: "M9 9h1" },
];
static PANEL_TOP_OPEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Path { d: "m15 14-3 3-3-3" },
];
static PANEL_TOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9h18" },
];
static PANELS_LEFT_BOTTOM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 3v18" },
StaticSvgElement::Path { d: "M9 15h12" },
];
static PANELS_RIGHT_BOTTOM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 15h12" },
StaticSvgElement::Path { d: "M15 3v18" },
];
static PANELS_TOP_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Path { d: "M9 21V9" },
];
static PAPERCLIP_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",
}];
static PARENTHESES_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M8 21s-4-3-4-9 4-9 4-9" }, StaticSvgElement::Path { d: "M16 3s4 3 4 9-4 9-4 9" }];
static PARKING_METER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 15h2" },
StaticSvgElement::Path { d: "M12 12v3" },
StaticSvgElement::Path { d: "M12 19v3" },
StaticSvgElement::Path {
d: "M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z",
},
StaticSvgElement::Path { d: "M9 9a3 3 0 1 1 6 0" },
];
static PARTY_POPPER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5.8 11.3 2 22l10.7-3.79" },
StaticSvgElement::Path { d: "M4 3h.01" },
StaticSvgElement::Path { d: "M22 8h.01" },
StaticSvgElement::Path { d: "M15 2h.01" },
StaticSvgElement::Path { d: "M22 20h.01" },
StaticSvgElement::Path {
d: "m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10",
},
StaticSvgElement::Path { d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17" },
StaticSvgElement::Path { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7" },
StaticSvgElement::Path {
d: "M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z",
},
];
static PAUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "14", y: "3", width: "5", height: "18", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "5", y: "3", width: "5", height: "18", rx: Some("1"), ry: None },
];
static PAW_PRINT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11", cy: "4", r: "2" },
StaticSvgElement::Circle { cx: "18", cy: "8", r: "2" },
StaticSvgElement::Circle { cx: "20", cy: "16", r: "2" },
StaticSvgElement::Path {
d: "M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z",
},
];
static PC_CASE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "2", width: "14", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M15 14h.01" },
StaticSvgElement::Path { d: "M9 6h6" },
StaticSvgElement::Path { d: "M9 10h6" },
];
static PEN_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 21h8" },
StaticSvgElement::Path {
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
},
];
static PEN_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",
},
StaticSvgElement::Path { d: "m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static PEN_TOOL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z",
},
StaticSvgElement::Path {
d: "m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18",
},
StaticSvgElement::Path { d: "m2.3 2.3 7.286 7.286" },
StaticSvgElement::Circle { cx: "11", cy: "11", r: "2" },
];
static PEN_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
}];
static PENCIL_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 21h8" },
StaticSvgElement::Path { d: "m15 5 4 4" },
StaticSvgElement::Path {
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
},
];
static PENCIL_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",
},
StaticSvgElement::Path { d: "m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353" },
StaticSvgElement::Path { d: "m15 5 4 4" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static PENCIL_RULER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13" },
StaticSvgElement::Path { d: "m8 6 2-2" },
StaticSvgElement::Path { d: "m18 16 2-2" },
StaticSvgElement::Path { d: "m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17" },
StaticSvgElement::Path {
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
},
StaticSvgElement::Path { d: "m15 5 4 4" },
];
static PENCIL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
},
StaticSvgElement::Path { d: "m15 5 4 4" },
];
static PENTAGON_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z",
}];
static PERCENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "19", y1: "5", x2: "5", y2: "19" },
StaticSvgElement::Circle { cx: "6.5", cy: "6.5", r: "2.5" },
StaticSvgElement::Circle { cx: "17.5", cy: "17.5", r: "2.5" },
];
static PERSON_STANDING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "5", r: "1" },
StaticSvgElement::Path { d: "m9 20 3-6 3 6" },
StaticSvgElement::Path { d: "m6 8 6 2 6-2" },
StaticSvgElement::Path { d: "M12 10v4" },
];
static PHILIPPINE_PESO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 11H4" },
StaticSvgElement::Path { d: "M20 7H4" },
StaticSvgElement::Path { d: "M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7" },
];
static PHONE_CALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 2a9 9 0 0 1 9 9" },
StaticSvgElement::Path { d: "M13 6a5 5 0 0 1 5 5" },
StaticSvgElement::Path {
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
},
];
static PHONE_FORWARDED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 6h8" },
StaticSvgElement::Path { d: "m18 2 4 4-4 4" },
StaticSvgElement::Path {
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
},
];
static PHONE_INCOMING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 2v6h6" },
StaticSvgElement::Path { d: "m22 2-6 6" },
StaticSvgElement::Path {
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
},
];
static PHONE_MISSED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 2 6 6" },
StaticSvgElement::Path { d: "m22 2-6 6" },
StaticSvgElement::Path {
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
},
];
static PHONE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272",
},
StaticSvgElement::Path { d: "M22 2 2 22" },
StaticSvgElement::Path {
d: "M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473",
},
];
static PHONE_OUTGOING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 8 6-6" },
StaticSvgElement::Path { d: "M22 8V2h-6" },
StaticSvgElement::Path {
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
},
];
static PHONE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
}];
static PI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "9", y1: "4", x2: "9", y2: "20" },
StaticSvgElement::Path { d: "M4 7c0-1.7 1.3-3 3-3h13" },
StaticSvgElement::Path { d: "M18 20c-1.7 0-3-1.3-3-3V4" },
];
static PIANO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8",
},
StaticSvgElement::Path { d: "M2 14h20" },
StaticSvgElement::Path { d: "M6 14v4" },
StaticSvgElement::Path { d: "M10 14v4" },
StaticSvgElement::Path { d: "M14 14v4" },
StaticSvgElement::Path { d: "M18 14v4" },
];
static PICKAXE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999" },
StaticSvgElement::Path {
d: "M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024",
},
StaticSvgElement::Path {
d: "M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069",
},
StaticSvgElement::Path {
d: "M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z",
},
];
static PICTURE_IN_PICTURE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4" },
StaticSvgElement::Rect { x: "12", y: "13", width: "10", height: "7", rx: Some("2"), ry: None },
];
static PICTURE_IN_PICTURE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 10h6V4" },
StaticSvgElement::Path { d: "m2 4 6 6" },
StaticSvgElement::Path { d: "M21 10V7a2 2 0 0 0-2-2h-7" },
StaticSvgElement::Path { d: "M3 14v2a2 2 0 0 0 2 2h3" },
StaticSvgElement::Rect { x: "12", y: "14", width: "10", height: "7", rx: Some("1"), ry: None },
];
static PIGGY_BANK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z",
},
StaticSvgElement::Path { d: "M16 10h.01" },
StaticSvgElement::Path { d: "M2 8v1a2 2 0 0 0 2 2h1" },
];
static PILCROW_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 3v11" },
StaticSvgElement::Path { d: "M14 9h-3a3 3 0 0 1 0-6h9" },
StaticSvgElement::Path { d: "M18 3v11" },
StaticSvgElement::Path { d: "M22 18H2l4-4" },
StaticSvgElement::Path { d: "m6 22-4-4" },
];
static PILCROW_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 3v11" },
StaticSvgElement::Path { d: "M10 9H7a1 1 0 0 1 0-6h8" },
StaticSvgElement::Path { d: "M14 3v11" },
StaticSvgElement::Path { d: "m18 14 4 4H2" },
StaticSvgElement::Path { d: "m22 18-4 4" },
];
static PILCROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 4v16" },
StaticSvgElement::Path { d: "M17 4v16" },
StaticSvgElement::Path { d: "M19 4H9.5a4.5 4.5 0 0 0 0 9H13" },
];
static PILL_BOTTLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4" },
StaticSvgElement::Path { d: "M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7" },
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "5", rx: Some("1"), ry: None },
];
static PILL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z" },
StaticSvgElement::Path { d: "m8.5 8.5 7 7" },
];
static PIN_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17v5" },
StaticSvgElement::Path { d: "M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11" },
];
static PIN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 17v5" },
StaticSvgElement::Path {
d: "M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",
},
];
static PIPETTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12",
},
StaticSvgElement::Path { d: "m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z" },
StaticSvgElement::Path { d: "m2 22 .414-.414" },
];
static PIZZA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12 14-1 1" },
StaticSvgElement::Path { d: "m13.75 18.25-1.25 1.42" },
StaticSvgElement::Path { d: "M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12" },
StaticSvgElement::Path { d: "M18.8 9.3a1 1 0 0 0 2.1 7.7" },
StaticSvgElement::Path {
d: "M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z",
},
];
static PLANE_LANDING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 22h20" },
StaticSvgElement::Path {
d: "M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z",
},
];
static PLANE_TAKEOFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 22h20" },
StaticSvgElement::Path {
d: "M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z",
},
];
static PLANE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z",
}];
static PLAY_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",
}];
static PLUG2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 2v6" },
StaticSvgElement::Path { d: "M15 2v6" },
StaticSvgElement::Path { d: "M12 17v5" },
StaticSvgElement::Path { d: "M5 8h14" },
StaticSvgElement::Path { d: "M6 11V8h12v3a6 6 0 1 1-12 0Z" },
];
static PLUG_ZAP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z" },
StaticSvgElement::Path { d: "m2 22 3-3" },
StaticSvgElement::Path { d: "M7.5 13.5 10 11" },
StaticSvgElement::Path { d: "M10.5 16.5 13 14" },
StaticSvgElement::Path { d: "m18 3-4 4h6l-4 4" },
];
static PLUG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22v-5" },
StaticSvgElement::Path { d: "M9 8V2" },
StaticSvgElement::Path { d: "M15 8V2" },
StaticSvgElement::Path { d: "M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z" },
];
static PLUS_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M5 12h14" }, StaticSvgElement::Path { d: "M12 5v14" }];
static POCKET_KNIFE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2" },
StaticSvgElement::Path { d: "M18 6h.01" },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z" },
StaticSvgElement::Path { d: "M18 11.66V22a4 4 0 0 0 4-4V6" },
];
static POCKET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z" },
StaticSvgElement::Path { d: "m8 10 4 4 4-4" },
];
static PODCAST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z" },
StaticSvgElement::Path { d: "M16.85 18.58a9 9 0 1 0-9.7 0" },
StaticSvgElement::Path { d: "M8 14a5 5 0 1 1 8 0" },
StaticSvgElement::Circle { cx: "12", cy: "11", r: "1" },
];
static POINTER_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 4.5V4a2 2 0 0 0-2.41-1.957" },
StaticSvgElement::Path { d: "M13.9 8.4a2 2 0 0 0-1.26-1.295" },
StaticSvgElement::Path { d: "M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158" },
StaticSvgElement::Path {
d: "m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343",
},
StaticSvgElement::Path { d: "M6 6v8" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static POINTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 14a8 8 0 0 1-8 8" },
StaticSvgElement::Path { d: "M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1" },
StaticSvgElement::Path { d: "M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10" },
StaticSvgElement::Path {
d: "M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",
},
];
static POPCORN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4" },
StaticSvgElement::Path { d: "M10 22 9 8" },
StaticSvgElement::Path { d: "m14 22 1-14" },
StaticSvgElement::Path {
d: "M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z",
},
];
static POPSICLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z",
},
StaticSvgElement::Path { d: "m22 22-5.5-5.5" },
];
static POUND_STERLING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 7c0-5.333-8-5.333-8 0" },
StaticSvgElement::Path { d: "M10 7v14" },
StaticSvgElement::Path { d: "M6 21h12" },
StaticSvgElement::Path { d: "M6 13h10" },
];
static POWER_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18.36 6.64A9 9 0 0 1 20.77 15" },
StaticSvgElement::Path { d: "M6.16 6.16a9 9 0 1 0 12.68 12.68" },
StaticSvgElement::Path { d: "M12 2v4" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static POWER_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 2v10" }, StaticSvgElement::Path { d: "M18.4 6.6a9 9 0 1 1-12.77.04" }];
static PRESENTATION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 3h20" },
StaticSvgElement::Path { d: "M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3" },
StaticSvgElement::Path { d: "m7 21 5-5 5 5" },
];
static PRINTER_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5" },
StaticSvgElement::Path { d: "m16 19 2 2 4-4" },
StaticSvgElement::Path { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6" },
];
static PRINTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6" },
StaticSvgElement::Rect { x: "6", y: "14", width: "12", height: "8", rx: Some("1"), ry: None },
];
static PROJECTOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 7 3 5" },
StaticSvgElement::Path { d: "M9 6V3" },
StaticSvgElement::Path { d: "m13 7 2-2" },
StaticSvgElement::Circle { cx: "9", cy: "13", r: "3" },
StaticSvgElement::Path { d: "M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17" },
StaticSvgElement::Path { d: "M16 16h2" },
];
static PROPORTIONS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 9v11" },
StaticSvgElement::Path { d: "M2 9h13a2 2 0 0 1 2 2v9" },
];
static PUZZLE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",
}];
static PYRAMID_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z",
},
StaticSvgElement::Path { d: "M12 2v20" },
];
static QR_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "5", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "16", y: "3", width: "5", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "3", y: "16", width: "5", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M21 16h-3a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "M21 21v.01" },
StaticSvgElement::Path { d: "M12 7v3a2 2 0 0 1-2 2H7" },
StaticSvgElement::Path { d: "M3 12h.01" },
StaticSvgElement::Path { d: "M12 3h.01" },
StaticSvgElement::Path { d: "M12 16v.01" },
StaticSvgElement::Path { d: "M16 12h1" },
StaticSvgElement::Path { d: "M21 12v.01" },
StaticSvgElement::Path { d: "M12 21v-1" },
];
static QUOTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",
},
StaticSvgElement::Path {
d: "M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",
},
];
static RABBIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 16a3 3 0 0 1 2.24 5" },
StaticSvgElement::Path { d: "M18 12h.01" },
StaticSvgElement::Path {
d: "M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3",
},
StaticSvgElement::Path { d: "M20 8.54V4a2 2 0 1 0-4 0v3" },
StaticSvgElement::Path { d: "M7.612 12.524a3 3 0 1 0-1.6 4.3" },
];
static RADAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19.07 4.93A10 10 0 0 0 6.99 3.34" },
StaticSvgElement::Path { d: "M4 6h.01" },
StaticSvgElement::Path { d: "M2.29 9.62A10 10 0 1 0 21.31 8.35" },
StaticSvgElement::Path { d: "M16.24 7.76A6 6 0 1 0 8.23 16.67" },
StaticSvgElement::Path { d: "M12 18h.01" },
StaticSvgElement::Path { d: "M17.99 11.66A6 6 0 0 1 15.77 16.67" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
StaticSvgElement::Path { d: "m13.41 10.59 5.66-5.66" },
];
static RADIATION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path {
d: "M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z",
},
StaticSvgElement::Path {
d: "M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z",
},
StaticSvgElement::Path {
d: "M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z",
},
];
static RADICAL_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21",
}];
static RADIO_RECEIVER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 16v2" },
StaticSvgElement::Path { d: "M19 16v2" },
StaticSvgElement::Rect { x: "2", y: "8", width: "20", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M18 12h.01" },
];
static RADIO_TOWER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4.9 16.1C1 12.2 1 5.8 4.9 1.9" },
StaticSvgElement::Path { d: "M7.8 4.7a6.14 6.14 0 0 0-.8 7.5" },
StaticSvgElement::Circle { cx: "12", cy: "9", r: "2" },
StaticSvgElement::Path { d: "M16.2 4.8c2 2 2.26 5.11.8 7.47" },
StaticSvgElement::Path { d: "M19.1 1.9a9.96 9.96 0 0 1 0 14.1" },
StaticSvgElement::Path { d: "M9.5 18h5" },
StaticSvgElement::Path { d: "m8 22 4-11 4 11" },
];
static RADIO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16.247 7.761a6 6 0 0 1 0 8.478" },
StaticSvgElement::Path { d: "M19.075 4.933a10 10 0 0 1 0 14.134" },
StaticSvgElement::Path { d: "M4.925 19.067a10 10 0 0 1 0-14.134" },
StaticSvgElement::Path { d: "M7.753 16.239a6 6 0 0 1 0-8.478" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static RADIUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20.34 17.52a10 10 0 1 0-2.82 2.82" },
StaticSvgElement::Circle { cx: "19", cy: "19", r: "2" },
StaticSvgElement::Path { d: "m13.41 13.41 4.18 4.18" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static RAIL_SYMBOL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 15h14" },
StaticSvgElement::Path { d: "M5 9h14" },
StaticSvgElement::Path { d: "m14 20-5-5 6-6-5-5" },
];
static RAINBOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 17a10 10 0 0 0-20 0" },
StaticSvgElement::Path { d: "M6 17a6 6 0 0 1 12 0" },
StaticSvgElement::Path { d: "M10 17a2 2 0 0 1 4 0" },
];
static RAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 22H4a2 2 0 0 1 0-4h12" },
StaticSvgElement::Path { d: "M13.236 18a3 3 0 0 0-2.2-5" },
StaticSvgElement::Path { d: "M16 9h.01" },
StaticSvgElement::Path {
d: "M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3",
},
StaticSvgElement::Path { d: "M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18" },
];
static RATIO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "6", y: "2", width: "12", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "12", rx: Some("2"), ry: None },
];
static RECEIPT_CENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M12 6.5v11" },
StaticSvgElement::Path { d: "M15 9.4a4 4 0 1 0 0 5.2" },
];
static RECEIPT_EURO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M8 12h5" },
StaticSvgElement::Path { d: "M16 9.5a4 4 0 1 0 0 5.2" },
];
static RECEIPT_INDIAN_RUPEE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M8 7h8" },
StaticSvgElement::Path { d: "M12 17.5 8 15h1a4 4 0 0 0 0-8" },
StaticSvgElement::Path { d: "M8 11h8" },
];
static RECEIPT_JAPANESE_YEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "m12 10 3-3" },
StaticSvgElement::Path { d: "m9 7 3 3v7.5" },
StaticSvgElement::Path { d: "M9 11h6" },
StaticSvgElement::Path { d: "M9 15h6" },
];
static RECEIPT_POUND_STERLING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M8 13h5" },
StaticSvgElement::Path { d: "M10 17V9.5a2.5 2.5 0 0 1 5 0" },
StaticSvgElement::Path { d: "M8 17h7" },
];
static RECEIPT_RUSSIAN_RUBLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M8 15h5" },
StaticSvgElement::Path { d: "M8 11h5a2 2 0 1 0 0-4h-3v10" },
];
static RECEIPT_SWISS_FRANC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M10 17V7h5" },
StaticSvgElement::Path { d: "M10 11h4" },
StaticSvgElement::Path { d: "M8 15h5" },
];
static RECEIPT_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M14 8H8" },
StaticSvgElement::Path { d: "M16 12H8" },
StaticSvgElement::Path { d: "M13 16H8" },
];
static RECEIPT_TURKISH_LIRA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5" },
StaticSvgElement::Path { d: "m14 8-6 3" },
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z" },
];
static RECEIPT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z" },
StaticSvgElement::Path { d: "M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8" },
StaticSvgElement::Path { d: "M12 17.5v-11" },
];
static RECTANGLE_CIRCLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z" },
StaticSvgElement::Circle { cx: "14", cy: "12", r: "8" },
];
static RECTANGLE_ELLIPSIS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "12", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M17 12h.01" },
StaticSvgElement::Path { d: "M7 12h.01" },
];
static RECTANGLE_GOGGLES_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",
}];
static RECTANGLE_HORIZONTAL_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Rect { x: "2", y: "6", width: "20", height: "12", rx: Some("2"), ry: None }];
static RECTANGLE_VERTICAL_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Rect { x: "6", y: "2", width: "12", height: "20", rx: Some("2"), ry: None }];
static RECYCLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5" },
StaticSvgElement::Path { d: "M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12" },
StaticSvgElement::Path { d: "m14 16-3 3 3 3" },
StaticSvgElement::Path { d: "M8.293 13.596 7.196 9.5 3.1 10.598" },
StaticSvgElement::Path {
d: "m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843",
},
StaticSvgElement::Path { d: "m13.378 9.633 4.096 1.098 1.097-4.096" },
];
static REDO2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 14 5-5-5-5" },
StaticSvgElement::Path { d: "M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13" },
];
static REDO_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "17", r: "1" },
StaticSvgElement::Path { d: "M21 7v6h-6" },
StaticSvgElement::Path { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" },
];
static REDO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 7v6h-6" },
StaticSvgElement::Path { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" },
];
static REFRESH_CCW_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" },
StaticSvgElement::Path { d: "M3 3v5h5" },
StaticSvgElement::Path { d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" },
StaticSvgElement::Path { d: "M16 16h5v5" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
];
static REFRESH_CCW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" },
StaticSvgElement::Path { d: "M3 3v5h5" },
StaticSvgElement::Path { d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16" },
StaticSvgElement::Path { d: "M16 16h5v5" },
];
static REFRESH_CW_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47" },
StaticSvgElement::Path { d: "M8 16H3v5" },
StaticSvgElement::Path { d: "M3 12C3 9.51 4 7.26 5.64 5.64" },
StaticSvgElement::Path { d: "m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64" },
StaticSvgElement::Path { d: "M21 12c0 1-.16 1.97-.47 2.87" },
StaticSvgElement::Path { d: "M21 3v5h-5" },
StaticSvgElement::Path { d: "M22 22 2 2" },
];
static REFRESH_CW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" },
StaticSvgElement::Path { d: "M21 3v5h-5" },
StaticSvgElement::Path { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" },
StaticSvgElement::Path { d: "M8 16H3v5" },
];
static REFRIGERATOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z" },
StaticSvgElement::Path { d: "M5 10h14" },
StaticSvgElement::Path { d: "M15 7v6" },
];
static REGEX_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 3v10" },
StaticSvgElement::Path { d: "m12.67 5.5 8.66 5" },
StaticSvgElement::Path { d: "m12.67 10.5 8.66-5" },
StaticSvgElement::Path { d: "M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z" },
];
static REMOVE_FORMATTING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 7V4h16v3" },
StaticSvgElement::Path { d: "M5 20h6" },
StaticSvgElement::Path { d: "M13 4 8 20" },
StaticSvgElement::Path { d: "m15 15 5 5" },
StaticSvgElement::Path { d: "m20 15-5 5" },
];
static REPEAT1_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m17 2 4 4-4 4" },
StaticSvgElement::Path { d: "M3 11v-1a4 4 0 0 1 4-4h14" },
StaticSvgElement::Path { d: "m7 22-4-4 4-4" },
StaticSvgElement::Path { d: "M21 13v1a4 4 0 0 1-4 4H3" },
StaticSvgElement::Path { d: "M11 10h1v4" },
];
static REPEAT2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 9 3-3 3 3" },
StaticSvgElement::Path { d: "M13 18H7a2 2 0 0 1-2-2V6" },
StaticSvgElement::Path { d: "m22 15-3 3-3-3" },
StaticSvgElement::Path { d: "M11 6h6a2 2 0 0 1 2 2v10" },
];
static REPEAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m17 2 4 4-4 4" },
StaticSvgElement::Path { d: "M3 11v-1a4 4 0 0 1 4-4h14" },
StaticSvgElement::Path { d: "m7 22-4-4 4-4" },
StaticSvgElement::Path { d: "M21 13v1a4 4 0 0 1-4 4H3" },
];
static REPLACE_ALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M14 4a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "M16 10a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M20 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M20 2a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M22 8a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "m3 7 3 3 3-3" },
StaticSvgElement::Path { d: "M6 10V5a 3 3 0 0 1 3-3h1" },
StaticSvgElement::Rect { x: "2", y: "14", width: "8", height: "8", rx: Some("2"), ry: None },
];
static REPLACE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 4a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "M16 10a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M20 2a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M22 8a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "m3 7 3 3 3-3" },
StaticSvgElement::Path { d: "M6 10V5a3 3 0 0 1 3-3h1" },
StaticSvgElement::Rect { x: "2", y: "14", width: "8", height: "8", rx: Some("2"), ry: None },
];
static REPLY_ALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12 17-5-5 5-5" },
StaticSvgElement::Path { d: "M22 18v-2a4 4 0 0 0-4-4H7" },
StaticSvgElement::Path { d: "m7 17-5-5 5-5" },
];
static REPLY_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M20 18v-2a4 4 0 0 0-4-4H4" }, StaticSvgElement::Path { d: "m9 17-5-5 5-5" }];
static REWIND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z" },
StaticSvgElement::Path { d: "M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z" },
];
static RIBBON_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22" },
StaticSvgElement::Path { d: "m12 18 2.57-3.5" },
StaticSvgElement::Path { d: "M6.243 9.016a7 7 0 0 1 11.507-.009" },
StaticSvgElement::Path { d: "M9.35 14.53 12 11.22" },
StaticSvgElement::Path {
d: "M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z",
},
];
static ROCKET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",
},
StaticSvgElement::Path {
d: "m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",
},
StaticSvgElement::Path { d: "M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0" },
StaticSvgElement::Path { d: "M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" },
];
static ROCKING_CHAIR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Polyline { points: "3.5 2 6.5 12.5 18 12.5" },
StaticSvgElement::Line { x1: "9.5", y1: "12.5", x2: "5.5", y2: "20" },
StaticSvgElement::Line { x1: "15", y1: "12.5", x2: "18.5", y2: "20" },
StaticSvgElement::Path { d: "M2.75 18a13 13 0 0 0 18.5 0" },
];
static ROLLER_COASTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 19V5" },
StaticSvgElement::Path { d: "M10 19V6.8" },
StaticSvgElement::Path { d: "M14 19v-7.8" },
StaticSvgElement::Path { d: "M18 5v4" },
StaticSvgElement::Path { d: "M18 19v-6" },
StaticSvgElement::Path { d: "M22 19V9" },
StaticSvgElement::Path { d: "M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65" },
];
static ROTATE3_D_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2",
},
StaticSvgElement::Path { d: "m15.194 13.707 3.814 1.86-1.86 3.814" },
StaticSvgElement::Path {
d: "M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4",
},
];
static ROTATE_CCW_KEY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.5 9.5 1 1" },
StaticSvgElement::Path { d: "m15.5 8.5-4 4" },
StaticSvgElement::Path { d: "M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8" },
StaticSvgElement::Path { d: "M3 3v5h5" },
StaticSvgElement::Circle { cx: "10", cy: "14", r: "2" },
];
static ROTATE_CCW_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 9V7a2 2 0 0 0-2-2h-6" },
StaticSvgElement::Path { d: "m15 2-3 3 3 3" },
StaticSvgElement::Path { d: "M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2" },
];
static ROTATE_CCW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" },
StaticSvgElement::Path { d: "M3 3v5h5" },
];
static ROTATE_CW_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 5H6a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path { d: "m9 8 3-3-3-3" },
StaticSvgElement::Path { d: "M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2" },
];
static ROTATE_CW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8" },
StaticSvgElement::Path { d: "M21 3v5h-5" },
];
static ROUTE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "19", r: "3" },
StaticSvgElement::Path { d: "M9 19h8.5c.4 0 .9-.1 1.3-.2" },
StaticSvgElement::Path { d: "M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M21 15.3a3.5 3.5 0 0 0-3.3-3.3" },
StaticSvgElement::Path { d: "M15 5h-4.3" },
StaticSvgElement::Circle { cx: "18", cy: "5", r: "3" },
];
static ROUTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "19", r: "3" },
StaticSvgElement::Path { d: "M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15" },
StaticSvgElement::Circle { cx: "18", cy: "5", r: "3" },
];
static ROUTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "14", width: "20", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M6.01 18H6" },
StaticSvgElement::Path { d: "M10.01 18H10" },
StaticSvgElement::Path { d: "M15 10v4" },
StaticSvgElement::Path { d: "M17.84 7.17a4 4 0 0 0-5.66 0" },
StaticSvgElement::Path { d: "M20.66 4.34a8 8 0 0 0-11.31 0" },
];
static ROWS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 12h18" },
];
static ROWS3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M21 9H3" },
StaticSvgElement::Path { d: "M21 15H3" },
];
static ROWS4_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M21 7.5H3" },
StaticSvgElement::Path { d: "M21 12H3" },
StaticSvgElement::Path { d: "M21 16.5H3" },
];
static RSS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 11a9 9 0 0 1 9 9" },
StaticSvgElement::Path { d: "M4 4a16 16 0 0 1 16 16" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "1" },
];
static RULER_DIMENSION_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 15v-3.014" },
StaticSvgElement::Path { d: "M16 15v-3.014" },
StaticSvgElement::Path { d: "M20 6H4" },
StaticSvgElement::Path { d: "M20 8V4" },
StaticSvgElement::Path { d: "M4 8V4" },
StaticSvgElement::Path { d: "M8 15v-3.014" },
StaticSvgElement::Rect { x: "3", y: "12", width: "18", height: "7", rx: Some("1"), ry: None },
];
static RULER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z",
},
StaticSvgElement::Path { d: "m14.5 12.5 2-2" },
StaticSvgElement::Path { d: "m11.5 9.5 2-2" },
StaticSvgElement::Path { d: "m8.5 6.5 2-2" },
StaticSvgElement::Path { d: "m17.5 15.5 2-2" },
];
static RUSSIAN_RUBLE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M6 11h8a4 4 0 0 0 0-8H9v18" }, StaticSvgElement::Path { d: "M6 15h8" }];
static SAILBOAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z" },
StaticSvgElement::Path { d: "M21 14 10 2 3 14h18Z" },
StaticSvgElement::Path { d: "M10 2v16" },
];
static SALAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 21h10" },
StaticSvgElement::Path { d: "M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z" },
StaticSvgElement::Path {
d: "M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1",
},
StaticSvgElement::Path { d: "m13 12 4-4" },
StaticSvgElement::Path { d: "M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2" },
];
static SANDWICH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777" },
StaticSvgElement::Path { d: "M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25" },
StaticSvgElement::Path { d: "M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9" },
StaticSvgElement::Path { d: "m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2" },
StaticSvgElement::Rect { x: "2", y: "11", width: "20", height: "4", rx: Some("1"), ry: None },
];
static SATELLITE_DISH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 10a7.31 7.31 0 0 0 10 10Z" },
StaticSvgElement::Path { d: "m9 15 3-3" },
StaticSvgElement::Path { d: "M17 13a6 6 0 0 0-6-6" },
StaticSvgElement::Path { d: "M21 13A10 10 0 0 0 11 3" },
];
static SATELLITE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5",
},
StaticSvgElement::Path { d: "M16.5 7.5 19 5" },
StaticSvgElement::Path {
d: "m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5",
},
StaticSvgElement::Path { d: "M9 21a6 6 0 0 0-6-6" },
StaticSvgElement::Path {
d: "M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z",
},
];
static SAUDI_RIYAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m20 19.5-5.5 1.2" },
StaticSvgElement::Path { d: "M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2" },
StaticSvgElement::Path { d: "m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2" },
StaticSvgElement::Path { d: "M20 10 4 13.5" },
];
static SAVE_ALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v3a1 1 0 0 0 1 1h5" },
StaticSvgElement::Path { d: "M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6" },
StaticSvgElement::Path { d: "M18 22H4a2 2 0 0 1-2-2V6" },
StaticSvgElement::Path {
d: "M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z",
},
];
static SAVE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 13H8a1 1 0 0 0-1 1v7" },
StaticSvgElement::Path { d: "M14 8h1" },
StaticSvgElement::Path { d: "M17 21v-4" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41" },
StaticSvgElement::Path { d: "M29.5 11.5s5 5 4 5" },
StaticSvgElement::Path { d: "M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15" },
];
static SAVE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",
},
StaticSvgElement::Path { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" },
StaticSvgElement::Path { d: "M7 3v4a1 1 0 0 0 1 1h7" },
];
static SCALE3_D_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 7v11a1 1 0 0 0 1 1h11" },
StaticSvgElement::Path { d: "M5.293 18.707 11 13" },
StaticSvgElement::Circle { cx: "19", cy: "19", r: "2" },
StaticSvgElement::Circle { cx: "5", cy: "5", r: "2" },
];
static SCALE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" },
StaticSvgElement::Path { d: "m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" },
StaticSvgElement::Path { d: "M7 21h10" },
StaticSvgElement::Path { d: "M12 3v18" },
StaticSvgElement::Path { d: "M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2" },
];
static SCALING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" },
StaticSvgElement::Path { d: "M14 15H9v-5" },
StaticSvgElement::Path { d: "M16 3h5v5" },
StaticSvgElement::Path { d: "M21 3 9 15" },
];
static SCAN_BARCODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Path { d: "M8 7v10" },
StaticSvgElement::Path { d: "M12 7v10" },
StaticSvgElement::Path { d: "M17 7v10" },
];
static SCAN_EYE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
StaticSvgElement::Path {
d: "M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",
},
];
static SCAN_FACE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Path { d: "M8 14s1.5 2 4 2 4-2 4-2" },
StaticSvgElement::Path { d: "M9 9h.01" },
StaticSvgElement::Path { d: "M15 9h.01" },
];
static SCAN_HEART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11.246 16.657a1 1 0 0 0 1.508 0l3.57-4.101A2.75 2.75 0 1 0 12 9.168a2.75 2.75 0 1 0-4.324 3.388z",
},
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
];
static SCAN_LINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Path { d: "M7 12h10" },
];
static SCAN_QR_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 12v4a1 1 0 0 1-1 1h-4" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M17 8V7" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M7 17h.01" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Rect { x: "7", y: "7", width: "5", height: "5", rx: Some("1"), ry: None },
];
static SCAN_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Path { d: "m16 16-1.9-1.9" },
];
static SCAN_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Path { d: "M7 8h8" },
StaticSvgElement::Path { d: "M7 12h10" },
StaticSvgElement::Path { d: "M7 16h6" },
];
static SCAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7V5a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "M17 3h2a2 2 0 0 1 2 2v2" },
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M7 21H5a2 2 0 0 1-2-2v-2" },
];
static SCHOOL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 22v-4a2 2 0 1 0-4 0v4" },
StaticSvgElement::Path {
d: "m18 10 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7.382a1 1 0 0 1 .553-.894L6 10",
},
StaticSvgElement::Path { d: "M18 5v17" },
StaticSvgElement::Path { d: "m4 6 7.106-3.553a2 2 0 0 1 1.788 0L20 6" },
StaticSvgElement::Path { d: "M6 5v17" },
StaticSvgElement::Circle { cx: "12", cy: "9", r: "2" },
];
static SCISSORS_LINE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5.42 9.42 8 12" },
StaticSvgElement::Circle { cx: "4", cy: "8", r: "2" },
StaticSvgElement::Path { d: "m14 6-8.58 8.58" },
StaticSvgElement::Circle { cx: "4", cy: "16", r: "2" },
StaticSvgElement::Path { d: "M10.8 14.8 14 18" },
StaticSvgElement::Path { d: "M16 12h-2" },
StaticSvgElement::Path { d: "M22 12h-2" },
];
static SCISSORS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "6", r: "3" },
StaticSvgElement::Path { d: "M8.12 8.12 12 12" },
StaticSvgElement::Path { d: "M20 4 8.12 15.88" },
StaticSvgElement::Circle { cx: "6", cy: "18", r: "3" },
StaticSvgElement::Path { d: "M14.8 14.8 20 20" },
];
static SCREEN_SHARE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "m22 3-5 5" },
StaticSvgElement::Path { d: "m17 3 5 5" },
];
static SCREEN_SHARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3" },
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Path { d: "M12 17v4" },
StaticSvgElement::Path { d: "m17 8 5-5" },
StaticSvgElement::Path { d: "M17 3h5v5" },
];
static SCROLL_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 12h-5" },
StaticSvgElement::Path { d: "M15 8h-5" },
StaticSvgElement::Path { d: "M19 17V5a2 2 0 0 0-2-2H4" },
StaticSvgElement::Path {
d: "M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",
},
];
static SCROLL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 17V5a2 2 0 0 0-2-2H4" },
StaticSvgElement::Path {
d: "M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",
},
];
static SEARCH_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m8 11 2 2 4-4" },
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
StaticSvgElement::Path { d: "m21 21-4.3-4.3" },
];
static SEARCH_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m13 13.5 2-2.5-2-2.5" },
StaticSvgElement::Path { d: "m21 21-4.3-4.3" },
StaticSvgElement::Path { d: "M9 8.5 7 11l2 2.5" },
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
];
static SEARCH_SLASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m13.5 8.5-5 5" },
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
StaticSvgElement::Path { d: "m21 21-4.3-4.3" },
];
static SEARCH_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m13.5 8.5-5 5" },
StaticSvgElement::Path { d: "m8.5 8.5 5 5" },
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
StaticSvgElement::Path { d: "m21 21-4.3-4.3" },
];
static SEARCH_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "m21 21-4.34-4.34" }, StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" }];
static SECTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0" },
StaticSvgElement::Path { d: "M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0" },
];
static SEND_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",
},
StaticSvgElement::Path { d: "M6 12h16" },
];
static SEND_TO_BACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "14", y: "14", width: "8", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "2", y: "2", width: "8", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 14v1a2 2 0 0 0 2 2h1" },
StaticSvgElement::Path { d: "M14 7h1a2 2 0 0 1 2 2v1" },
];
static SEND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",
},
StaticSvgElement::Path { d: "m21.854 2.147-10.94 10.939" },
];
static SEPARATOR_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 16-4 4-4-4" },
StaticSvgElement::Path { d: "M3 12h18" },
StaticSvgElement::Path { d: "m8 8 4-4 4 4" },
];
static SEPARATOR_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v18" },
StaticSvgElement::Path { d: "m16 16 4-4-4-4" },
StaticSvgElement::Path { d: "m8 8-4 4 4 4" },
];
static SERVER_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10.852 14.772-.383.923" },
StaticSvgElement::Path { d: "M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923" },
StaticSvgElement::Path { d: "m13.148 9.228.383-.923" },
StaticSvgElement::Path { d: "m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544" },
StaticSvgElement::Path { d: "m14.772 10.852.923-.383" },
StaticSvgElement::Path { d: "m14.772 13.148.923.383" },
StaticSvgElement::Path { d: "M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5" },
StaticSvgElement::Path { d: "M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5" },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "M6 6h.01" },
StaticSvgElement::Path { d: "m9.228 10.852-.923-.383" },
StaticSvgElement::Path { d: "m9.228 13.148-.923.383" },
];
static SERVER_CRASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2" },
StaticSvgElement::Path { d: "M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2" },
StaticSvgElement::Path { d: "M6 6h.01" },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "m13 6-4 6h6l-4 6" },
];
static SERVER_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5" },
StaticSvgElement::Path { d: "M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z" },
StaticSvgElement::Path { d: "M22 17v-1a2 2 0 0 0-2-2h-1" },
StaticSvgElement::Path { d: "M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z" },
StaticSvgElement::Path { d: "M6 18h.01" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static SERVER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "2", width: "20", height: "8", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Rect { x: "2", y: "14", width: "20", height: "8", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Line { x1: "6", y1: "6", x2: "6.01", y2: "6" },
StaticSvgElement::Line { x1: "6", y1: "18", x2: "6.01", y2: "18" },
];
static SETTINGS2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 17H5" },
StaticSvgElement::Path { d: "M19 7h-9" },
StaticSvgElement::Circle { cx: "17", cy: "17", r: "3" },
StaticSvgElement::Circle { cx: "7", cy: "7", r: "3" },
];
static SETTINGS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",
},
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
];
static SHAPES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",
},
StaticSvgElement::Rect { x: "3", y: "14", width: "7", height: "7", rx: Some("1"), ry: None },
StaticSvgElement::Circle { cx: "17.5", cy: "17.5", r: "3.5" },
];
static SHARE2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "18", cy: "5", r: "3" },
StaticSvgElement::Circle { cx: "6", cy: "12", r: "3" },
StaticSvgElement::Circle { cx: "18", cy: "19", r: "3" },
StaticSvgElement::Line { x1: "8.59", y1: "13.51", x2: "15.42", y2: "17.49" },
StaticSvgElement::Line { x1: "15.41", y1: "6.51", x2: "8.59", y2: "10.49" },
];
static SHARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v13" },
StaticSvgElement::Path { d: "m16 6-4-4-4 4" },
StaticSvgElement::Path { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" },
];
static SHEET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Line { x1: "3", y1: "9", x2: "21", y2: "9" },
StaticSvgElement::Line { x1: "3", y1: "15", x2: "21", y2: "15" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "9", y2: "21" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "15", y2: "21" },
];
static SHELL_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44",
}];
static SHIELD_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M12 8v4" },
StaticSvgElement::Path { d: "M12 16h.01" },
];
static SHIELD_BAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "m4.243 5.21 14.39 12.472" },
];
static SHIELD_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "m9 12 2 2 4-4" },
];
static SHIELD_ELLIPSIS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M8 12h.01" },
StaticSvgElement::Path { d: "M12 12h.01" },
StaticSvgElement::Path { d: "M16 12h.01" },
];
static SHIELD_HALF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M12 22V2" },
];
static SHIELD_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M9 12h6" },
];
static SHIELD_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path {
d: "M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71",
},
StaticSvgElement::Path {
d: "M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264",
},
];
static SHIELD_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M9 12h6" },
StaticSvgElement::Path { d: "M12 9v6" },
];
static SHIELD_QUESTION_MARK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static SHIELD_QUESTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static SHIELD_USER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "M6.376 18.91a6 6 0 0 1 11.249.003" },
StaticSvgElement::Circle { cx: "12", cy: "11", r: "4" },
];
static SHIELD_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
},
StaticSvgElement::Path { d: "m14.5 9.5-5 5" },
StaticSvgElement::Path { d: "m9.5 9.5 5 5" },
];
static SHIELD_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
}];
static SHIP_WHEEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "8" },
StaticSvgElement::Path { d: "M12 2v7.5" },
StaticSvgElement::Path { d: "m19 5-5.23 5.23" },
StaticSvgElement::Path { d: "M22 12h-7.5" },
StaticSvgElement::Path { d: "m19 19-5.23-5.23" },
StaticSvgElement::Path { d: "M12 14.5V22" },
StaticSvgElement::Path { d: "M10.23 13.77 5 19" },
StaticSvgElement::Path { d: "M9.5 12H2" },
StaticSvgElement::Path { d: "M10.23 10.23 5 5" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2.5" },
];
static SHIP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 10.189V14" },
StaticSvgElement::Path { d: "M12 2v3" },
StaticSvgElement::Path { d: "M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6" },
StaticSvgElement::Path {
d: "M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76",
},
StaticSvgElement::Path {
d: "M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
},
];
static SHIRT_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z",
}];
static SHOPPING_BAG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 10a4 4 0 0 1-8 0" },
StaticSvgElement::Path { d: "M3.103 6.034h17.794" },
StaticSvgElement::Path {
d: "M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z",
},
];
static SHOPPING_BASKET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 11-1 9" },
StaticSvgElement::Path { d: "m19 11-4-7" },
StaticSvgElement::Path { d: "M2 11h20" },
StaticSvgElement::Path { d: "m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4" },
StaticSvgElement::Path { d: "M4.5 15.5h15" },
StaticSvgElement::Path { d: "m5 11 4-7" },
StaticSvgElement::Path { d: "m9 11 1 9" },
];
static SHOPPING_CART_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "8", cy: "21", r: "1" },
StaticSvgElement::Circle { cx: "19", cy: "21", r: "1" },
StaticSvgElement::Path { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" },
];
static SHOVEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z",
},
StaticSvgElement::Path {
d: "M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z",
},
StaticSvgElement::Path { d: "m9 15 7.879-7.878" },
];
static SHOWER_HEAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m4 4 2.5 2.5" },
StaticSvgElement::Path { d: "M13.5 6.5a4.95 4.95 0 0 0-7 7" },
StaticSvgElement::Path { d: "M15 5 5 15" },
StaticSvgElement::Path { d: "M14 17v.01" },
StaticSvgElement::Path { d: "M10 16v.01" },
StaticSvgElement::Path { d: "M13 13v.01" },
StaticSvgElement::Path { d: "M16 10v.01" },
StaticSvgElement::Path { d: "M11 20v.01" },
StaticSvgElement::Path { d: "M17 14v.01" },
StaticSvgElement::Path { d: "M20 11v.01" },
];
static SHREDDER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 22v-5" },
StaticSvgElement::Path { d: "M14 19v-2" },
StaticSvgElement::Path { d: "M14 2v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M18 20v-3" },
StaticSvgElement::Path { d: "M2 13h20" },
StaticSvgElement::Path { d: "M20 13V7l-5-5H6a2 2 0 0 0-2 2v9" },
StaticSvgElement::Path { d: "M6 20v-3" },
];
static SHRIMP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 12h.01" },
StaticSvgElement::Path { d: "M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1" },
StaticSvgElement::Path {
d: "M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8",
},
StaticSvgElement::Path { d: "M14 8a8.5 8.5 0 0 1 0 8" },
StaticSvgElement::Path { d: "M16 16c2 0 4.5-4 4-6" },
];
static SHRINK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 15 6 6m-6-6v4.8m0-4.8h4.8" },
StaticSvgElement::Path { d: "M9 19.8V15m0 0H4.2M9 15l-6 6" },
StaticSvgElement::Path { d: "M15 4.2V9m0 0h4.8M15 9l6-6" },
StaticSvgElement::Path { d: "M9 4.2V9m0 0H4.2M9 9 3 3" },
];
static SHRUB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5" },
StaticSvgElement::Path { d: "M14.5 14.5 12 17" },
StaticSvgElement::Path { d: "M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z" },
];
static SHUFFLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m18 14 4 4-4 4" },
StaticSvgElement::Path { d: "m18 2 4 4-4 4" },
StaticSvgElement::Path { d: "M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22" },
StaticSvgElement::Path { d: "M2 6h1.972a4 4 0 0 1 3.6 2.2" },
StaticSvgElement::Path { d: "M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45" },
];
static SIGMA_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2",
}];
static SIGNAL_HIGH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 20h.01" },
StaticSvgElement::Path { d: "M7 20v-4" },
StaticSvgElement::Path { d: "M12 20v-8" },
StaticSvgElement::Path { d: "M17 20V8" },
];
static SIGNAL_LOW_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M2 20h.01" }, StaticSvgElement::Path { d: "M7 20v-4" }];
static SIGNAL_MEDIUM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 20h.01" },
StaticSvgElement::Path { d: "M7 20v-4" },
StaticSvgElement::Path { d: "M12 20v-8" },
];
static SIGNAL_ZERO_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M2 20h.01" }];
static SIGNAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 20h.01" },
StaticSvgElement::Path { d: "M7 20v-4" },
StaticSvgElement::Path { d: "M12 20v-8" },
StaticSvgElement::Path { d: "M17 20V8" },
StaticSvgElement::Path { d: "M22 4v16" },
];
static SIGNATURE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284",
},
StaticSvgElement::Path { d: "M3 21h18" },
];
static SIGNPOST_BIG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 9H4L2 7l2-2h6" },
StaticSvgElement::Path { d: "M14 5h6l2 2-2 2h-6" },
StaticSvgElement::Path { d: "M10 22V4a2 2 0 1 1 4 0v18" },
StaticSvgElement::Path { d: "M8 22h8" },
];
static SIGNPOST_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 13v8" },
StaticSvgElement::Path { d: "M12 3v3" },
StaticSvgElement::Path {
d: "M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z",
},
];
static SIREN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 18v-6a5 5 0 1 1 10 0v6" },
StaticSvgElement::Path { d: "M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z" },
StaticSvgElement::Path { d: "M21 12h1" },
StaticSvgElement::Path { d: "M18.5 4.5 18 5" },
StaticSvgElement::Path { d: "M2 12h1" },
StaticSvgElement::Path { d: "M12 2v1" },
StaticSvgElement::Path { d: "m4.929 4.929.707.707" },
StaticSvgElement::Path { d: "M12 12v6" },
];
static SKIP_BACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z",
},
StaticSvgElement::Path { d: "M3 20V4" },
];
static SKIP_FORWARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 4v16" },
StaticSvgElement::Path {
d: "M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z",
},
];
static SKULL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m12.5 17-.5-1-.5 1h1z" },
StaticSvgElement::Path {
d: "M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z",
},
StaticSvgElement::Circle { cx: "15", cy: "12", r: "1" },
StaticSvgElement::Circle { cx: "9", cy: "12", r: "1" },
];
static SLACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "13", y: "2", width: "3", height: "8", rx: Some("1.5"), ry: None },
StaticSvgElement::Path { d: "M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5" },
StaticSvgElement::Rect { x: "8", y: "14", width: "3", height: "8", rx: Some("1.5"), ry: None },
StaticSvgElement::Path { d: "M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5" },
StaticSvgElement::Rect { x: "14", y: "13", width: "8", height: "3", rx: Some("1.5"), ry: None },
StaticSvgElement::Path { d: "M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5" },
StaticSvgElement::Rect { x: "2", y: "8", width: "8", height: "3", rx: Some("1.5"), ry: None },
StaticSvgElement::Path { d: "M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5" },
];
static SLASH_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M22 2 2 22" }];
static SLICE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14",
}];
static SLIDERS_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "21", y1: "4", x2: "14", y2: "4" },
StaticSvgElement::Line { x1: "10", y1: "4", x2: "3", y2: "4" },
StaticSvgElement::Line { x1: "21", y1: "12", x2: "12", y2: "12" },
StaticSvgElement::Line { x1: "8", y1: "12", x2: "3", y2: "12" },
StaticSvgElement::Line { x1: "21", y1: "20", x2: "16", y2: "20" },
StaticSvgElement::Line { x1: "12", y1: "20", x2: "3", y2: "20" },
StaticSvgElement::Line { x1: "14", y1: "2", x2: "14", y2: "6" },
StaticSvgElement::Line { x1: "8", y1: "10", x2: "8", y2: "14" },
StaticSvgElement::Line { x1: "16", y1: "18", x2: "16", y2: "22" },
];
static SLIDERS_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "4", y1: "21", x2: "4", y2: "14" },
StaticSvgElement::Line { x1: "4", y1: "10", x2: "4", y2: "3" },
StaticSvgElement::Line { x1: "12", y1: "21", x2: "12", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12", y2: "3" },
StaticSvgElement::Line { x1: "20", y1: "21", x2: "20", y2: "16" },
StaticSvgElement::Line { x1: "20", y1: "12", x2: "20", y2: "3" },
StaticSvgElement::Line { x1: "2", y1: "14", x2: "6", y2: "14" },
StaticSvgElement::Line { x1: "10", y1: "8", x2: "14", y2: "8" },
StaticSvgElement::Line { x1: "18", y1: "16", x2: "22", y2: "16" },
];
static SMARTPHONE_CHARGING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "2", width: "14", height: "20", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M12.667 8 10 12h4l-2.667 4" },
];
static SMARTPHONE_NFC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "6", width: "7", height: "12", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M13 8.32a7.43 7.43 0 0 1 0 7.36" },
StaticSvgElement::Path { d: "M16.46 6.21a11.76 11.76 0 0 1 0 11.58" },
StaticSvgElement::Path { d: "M19.91 4.1a15.91 15.91 0 0 1 .01 15.8" },
];
static SMARTPHONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "2", width: "14", height: "20", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M12 18h.01" },
];
static SMILE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 11v1a10 10 0 1 1-9-10" },
StaticSvgElement::Path { d: "M8 14s1.5 2 4 2 4-2 4-2" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "9.01", y2: "9" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "15.01", y2: "9" },
StaticSvgElement::Path { d: "M16 5h6" },
StaticSvgElement::Path { d: "M19 2v6" },
];
static SMILE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Path { d: "M8 14s1.5 2 4 2 4-2 4-2" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "9.01", y2: "9" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "15.01", y2: "9" },
];
static SNAIL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0" },
StaticSvgElement::Circle { cx: "10", cy: "13", r: "8" },
StaticSvgElement::Path { d: "M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6" },
StaticSvgElement::Path { d: "M18 3 19.1 5.2" },
StaticSvgElement::Path { d: "M22 3 20.9 5.2" },
];
static SNOWFLAKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 20-1.25-2.5L6 18" },
StaticSvgElement::Path { d: "M10 4 8.75 6.5 6 6" },
StaticSvgElement::Path { d: "m14 20 1.25-2.5L18 18" },
StaticSvgElement::Path { d: "m14 4 1.25 2.5L18 6" },
StaticSvgElement::Path { d: "m17 21-3-6h-4" },
StaticSvgElement::Path { d: "m17 3-3 6 1.5 3" },
StaticSvgElement::Path { d: "M2 12h6.5L10 9" },
StaticSvgElement::Path { d: "m20 10-1.5 2 1.5 2" },
StaticSvgElement::Path { d: "M22 12h-6.5L14 15" },
StaticSvgElement::Path { d: "m4 10 1.5 2L4 14" },
StaticSvgElement::Path { d: "m7 21 3-6-1.5-3" },
StaticSvgElement::Path { d: "m7 3 3 6h4" },
];
static SOAP_DISPENSER_DROPLET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.5 2v4" },
StaticSvgElement::Path { d: "M14 2H7a2 2 0 0 0-2 2" },
StaticSvgElement::Path {
d: "M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19",
},
StaticSvgElement::Path { d: "M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3" },
];
static SOFA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3" },
StaticSvgElement::Path {
d: "M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",
},
StaticSvgElement::Path { d: "M4 18v2" },
StaticSvgElement::Path { d: "M20 18v2" },
StaticSvgElement::Path { d: "M12 4v9" },
];
static SOUP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z" },
StaticSvgElement::Path { d: "M7 21h10" },
StaticSvgElement::Path { d: "M19.5 12 22 6" },
StaticSvgElement::Path { d: "M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62" },
StaticSvgElement::Path { d: "M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62" },
StaticSvgElement::Path { d: "M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62" },
];
static SPACE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1" }];
static SPADE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z",
},
StaticSvgElement::Path { d: "M12 18v4" },
];
static SPARKLE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",
}];
static SPARKLES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",
},
StaticSvgElement::Path { d: "M20 2v4" },
StaticSvgElement::Path { d: "M22 4h-4" },
StaticSvgElement::Circle { cx: "4", cy: "20", r: "2" },
];
static SPEAKER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 6h.01" },
StaticSvgElement::Circle { cx: "12", cy: "14", r: "4" },
StaticSvgElement::Path { d: "M12 14h.01" },
];
static SPEECH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20",
},
StaticSvgElement::Path { d: "M19.8 17.8a7.5 7.5 0 0 0 .003-10.603" },
StaticSvgElement::Path { d: "M17 15a3.5 3.5 0 0 0-.025-4.975" },
];
static SPELL_CHECK2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m6 16 6-12 6 12" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path {
d: "M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1",
},
];
static SPELL_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m6 16 6-12 6 12" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "m16 20 2 2 4-4" },
];
static SPLINE_POINTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",
},
StaticSvgElement::Path { d: "M5 17A12 12 0 0 1 17 5" },
StaticSvgElement::Circle { cx: "19", cy: "5", r: "2" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "2" },
];
static SPLINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "19", cy: "5", r: "2" },
StaticSvgElement::Circle { cx: "5", cy: "19", r: "2" },
StaticSvgElement::Path { d: "M5 17A12 12 0 0 1 17 5" },
];
static SPLIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 3h5v5" },
StaticSvgElement::Path { d: "M8 3H3v5" },
StaticSvgElement::Path { d: "M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3" },
StaticSvgElement::Path { d: "m15 9 6-6" },
];
static SPOOL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66",
},
StaticSvgElement::Path {
d: "m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178",
},
];
static SPOTLIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15.295 19.562 16 22" },
StaticSvgElement::Path { d: "m17 16 3.758 2.098" },
StaticSvgElement::Path { d: "m19 12.5 3.026-.598" },
StaticSvgElement::Path {
d: "M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z",
},
StaticSvgElement::Path { d: "M8 9V2" },
];
static SPRAY_CAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 3h.01" },
StaticSvgElement::Path { d: "M7 5h.01" },
StaticSvgElement::Path { d: "M11 7h.01" },
StaticSvgElement::Path { d: "M3 7h.01" },
StaticSvgElement::Path { d: "M7 9h.01" },
StaticSvgElement::Path { d: "M3 11h.01" },
StaticSvgElement::Rect { x: "15", y: "5", width: "4", height: "4", rx: None, ry: None },
StaticSvgElement::Path { d: "m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2" },
StaticSvgElement::Path { d: "m13 14 8-2" },
StaticSvgElement::Path { d: "m13 19 8-2" },
];
static SPROUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3",
},
StaticSvgElement::Path { d: "M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4" },
StaticSvgElement::Path { d: "M5 21h14" },
];
static SQUARE_ACTIVITY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M17 12h-2l-2 5-2-10-2 5H7" },
];
static SQUARE_ARROW_DOWN_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m16 8-8 8" },
StaticSvgElement::Path { d: "M16 16H8V8" },
];
static SQUARE_ARROW_DOWN_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m8 8 8 8" },
StaticSvgElement::Path { d: "M16 8v8H8" },
];
static SQUARE_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 8v8" },
StaticSvgElement::Path { d: "m8 12 4 4 4-4" },
];
static SQUARE_ARROW_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m12 8-4 4 4 4" },
StaticSvgElement::Path { d: "M16 12H8" },
];
static SQUARE_ARROW_OUT_DOWN_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6" },
StaticSvgElement::Path { d: "m3 21 9-9" },
StaticSvgElement::Path { d: "M9 21H3v-6" },
];
static SQUARE_ARROW_OUT_DOWN_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" },
StaticSvgElement::Path { d: "m21 21-9-9" },
StaticSvgElement::Path { d: "M21 15v6h-6" },
];
static SQUARE_ARROW_OUT_UP_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6" },
StaticSvgElement::Path { d: "m3 3 9 9" },
StaticSvgElement::Path { d: "M3 9V3h6" },
];
static SQUARE_ARROW_OUT_UP_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6" },
StaticSvgElement::Path { d: "m21 3-9 9" },
StaticSvgElement::Path { d: "M15 3h6v6" },
];
static SQUARE_ARROW_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "m12 16 4-4-4-4" },
];
static SQUARE_ARROW_UP_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 16V8h8" },
StaticSvgElement::Path { d: "M16 16 8 8" },
];
static SQUARE_ARROW_UP_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 8h8v8" },
StaticSvgElement::Path { d: "m8 16 8-8" },
];
static SQUARE_ARROW_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m16 12-4-4-4 4" },
StaticSvgElement::Path { d: "M12 16V8" },
];
static SQUARE_ASTERISK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 8v8" },
StaticSvgElement::Path { d: "m8.5 14 7-4" },
StaticSvgElement::Path { d: "m8.5 10 7 4" },
];
static SQUARE_BOTTOM_DASHED_SCISSORS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M10 22H8" },
StaticSvgElement::Path { d: "M16 22h-2" },
StaticSvgElement::Circle { cx: "8", cy: "8", r: "2" },
StaticSvgElement::Path { d: "M9.414 9.414 12 12" },
StaticSvgElement::Path { d: "M14.8 14.8 18 18" },
StaticSvgElement::Circle { cx: "8", cy: "16", r: "2" },
StaticSvgElement::Path { d: "m18 6-8.586 8.586" },
];
static SQUARE_CHART_GANTT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 8h7" },
StaticSvgElement::Path { d: "M8 12h6" },
StaticSvgElement::Path { d: "M11 16h5" },
];
static SQUARE_CHECK_BIG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344" },
StaticSvgElement::Path { d: "m9 11 3 3L22 4" },
];
static SQUARE_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m9 12 2 2 4-4" },
];
static SQUARE_CHEVRON_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m16 10-4 4-4-4" },
];
static SQUARE_CHEVRON_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m14 16-4-4 4-4" },
];
static SQUARE_CHEVRON_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m10 8 4 4-4 4" },
];
static SQUARE_CHEVRON_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m8 14 4-4 4 4" },
];
static SQUARE_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 9-3 3 3 3" },
StaticSvgElement::Path { d: "m14 15 3-3-3-3" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static SQUARE_DASHED_BOTTOM_CODE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 9.5 8 12l2 2.5" },
StaticSvgElement::Path { d: "M14 21h1" },
StaticSvgElement::Path { d: "m14 9.5 2 2.5-2 2.5" },
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M9 21h1" },
];
static SQUARE_DASHED_BOTTOM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M9 21h1" },
StaticSvgElement::Path { d: "M14 21h1" },
];
static SQUARE_DASHED_KANBAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 7v7" },
StaticSvgElement::Path { d: "M12 7v4" },
StaticSvgElement::Path { d: "M16 7v9" },
StaticSvgElement::Path { d: "M5 3a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M9 3h1" },
StaticSvgElement::Path { d: "M14 3h1" },
StaticSvgElement::Path { d: "M19 3a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M21 9v1" },
StaticSvgElement::Path { d: "M21 14v1" },
StaticSvgElement::Path { d: "M21 19a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M14 21h1" },
StaticSvgElement::Path { d: "M9 21h1" },
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M3 14v1" },
StaticSvgElement::Path { d: "M3 9v1" },
];
static SQUARE_DASHED_MOUSE_POINTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",
},
StaticSvgElement::Path { d: "M5 3a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M19 3a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M9 3h1" },
StaticSvgElement::Path { d: "M9 21h2" },
StaticSvgElement::Path { d: "M14 3h1" },
StaticSvgElement::Path { d: "M3 9v1" },
StaticSvgElement::Path { d: "M21 9v2" },
StaticSvgElement::Path { d: "M3 14v1" },
];
static SQUARE_DASHED_TOP_SOLID_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 21h1" },
StaticSvgElement::Path { d: "M21 14v1" },
StaticSvgElement::Path { d: "M21 19a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M21 9v1" },
StaticSvgElement::Path { d: "M3 14v1" },
StaticSvgElement::Path { d: "M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M3 9v1" },
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M9 21h1" },
];
static SQUARE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 3a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M19 3a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M21 19a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M9 3h1" },
StaticSvgElement::Path { d: "M9 21h1" },
StaticSvgElement::Path { d: "M14 3h1" },
StaticSvgElement::Path { d: "M14 21h1" },
StaticSvgElement::Path { d: "M3 9v1" },
StaticSvgElement::Path { d: "M21 9v1" },
StaticSvgElement::Path { d: "M3 14v1" },
StaticSvgElement::Path { d: "M21 14v1" },
];
static SQUARE_DIVIDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Line { x1: "8", y1: "12", x2: "16", y2: "12" },
StaticSvgElement::Line { x1: "12", y1: "16", x2: "12", y2: "16" },
StaticSvgElement::Line { x1: "12", y1: "8", x2: "12", y2: "8" },
];
static SQUARE_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
];
static SQUARE_EQUAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 10h10" },
StaticSvgElement::Path { d: "M7 14h10" },
];
static SQUARE_FUNCTION_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3" },
StaticSvgElement::Path { d: "M9 11.2h5.7" },
];
static SQUARE_KANBAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 7v7" },
StaticSvgElement::Path { d: "M12 7v4" },
StaticSvgElement::Path { d: "M16 7v9" },
];
static SQUARE_LIBRARY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 7v10" },
StaticSvgElement::Path { d: "M11 7v10" },
StaticSvgElement::Path { d: "m15 7 2 10" },
];
static SQUARE_M_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 16V8l4 4 4-4v8" },
];
static SQUARE_MENU_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 8h10" },
StaticSvgElement::Path { d: "M7 12h10" },
StaticSvgElement::Path { d: "M7 16h10" },
];
static SQUARE_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 12h8" },
];
static SQUARE_MOUSE_POINTER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",
},
StaticSvgElement::Path { d: "M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" },
];
static SQUARE_PARKING_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41" },
StaticSvgElement::Path { d: "M3 8.7V19a2 2 0 0 0 2 2h10.3" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M13 13a3 3 0 1 0 0-6H9v2" },
StaticSvgElement::Path { d: "M9 17v-2.3" },
];
static SQUARE_PARKING_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M9 17V7h4a3 3 0 0 1 0 6H9" },
];
static SQUARE_PAUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Line { x1: "10", y1: "15", x2: "10", y2: "9" },
StaticSvgElement::Line { x1: "14", y1: "15", x2: "14", y2: "9" },
];
static SQUARE_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" },
StaticSvgElement::Path {
d: "M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",
},
];
static SQUARE_PERCENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "M9 9h.01" },
StaticSvgElement::Path { d: "M15 15h.01" },
];
static SQUARE_PI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 7h10" },
StaticSvgElement::Path { d: "M10 7v10" },
StaticSvgElement::Path { d: "M16 17a2 2 0 0 1-2-2V7" },
];
static SQUARE_PILCROW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M12 12H9.5a2.5 2.5 0 0 1 0-5H17" },
StaticSvgElement::Path { d: "M12 7v10" },
StaticSvgElement::Path { d: "M16 7v10" },
];
static SQUARE_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path {
d: "M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z",
},
];
static SQUARE_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Path { d: "M12 8v8" },
];
static SQUARE_POWER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 7v4" },
StaticSvgElement::Path { d: "M7.998 9.003a5 5 0 1 0 8-.005" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static SQUARE_RADICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 12h2l2 5 2-10h4" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static SQUARE_ROUND_CORNER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 11a8 8 0 0 0-8-8" },
StaticSvgElement::Path { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" },
];
static SQUARE_SCISSORS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "2", width: "20", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "8", cy: "8", r: "2" },
StaticSvgElement::Path { d: "M9.414 9.414 12 12" },
StaticSvgElement::Path { d: "M14.8 14.8 18 18" },
StaticSvgElement::Circle { cx: "8", cy: "16", r: "2" },
StaticSvgElement::Path { d: "m18 6-8.586 8.586" },
];
static SQUARE_SIGMA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M16 8.9V7H8l4 5-4 5h8v-1.9" },
];
static SQUARE_SLASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Line { x1: "9", y1: "15", x2: "15", y2: "9" },
];
static SQUARE_SPLIT_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3" },
StaticSvgElement::Path { d: "M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3" },
StaticSvgElement::Line { x1: "12", y1: "4", x2: "12", y2: "20" },
];
static SQUARE_SPLIT_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3" },
StaticSvgElement::Path { d: "M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3" },
StaticSvgElement::Line { x1: "4", y1: "12", x2: "20", y2: "12" },
];
static SQUARE_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "8", y: "8", width: "8", height: "8", rx: Some("1"), ry: None },
];
static SQUARE_STACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2" },
StaticSvgElement::Path { d: "M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2" },
StaticSvgElement::Rect { x: "14", y: "14", width: "8", height: "8", rx: Some("2"), ry: None },
];
static SQUARE_STOP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "9", y: "9", width: "6", height: "6", rx: Some("1"), ry: None },
];
static SQUARE_TERMINAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m7 11 2-2-2-2" },
StaticSvgElement::Path { d: "M11 13h4" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
];
static SQUARE_USER_ROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 21a6 6 0 0 0-12 0" },
StaticSvgElement::Circle { cx: "12", cy: "11", r: "4" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static SQUARE_USER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2" },
];
static SQUARE_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "m9 9 6 6" },
];
static SQUARE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None }];
static SQUARES_EXCLUDE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0",
},
StaticSvgElement::Path {
d: "M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2",
},
];
static SQUARES_INTERSECT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 22a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M14 2a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M16 22h-2" },
StaticSvgElement::Path { d: "M2 10V8" },
StaticSvgElement::Path { d: "M2 4a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "M20 8a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M22 14v2" },
StaticSvgElement::Path { d: "M22 20a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M4 16a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z" },
StaticSvgElement::Path { d: "M8 2h2" },
];
static SQUARES_SUBTRACT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 22a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M16 22h-2" },
StaticSvgElement::Path {
d: "M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z",
},
StaticSvgElement::Path { d: "M20 8a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M22 14v2" },
StaticSvgElement::Path { d: "M22 20a2 2 0 0 1-2 2" },
];
static SQUARES_UNITE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z",
}];
static SQUIRCLE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13.77 3.043a34 34 0 0 0-3.54 0" },
StaticSvgElement::Path { d: "M13.771 20.956a33 33 0 0 1-3.541.001" },
StaticSvgElement::Path { d: "M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44" },
StaticSvgElement::Path { d: "M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438" },
StaticSvgElement::Path { d: "M20.957 10.23a33 33 0 0 1 0 3.54" },
StaticSvgElement::Path { d: "M3.043 10.23a34 34 0 0 0 .001 3.541" },
StaticSvgElement::Path { d: "M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438" },
StaticSvgElement::Path { d: "M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44" },
];
static SQUIRCLE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9" }];
static SQUIRREL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15.236 22a3 3 0 0 0-2.2-5" },
StaticSvgElement::Path { d: "M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4" },
StaticSvgElement::Path { d: "M18 13h.01" },
StaticSvgElement::Path {
d: "M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10",
},
];
static STAMP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13" },
StaticSvgElement::Path {
d: "M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z",
},
StaticSvgElement::Path { d: "M5 22h14" },
];
static STAR_HALF_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2",
}];
static STAR_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43" },
StaticSvgElement::Path { d: "M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static STAR_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",
}];
static STEP_BACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z",
},
StaticSvgElement::Path { d: "M21 20V4" },
];
static STEP_FORWARD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z",
},
StaticSvgElement::Path { d: "M3 4v16" },
];
static STETHOSCOPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 2v2" },
StaticSvgElement::Path { d: "M5 2v2" },
StaticSvgElement::Path { d: "M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1" },
StaticSvgElement::Path { d: "M8 15a6 6 0 0 0 12 0v-3" },
StaticSvgElement::Circle { cx: "20", cy: "10", r: "2" },
];
static STICKER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z" },
StaticSvgElement::Path { d: "M14 3v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Path { d: "M8 13h.01" },
StaticSvgElement::Path { d: "M16 13h.01" },
StaticSvgElement::Path { d: "M10 16s.8 1 2 1c1.3 0 2-1 2-1" },
];
static STICKY_NOTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z" },
StaticSvgElement::Path { d: "M15 3v4a2 2 0 0 0 2 2h4" },
];
static STORE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" },
StaticSvgElement::Path { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" },
StaticSvgElement::Path { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" },
StaticSvgElement::Path { d: "M2 7h20" },
StaticSvgElement::Path {
d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7",
},
];
static STRETCH_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "6", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "2", y: "14", width: "20", height: "6", rx: Some("2"), ry: None },
];
static STRETCH_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "2", width: "6", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Rect { x: "14", y: "2", width: "6", height: "20", rx: Some("2"), ry: None },
];
static STRIKETHROUGH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 4H9a3 3 0 0 0-2.83 4" },
StaticSvgElement::Path { d: "M14 12a4 4 0 0 1 0 8H6" },
StaticSvgElement::Line { x1: "4", y1: "12", x2: "20", y2: "12" },
];
static SUBSCRIPT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m4 5 8 8" },
StaticSvgElement::Path { d: "m12 5-8 8" },
StaticSvgElement::Path {
d: "M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07",
},
];
static SUN_DIM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Path { d: "M12 4h.01" },
StaticSvgElement::Path { d: "M20 12h.01" },
StaticSvgElement::Path { d: "M12 20h.01" },
StaticSvgElement::Path { d: "M4 12h.01" },
StaticSvgElement::Path { d: "M17.657 6.343h.01" },
StaticSvgElement::Path { d: "M17.657 17.657h.01" },
StaticSvgElement::Path { d: "M6.343 17.657h.01" },
StaticSvgElement::Path { d: "M6.343 6.343h.01" },
];
static SUN_MEDIUM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Path { d: "M12 3v1" },
StaticSvgElement::Path { d: "M12 20v1" },
StaticSvgElement::Path { d: "M3 12h1" },
StaticSvgElement::Path { d: "M20 12h1" },
StaticSvgElement::Path { d: "m18.364 5.636-.707.707" },
StaticSvgElement::Path { d: "m6.343 17.657-.707.707" },
StaticSvgElement::Path { d: "m5.636 5.636.707.707" },
StaticSvgElement::Path { d: "m17.657 17.657.707.707" },
];
static SUN_MOON_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "M13 8.129A4 4 0 0 1 15.873 11" },
StaticSvgElement::Path { d: "m19 5-1.256 1.256" },
StaticSvgElement::Path { d: "M20 12h2" },
StaticSvgElement::Path { d: "M9 8a5 5 0 1 0 7 7 7 7 0 1 1-7-7" },
];
static SUN_SNOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 21v-1" },
StaticSvgElement::Path { d: "M10 4V3" },
StaticSvgElement::Path { d: "M10 9a3 3 0 0 0 0 6" },
StaticSvgElement::Path { d: "m14 20 1.25-2.5L18 18" },
StaticSvgElement::Path { d: "m14 4 1.25 2.5L18 6" },
StaticSvgElement::Path { d: "m17 21-3-6 1.5-3H22" },
StaticSvgElement::Path { d: "m17 3-3 6 1.5 3" },
StaticSvgElement::Path { d: "M2 12h1" },
StaticSvgElement::Path { d: "m20 10-1.5 2 1.5 2" },
StaticSvgElement::Path { d: "m3.64 18.36.7-.7" },
StaticSvgElement::Path { d: "m4.34 6.34-.7-.7" },
];
static SUN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "M12 20v2" },
StaticSvgElement::Path { d: "m4.93 4.93 1.41 1.41" },
StaticSvgElement::Path { d: "m17.66 17.66 1.41 1.41" },
StaticSvgElement::Path { d: "M2 12h2" },
StaticSvgElement::Path { d: "M20 12h2" },
StaticSvgElement::Path { d: "m6.34 17.66-1.41 1.41" },
StaticSvgElement::Path { d: "m19.07 4.93-1.41 1.41" },
];
static SUNRISE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v8" },
StaticSvgElement::Path { d: "m4.93 10.93 1.41 1.41" },
StaticSvgElement::Path { d: "M2 18h2" },
StaticSvgElement::Path { d: "M20 18h2" },
StaticSvgElement::Path { d: "m19.07 10.93-1.41 1.41" },
StaticSvgElement::Path { d: "M22 22H2" },
StaticSvgElement::Path { d: "m8 6 4-4 4 4" },
StaticSvgElement::Path { d: "M16 18a4 4 0 0 0-8 0" },
];
static SUNSET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 10V2" },
StaticSvgElement::Path { d: "m4.93 10.93 1.41 1.41" },
StaticSvgElement::Path { d: "M2 18h2" },
StaticSvgElement::Path { d: "M20 18h2" },
StaticSvgElement::Path { d: "m19.07 10.93-1.41 1.41" },
StaticSvgElement::Path { d: "M22 22H2" },
StaticSvgElement::Path { d: "m16 6-4 4-4-4" },
StaticSvgElement::Path { d: "M16 18a4 4 0 0 0-8 0" },
];
static SUPERSCRIPT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m4 19 8-8" },
StaticSvgElement::Path { d: "m12 19-8-8" },
StaticSvgElement::Path {
d: "M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06",
},
];
static SWATCH_BOOK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z" },
StaticSvgElement::Path { d: "M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7" },
StaticSvgElement::Path { d: "M 7 17h.01" },
StaticSvgElement::Path { d: "m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8" },
];
static SWISS_FRANC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 21V3h8" },
StaticSvgElement::Path { d: "M6 16h9" },
StaticSvgElement::Path { d: "M10 9.5h7" },
];
static SWITCH_CAMERA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5" },
StaticSvgElement::Path { d: "M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "3" },
StaticSvgElement::Path { d: "m18 22-3-3 3-3" },
StaticSvgElement::Path { d: "m6 2 3 3-3 3" },
];
static SWORD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Polyline { points: "14.5 17.5 3 6 3 3 6 3 17.5 14.5" },
StaticSvgElement::Line { x1: "13", y1: "19", x2: "19", y2: "13" },
StaticSvgElement::Line { x1: "16", y1: "16", x2: "20", y2: "20" },
StaticSvgElement::Line { x1: "19", y1: "21", x2: "21", y2: "19" },
];
static SWORDS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Polyline { points: "14.5 17.5 3 6 3 3 6 3 17.5 14.5" },
StaticSvgElement::Line { x1: "13", y1: "19", x2: "19", y2: "13" },
StaticSvgElement::Line { x1: "16", y1: "16", x2: "20", y2: "20" },
StaticSvgElement::Line { x1: "19", y1: "21", x2: "21", y2: "19" },
StaticSvgElement::Polyline { points: "14.5 6.5 18 3 21 3 21 6 17.5 9.5" },
StaticSvgElement::Line { x1: "5", y1: "14", x2: "9", y2: "18" },
StaticSvgElement::Line { x1: "7", y1: "17", x2: "4", y2: "20" },
StaticSvgElement::Line { x1: "3", y1: "19", x2: "5", y2: "21" },
];
static SYRINGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m18 2 4 4" },
StaticSvgElement::Path { d: "m17 7 3-3" },
StaticSvgElement::Path { d: "M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5" },
StaticSvgElement::Path { d: "m9 11 4 4" },
StaticSvgElement::Path { d: "m5 19-3 3" },
StaticSvgElement::Path { d: "m14 4 6 6" },
];
static TABLE2_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18",
}];
static TABLE_CELLS_MERGE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 21v-6" },
StaticSvgElement::Path { d: "M12 9V3" },
StaticSvgElement::Path { d: "M3 15h18" },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static TABLE_CELLS_SPLIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 15V9" },
StaticSvgElement::Path { d: "M3 15h18" },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
];
static TABLE_COLUMNS_SPLIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 14v2" },
StaticSvgElement::Path { d: "M14 20v2" },
StaticSvgElement::Path { d: "M14 2v2" },
StaticSvgElement::Path { d: "M14 8v2" },
StaticSvgElement::Path { d: "M2 15h8" },
StaticSvgElement::Path { d: "M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2" },
StaticSvgElement::Path { d: "M2 9h8" },
StaticSvgElement::Path { d: "M22 15h-4" },
StaticSvgElement::Path { d: "M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2" },
StaticSvgElement::Path { d: "M22 9h-4" },
StaticSvgElement::Path { d: "M5 3v18" },
];
static TABLE_OF_CONTENTS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 12H3" },
StaticSvgElement::Path { d: "M16 18H3" },
StaticSvgElement::Path { d: "M16 6H3" },
StaticSvgElement::Path { d: "M21 12h.01" },
StaticSvgElement::Path { d: "M21 18h.01" },
StaticSvgElement::Path { d: "M21 6h.01" },
];
static TABLE_PROPERTIES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 3v18" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M21 9H3" },
StaticSvgElement::Path { d: "M21 15H3" },
];
static TABLE_ROWS_SPLIT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 10h2" },
StaticSvgElement::Path { d: "M15 22v-8" },
StaticSvgElement::Path { d: "M15 2v4" },
StaticSvgElement::Path { d: "M2 10h2" },
StaticSvgElement::Path { d: "M20 10h2" },
StaticSvgElement::Path { d: "M3 19h18" },
StaticSvgElement::Path { d: "M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6" },
StaticSvgElement::Path { d: "M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2" },
StaticSvgElement::Path { d: "M8 10h2" },
StaticSvgElement::Path { d: "M9 22v-8" },
StaticSvgElement::Path { d: "M9 2v4" },
];
static TABLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v18" },
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9h18" },
StaticSvgElement::Path { d: "M3 15h18" },
];
static TABLET_SMARTPHONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "8", width: "10", height: "14", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4" },
StaticSvgElement::Path { d: "M8 18h.01" },
];
static TABLET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "2", width: "16", height: "20", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Line { x1: "12", y1: "18", x2: "12.01", y2: "18" },
];
static TABLETS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "7", cy: "7", r: "5" },
StaticSvgElement::Circle { cx: "17", cy: "17", r: "5" },
StaticSvgElement::Path { d: "M12 17h10" },
StaticSvgElement::Path { d: "m3.46 10.54 7.08-7.08" },
];
static TAG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",
},
StaticSvgElement::Circle { cx: "7.5", cy: "7.5", r: ".5" },
];
static TAGS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19" },
StaticSvgElement::Path {
d: "M9.586 5.586A2 2 0 0 0 8.172 5H3a1 1 0 0 0-1 1v5.172a2 2 0 0 0 .586 1.414L8.29 18.29a2.426 2.426 0 0 0 3.42 0l3.58-3.58a2.426 2.426 0 0 0 0-3.42z",
},
StaticSvgElement::Circle { cx: "6.5", cy: "9.5", r: ".5" },
];
static TALLY1_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M4 4v16" }];
static TALLY2_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M4 4v16" }, StaticSvgElement::Path { d: "M9 4v16" }];
static TALLY3_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 4v16" },
StaticSvgElement::Path { d: "M9 4v16" },
StaticSvgElement::Path { d: "M14 4v16" },
];
static TALLY4_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 4v16" },
StaticSvgElement::Path { d: "M9 4v16" },
StaticSvgElement::Path { d: "M14 4v16" },
StaticSvgElement::Path { d: "M19 4v16" },
];
static TALLY5_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M4 4v16" },
StaticSvgElement::Path { d: "M9 4v16" },
StaticSvgElement::Path { d: "M14 4v16" },
StaticSvgElement::Path { d: "M19 4v16" },
StaticSvgElement::Path { d: "M22 6 2 18" },
];
static TANGENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "17", cy: "4", r: "2" },
StaticSvgElement::Path { d: "M15.59 5.41 5.41 15.59" },
StaticSvgElement::Circle { cx: "4", cy: "17", r: "2" },
StaticSvgElement::Path { d: "M12 22s-4-9-1.5-11.5S22 12 22 12" },
];
static TARGET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "6" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static TELESCOPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44",
},
StaticSvgElement::Path { d: "m13.56 11.747 4.332-.924" },
StaticSvgElement::Path { d: "m16 21-3.105-6.21" },
StaticSvgElement::Path {
d: "M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z",
},
StaticSvgElement::Path { d: "m6.158 8.633 1.114 4.456" },
StaticSvgElement::Path { d: "m8 21 3.105-6.21" },
StaticSvgElement::Circle { cx: "12", cy: "13", r: "2" },
];
static TENT_TREE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "4", cy: "4", r: "2" },
StaticSvgElement::Path { d: "m14 5 3-3 3 3" },
StaticSvgElement::Path { d: "m14 10 3-3 3 3" },
StaticSvgElement::Path { d: "M17 14V2" },
StaticSvgElement::Path { d: "M17 14H7l-5 8h20Z" },
StaticSvgElement::Path { d: "M8 14v8" },
StaticSvgElement::Path { d: "m9 14 5 8" },
];
static TENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3.5 21 14 3" },
StaticSvgElement::Path { d: "M20.5 21 10 3" },
StaticSvgElement::Path { d: "M15.5 21 12 15l-3.5 6" },
StaticSvgElement::Path { d: "M2 21h20" },
];
static TERMINAL_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 19h8" }, StaticSvgElement::Path { d: "m4 17 6-6-6-6" }];
static TEST_TUBE_DIAGONAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3" },
StaticSvgElement::Path { d: "m16 2 6 6" },
StaticSvgElement::Path { d: "M12 16H4" },
];
static TEST_TUBE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2" },
StaticSvgElement::Path { d: "M8.5 2h7" },
StaticSvgElement::Path { d: "M14.5 16h-5" },
];
static TEST_TUBES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2" },
StaticSvgElement::Path { d: "M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2" },
StaticSvgElement::Path { d: "M3 2h7" },
StaticSvgElement::Path { d: "M14 2h7" },
StaticSvgElement::Path { d: "M9 16H4" },
StaticSvgElement::Path { d: "M20 16h-5" },
];
static TEXT_CURSOR_INPUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6" },
StaticSvgElement::Path { d: "M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7" },
StaticSvgElement::Path { d: "M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1" },
StaticSvgElement::Path { d: "M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1" },
StaticSvgElement::Path { d: "M9 6v12" },
];
static TEXT_CURSOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1" },
StaticSvgElement::Path { d: "M7 22h1a4 4 0 0 0 4-4v-1" },
StaticSvgElement::Path { d: "M7 2h1a4 4 0 0 1 4 4v1" },
];
static TEXT_QUOTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 6H3" },
StaticSvgElement::Path { d: "M21 12H8" },
StaticSvgElement::Path { d: "M21 18H8" },
StaticSvgElement::Path { d: "M3 12v6" },
];
static TEXT_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 6H3" },
StaticSvgElement::Path { d: "M10 12H3" },
StaticSvgElement::Path { d: "M10 18H3" },
StaticSvgElement::Circle { cx: "17", cy: "15", r: "3" },
StaticSvgElement::Path { d: "m21 19-1.9-1.9" },
];
static TEXT_SELECT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 21h1" },
StaticSvgElement::Path { d: "M14 3h1" },
StaticSvgElement::Path { d: "M19 3a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M21 14v1" },
StaticSvgElement::Path { d: "M21 19a2 2 0 0 1-2 2" },
StaticSvgElement::Path { d: "M21 9v1" },
StaticSvgElement::Path { d: "M3 14v1" },
StaticSvgElement::Path { d: "M3 9v1" },
StaticSvgElement::Path { d: "M5 21a2 2 0 0 1-2-2" },
StaticSvgElement::Path { d: "M5 3a2 2 0 0 0-2 2" },
StaticSvgElement::Path { d: "M7 12h10" },
StaticSvgElement::Path { d: "M7 16h6" },
StaticSvgElement::Path { d: "M7 8h8" },
StaticSvgElement::Path { d: "M9 21h1" },
StaticSvgElement::Path { d: "M9 3h1" },
];
static TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 18H3" },
StaticSvgElement::Path { d: "M17 6H3" },
StaticSvgElement::Path { d: "M21 12H3" },
];
static THEATER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 10s3-3 3-8" },
StaticSvgElement::Path { d: "M22 10s-3-3-3-8" },
StaticSvgElement::Path { d: "M10 2c0 4.4-3.6 8-8 8" },
StaticSvgElement::Path { d: "M14 2c0 4.4 3.6 8 8 8" },
StaticSvgElement::Path { d: "M2 10s2 2 2 5" },
StaticSvgElement::Path { d: "M22 10s-2 2-2 5" },
StaticSvgElement::Path { d: "M8 15h8" },
StaticSvgElement::Path { d: "M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1" },
StaticSvgElement::Path { d: "M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1" },
];
static THERMOMETER_SNOWFLAKE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 20-1.25-2.5L6 18" },
StaticSvgElement::Path { d: "M10 4 8.75 6.5 6 6" },
StaticSvgElement::Path { d: "M10.585 15H10" },
StaticSvgElement::Path { d: "M2 12h6.5L10 9" },
StaticSvgElement::Path { d: "M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z" },
StaticSvgElement::Path { d: "m4 10 1.5 2L4 14" },
StaticSvgElement::Path { d: "m7 21 3-6-1.5-3" },
StaticSvgElement::Path { d: "m7 3 3 6h2" },
];
static THERMOMETER_SUN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 9a4 4 0 0 0-2 7.5" },
StaticSvgElement::Path { d: "M12 3v2" },
StaticSvgElement::Path { d: "m6.6 18.4-1.4 1.4" },
StaticSvgElement::Path { d: "M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z" },
StaticSvgElement::Path { d: "M4 13H2" },
StaticSvgElement::Path { d: "M6.34 7.34 4.93 5.93" },
];
static THERMOMETER_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z" }];
static THUMBS_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 14V2" },
StaticSvgElement::Path {
d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z",
},
];
static THUMBS_UP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 10v12" },
StaticSvgElement::Path {
d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",
},
];
static TICKET_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "m9 12 2 2 4-4" },
];
static TICKET_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "M9 12h6" },
];
static TICKET_PERCENT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "M9 9h.01" },
StaticSvgElement::Path { d: "m15 9-6 6" },
StaticSvgElement::Path { d: "M15 15h.01" },
];
static TICKET_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "M9 12h6" },
StaticSvgElement::Path { d: "M12 9v6" },
];
static TICKET_SLASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "m9.5 14.5 5-5" },
];
static TICKET_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "m9.5 14.5 5-5" },
StaticSvgElement::Path { d: "m9.5 9.5 5 5" },
];
static TICKET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
},
StaticSvgElement::Path { d: "M13 5v2" },
StaticSvgElement::Path { d: "M13 17v2" },
StaticSvgElement::Path { d: "M13 11v2" },
];
static TICKETS_PLANE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12" },
StaticSvgElement::Path { d: "m12 13.5 3.75.5" },
StaticSvgElement::Path { d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8" },
StaticSvgElement::Path { d: "M6 10V8" },
StaticSvgElement::Path { d: "M6 14v1" },
StaticSvgElement::Path { d: "M6 19v2" },
StaticSvgElement::Rect { x: "2", y: "8", width: "20", height: "13", rx: Some("2"), ry: None },
];
static TICKETS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8" },
StaticSvgElement::Path { d: "M6 10V8" },
StaticSvgElement::Path { d: "M6 14v1" },
StaticSvgElement::Path { d: "M6 19v2" },
StaticSvgElement::Rect { x: "2", y: "8", width: "20", height: "13", rx: Some("2"), ry: None },
];
static TIMER_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2h4" },
StaticSvgElement::Path { d: "M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7" },
StaticSvgElement::Path { d: "M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M12 12v-2" },
];
static TIMER_RESET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2h4" },
StaticSvgElement::Path { d: "M12 14v-4" },
StaticSvgElement::Path { d: "M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6" },
StaticSvgElement::Path { d: "M9 17H4v5" },
];
static TIMER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Line { x1: "10", y1: "2", x2: "14", y2: "2" },
StaticSvgElement::Line { x1: "12", y1: "14", x2: "15", y2: "11" },
StaticSvgElement::Circle { cx: "12", cy: "14", r: "8" },
];
static TOGGLE_LEFT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "9", cy: "12", r: "3" },
StaticSvgElement::Rect { x: "2", y: "5", width: "20", height: "14", rx: Some("7"), ry: None },
];
static TOGGLE_RIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "15", cy: "12", r: "3" },
StaticSvgElement::Rect { x: "2", y: "5", width: "20", height: "14", rx: Some("7"), ry: None },
];
static TOILET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18",
},
StaticSvgElement::Path { d: "M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8" },
];
static TOOL_CASE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 15h4" },
StaticSvgElement::Path {
d: "m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27",
},
StaticSvgElement::Path {
d: "m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122",
},
StaticSvgElement::Path { d: "M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z" },
];
static TORNADO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 4H3" },
StaticSvgElement::Path { d: "M18 8H6" },
StaticSvgElement::Path { d: "M19 12H9" },
StaticSvgElement::Path { d: "M16 16h-6" },
StaticSvgElement::Path { d: "M11 20H9" },
];
static TORUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Ellipse { cx: "12", cy: "11", rx: "3", ry: "2" },
StaticSvgElement::Ellipse { cx: "12", cy: "12.5", rx: "10", ry: "8.5" },
];
static TOUCHPAD_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20v-6" },
StaticSvgElement::Path { d: "M19.656 14H22" },
StaticSvgElement::Path { d: "M2 14h12" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path { d: "M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2" },
StaticSvgElement::Path { d: "M9.656 4H20a2 2 0 0 1 2 2v10.344" },
];
static TOUCHPAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 14h20" },
StaticSvgElement::Path { d: "M12 20v-6" },
];
static TOWER_CONTROL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z" },
StaticSvgElement::Path { d: "M8 13v9" },
StaticSvgElement::Path { d: "M16 22v-9" },
StaticSvgElement::Path { d: "m9 6 1 7" },
StaticSvgElement::Path { d: "m15 6-1 7" },
StaticSvgElement::Path { d: "M12 6V2" },
StaticSvgElement::Path { d: "M13 2h-2" },
];
static TOY_BRICK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "8", width: "18", height: "12", rx: Some("1"), ry: None },
StaticSvgElement::Path { d: "M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3" },
StaticSvgElement::Path { d: "M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3" },
];
static TRACTOR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20" },
StaticSvgElement::Path { d: "M16 18h-5" },
StaticSvgElement::Path { d: "M18 5a1 1 0 0 0-1 1v5.573" },
StaticSvgElement::Path { d: "M3 4h8.129a1 1 0 0 1 .99.863L13 11.246" },
StaticSvgElement::Path { d: "M4 11V4" },
StaticSvgElement::Path { d: "M7 15h.01" },
StaticSvgElement::Path { d: "M8 10.1V4" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "2" },
StaticSvgElement::Circle { cx: "7", cy: "15", r: "5" },
];
static TRAFFIC_CONE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16.05 10.966a5 2.5 0 0 1-8.1 0" },
StaticSvgElement::Path {
d: "m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04",
},
StaticSvgElement::Path { d: "M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z" },
StaticSvgElement::Path { d: "M9.194 6.57a5 2.5 0 0 0 5.61 0" },
];
static TRAIN_FRONT_TUNNEL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 22V12a10 10 0 1 1 20 0v10" },
StaticSvgElement::Path { d: "M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8" },
StaticSvgElement::Path { d: "M10 15h.01" },
StaticSvgElement::Path { d: "M14 15h.01" },
StaticSvgElement::Path { d: "M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z" },
StaticSvgElement::Path { d: "m9 19-2 3" },
StaticSvgElement::Path { d: "m15 19 2 3" },
];
static TRAIN_FRONT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 3.1V7a4 4 0 0 0 8 0V3.1" },
StaticSvgElement::Path { d: "m9 15-1-1" },
StaticSvgElement::Path { d: "m15 15 1-1" },
StaticSvgElement::Path { d: "M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z" },
StaticSvgElement::Path { d: "m8 19-2 3" },
StaticSvgElement::Path { d: "m16 19 2 3" },
];
static TRAIN_TRACK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 17 17 2" },
StaticSvgElement::Path { d: "m2 14 8 8" },
StaticSvgElement::Path { d: "m5 11 8 8" },
StaticSvgElement::Path { d: "m8 8 8 8" },
StaticSvgElement::Path { d: "m11 5 8 8" },
StaticSvgElement::Path { d: "m14 2 8 8" },
StaticSvgElement::Path { d: "M7 22 22 7" },
];
static TRAM_FRONT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "4", y: "3", width: "16", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M4 11h16" },
StaticSvgElement::Path { d: "M12 3v8" },
StaticSvgElement::Path { d: "m8 19-2 3" },
StaticSvgElement::Path { d: "m18 22-2-3" },
StaticSvgElement::Path { d: "M8 15h.01" },
StaticSvgElement::Path { d: "M16 15h.01" },
];
static TRANSGENDER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 16v6" },
StaticSvgElement::Path { d: "M14 20h-4" },
StaticSvgElement::Path { d: "M18 2h4v4" },
StaticSvgElement::Path { d: "m2 2 7.17 7.17" },
StaticSvgElement::Path { d: "M2 5.355V2h3.357" },
StaticSvgElement::Path { d: "m22 2-7.17 7.17" },
StaticSvgElement::Path { d: "M8 5 5 8" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "4" },
];
static TRASH2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 11v6" },
StaticSvgElement::Path { d: "M14 11v6" },
StaticSvgElement::Path { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" },
StaticSvgElement::Path { d: "M3 6h18" },
StaticSvgElement::Path { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" },
];
static TRASH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" },
StaticSvgElement::Path { d: "M3 6h18" },
StaticSvgElement::Path { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" },
];
static TREE_DECIDUOUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z",
},
StaticSvgElement::Path { d: "M12 19v3" },
];
static TREE_PALM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4" },
StaticSvgElement::Path { d: "M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3" },
StaticSvgElement::Path {
d: "M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35",
},
StaticSvgElement::Path { d: "M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14" },
];
static TREE_PINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z",
},
StaticSvgElement::Path { d: "M12 22v-3" },
];
static TREES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z" },
StaticSvgElement::Path { d: "M7 16v6" },
StaticSvgElement::Path { d: "M13 19v3" },
StaticSvgElement::Path {
d: "M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5",
},
];
static TRELLO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: Some("2") },
StaticSvgElement::Rect { x: "7", y: "7", width: "3", height: "9", rx: None, ry: None },
StaticSvgElement::Rect { x: "14", y: "7", width: "3", height: "5", rx: None, ry: None },
];
static TRENDING_DOWN_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M16 17h6v-6" }, StaticSvgElement::Path { d: "m22 17-8.5-8.5-5 5L2 7" }];
static TRENDING_UP_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14.828 14.828 21 21" },
StaticSvgElement::Path { d: "M21 16v5h-5" },
StaticSvgElement::Path { d: "m21 3-9 9-4-4-6 6" },
StaticSvgElement::Path { d: "M21 8V3h-5" },
];
static TRENDING_UP_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M16 7h6v6" }, StaticSvgElement::Path { d: "m22 7-8.5 8.5-5-5L2 17" }];
static TRIANGLE_ALERT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" },
StaticSvgElement::Path { d: "M12 9v4" },
StaticSvgElement::Path { d: "M12 17h.01" },
];
static TRIANGLE_DASHED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.17 4.193a2 2 0 0 1 3.666.013" },
StaticSvgElement::Path { d: "M14 21h2" },
StaticSvgElement::Path { d: "m15.874 7.743 1 1.732" },
StaticSvgElement::Path { d: "m18.849 12.952 1 1.732" },
StaticSvgElement::Path { d: "M21.824 18.18a2 2 0 0 1-1.835 2.824" },
StaticSvgElement::Path { d: "M4.024 21a2 2 0 0 1-1.839-2.839" },
StaticSvgElement::Path { d: "m5.136 12.952-1 1.732" },
StaticSvgElement::Path { d: "M8 21h2" },
StaticSvgElement::Path { d: "m8.102 7.743-1 1.732" },
];
static TRIANGLE_RIGHT_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z" }];
static TRIANGLE_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }];
static TROPHY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978" },
StaticSvgElement::Path { d: "M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978" },
StaticSvgElement::Path { d: "M18 9h1.5a1 1 0 0 0 0-5H18" },
StaticSvgElement::Path { d: "M4 22h16" },
StaticSvgElement::Path { d: "M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z" },
StaticSvgElement::Path { d: "M6 9H4.5a1 1 0 0 1 0-5H6" },
];
static TRUCK_ELECTRIC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 19V7a2 2 0 0 0-2-2H9" },
StaticSvgElement::Path { d: "M15 19H9" },
StaticSvgElement::Path { d: "M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14" },
StaticSvgElement::Path { d: "M2 13v5a1 1 0 0 0 1 1h2" },
StaticSvgElement::Path { d: "M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02" },
StaticSvgElement::Circle { cx: "17", cy: "19", r: "2" },
StaticSvgElement::Circle { cx: "7", cy: "19", r: "2" },
];
static TRUCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2" },
StaticSvgElement::Path { d: "M15 18H9" },
StaticSvgElement::Path { d: "M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14" },
StaticSvgElement::Circle { cx: "17", cy: "18", r: "2" },
StaticSvgElement::Circle { cx: "7", cy: "18", r: "2" },
];
static TURKISH_LIRA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 4 5 9" },
StaticSvgElement::Path { d: "m15 8.5-10 5" },
StaticSvgElement::Path { d: "M18 12a9 9 0 0 1-9 9V3" },
];
static TURTLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z",
},
StaticSvgElement::Path { d: "M4.82 7.9 8 10" },
StaticSvgElement::Path { d: "M15.18 7.9 12 10" },
StaticSvgElement::Path { d: "M16.93 10H20a2 2 0 0 1 0 4H2" },
];
static TV_MINIMAL_PLAY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z",
},
StaticSvgElement::Path { d: "M7 21h10" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
];
static TV_MINIMAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M7 21h10" },
StaticSvgElement::Rect { x: "2", y: "3", width: "20", height: "14", rx: Some("2"), ry: None },
];
static TV_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m17 2-5 5-5-5" },
StaticSvgElement::Rect { x: "2", y: "7", width: "20", height: "15", rx: Some("2"), ry: None },
];
static TWITCH_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7" }];
static TWITTER_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z",
}];
static TYPE_OUTLINE_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z",
}];
static TYPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 4v16" },
StaticSvgElement::Path { d: "M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2" },
StaticSvgElement::Path { d: "M9 20h6" },
];
static UMBRELLA_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v1" },
StaticSvgElement::Path { d: "M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575" },
StaticSvgElement::Path { d: "M17.5 12H22A10 10 0 0 0 9.004 3.455" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static UMBRELLA_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M22 12a10.06 10.06 1 0 0-20 0Z" },
StaticSvgElement::Path { d: "M12 12v8a2 2 0 0 0 4 0" },
StaticSvgElement::Path { d: "M12 2v1" },
];
static UNDERLINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M6 4v6a6 6 0 0 0 12 0V4" },
StaticSvgElement::Line { x1: "4", y1: "20", x2: "20", y2: "20" },
];
static UNDO2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M9 14 4 9l5-5" },
StaticSvgElement::Path { d: "M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11" },
];
static UNDO_DOT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 17a9 9 0 0 0-15-6.7L3 13" },
StaticSvgElement::Path { d: "M3 7v6h6" },
StaticSvgElement::Circle { cx: "12", cy: "17", r: "1" },
];
static UNDO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 7v6h6" },
StaticSvgElement::Path { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" },
];
static UNFOLD_HORIZONTAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 12h6" },
StaticSvgElement::Path { d: "M8 12H2" },
StaticSvgElement::Path { d: "M12 2v2" },
StaticSvgElement::Path { d: "M12 8v2" },
StaticSvgElement::Path { d: "M12 14v2" },
StaticSvgElement::Path { d: "M12 20v2" },
StaticSvgElement::Path { d: "m19 15 3-3-3-3" },
StaticSvgElement::Path { d: "m5 9-3 3 3 3" },
];
static UNFOLD_VERTICAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 22v-6" },
StaticSvgElement::Path { d: "M12 8V2" },
StaticSvgElement::Path { d: "M4 12H2" },
StaticSvgElement::Path { d: "M10 12H8" },
StaticSvgElement::Path { d: "M16 12h-2" },
StaticSvgElement::Path { d: "M22 12h-2" },
StaticSvgElement::Path { d: "m15 19-3 3-3-3" },
StaticSvgElement::Path { d: "m15 5-3-3-3 3" },
];
static UNGROUP_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "5", y: "4", width: "8", height: "6", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "11", y: "14", width: "8", height: "6", rx: Some("1"), ry: None },
];
static UNIVERSITY_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M14 21v-3a2 2 0 0 0-4 0v3" },
StaticSvgElement::Path { d: "M18 12h.01" },
StaticSvgElement::Path { d: "M18 16h.01" },
StaticSvgElement::Path {
d: "M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z",
},
StaticSvgElement::Path { d: "M6 12h.01" },
StaticSvgElement::Path { d: "M6 16h.01" },
StaticSvgElement::Circle { cx: "12", cy: "10", r: "2" },
];
static UNLINK2_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2" }];
static UNLINK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",
},
StaticSvgElement::Path { d: "m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71" },
StaticSvgElement::Line { x1: "8", y1: "2", x2: "8", y2: "5" },
StaticSvgElement::Line { x1: "2", y1: "8", x2: "5", y2: "8" },
StaticSvgElement::Line { x1: "16", y1: "19", x2: "16", y2: "22" },
StaticSvgElement::Line { x1: "19", y1: "16", x2: "22", y2: "16" },
];
static UNPLUG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 5 3-3" },
StaticSvgElement::Path { d: "m2 22 3-3" },
StaticSvgElement::Path { d: "M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z" },
StaticSvgElement::Path { d: "M7.5 13.5 10 11" },
StaticSvgElement::Path { d: "M10.5 16.5 13 14" },
StaticSvgElement::Path { d: "m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z" },
];
static UPLOAD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 3v12" },
StaticSvgElement::Path { d: "m17 8-5-5-5 5" },
StaticSvgElement::Path { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" },
];
static USB_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "10", cy: "7", r: "1" },
StaticSvgElement::Circle { cx: "4", cy: "20", r: "1" },
StaticSvgElement::Path { d: "M4.7 19.3 19 5" },
StaticSvgElement::Path { d: "m21 3-3 1 2 2Z" },
StaticSvgElement::Path { d: "M9.26 7.68 5 12l2 5" },
StaticSvgElement::Path { d: "m10 14 5 2 3.5-3.5" },
StaticSvgElement::Path { d: "m18 12 1-1 1 1-1 1Z" },
];
static USER_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 11 2 2 4-4" },
StaticSvgElement::Path { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "9", cy: "7", r: "4" },
];
static USER_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 15H6a4 4 0 0 0-4 4v2" },
StaticSvgElement::Path { d: "m14.305 16.53.923-.382" },
StaticSvgElement::Path { d: "m15.228 13.852-.923-.383" },
StaticSvgElement::Path { d: "m16.852 12.228-.383-.923" },
StaticSvgElement::Path { d: "m16.852 17.772-.383.924" },
StaticSvgElement::Path { d: "m19.148 12.228.383-.923" },
StaticSvgElement::Path { d: "m19.53 18.696-.382-.924" },
StaticSvgElement::Path { d: "m20.772 13.852.924-.383" },
StaticSvgElement::Path { d: "m20.772 16.148.924.383" },
StaticSvgElement::Circle { cx: "18", cy: "15", r: "3" },
StaticSvgElement::Circle { cx: "9", cy: "7", r: "4" },
];
static USER_LOCK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "10", cy: "7", r: "4" },
StaticSvgElement::Path { d: "M10.3 15H7a4 4 0 0 0-4 4v2" },
StaticSvgElement::Path { d: "M15 15.5V14a2 2 0 0 1 4 0v1.5" },
StaticSvgElement::Rect { x: "13", y: "16", width: "8", height: "5", rx: Some(".899"), ry: None },
];
static USER_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "9", cy: "7", r: "4" },
StaticSvgElement::Line { x1: "22", y1: "11", x2: "16", y2: "11" },
];
static USER_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.5 15H7a4 4 0 0 0-4 4v2" },
StaticSvgElement::Path {
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
StaticSvgElement::Circle { cx: "10", cy: "7", r: "4" },
];
static USER_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "9", cy: "7", r: "4" },
StaticSvgElement::Line { x1: "19", y1: "8", x2: "19", y2: "14" },
StaticSvgElement::Line { x1: "22", y1: "11", x2: "16", y2: "11" },
];
static USER_ROUND_CHECK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 13.292-6" },
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Path { d: "m16 19 2 2 4-4" },
];
static USER_ROUND_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.305 19.53.923-.382" },
StaticSvgElement::Path { d: "m15.228 16.852-.923-.383" },
StaticSvgElement::Path { d: "m16.852 15.228-.383-.923" },
StaticSvgElement::Path { d: "m16.852 20.772-.383.924" },
StaticSvgElement::Path { d: "m19.148 15.228.383-.923" },
StaticSvgElement::Path { d: "m19.53 21.696-.382-.924" },
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 10.434-7.62" },
StaticSvgElement::Path { d: "m20.772 16.852.924-.383" },
StaticSvgElement::Path { d: "m20.772 19.148.924.383" },
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static USER_ROUND_MINUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 13.292-6" },
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Path { d: "M22 19h-6" },
];
static USER_ROUND_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 10.821-7.487" },
StaticSvgElement::Path {
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
];
static USER_ROUND_PLUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 13.292-6" },
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Path { d: "M19 16v6" },
StaticSvgElement::Path { d: "M22 19h-6" },
];
static USER_ROUND_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 10.434-7.62" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
StaticSvgElement::Path { d: "m22 22-1.9-1.9" },
];
static USER_ROUND_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 21a8 8 0 0 1 11.873-7" },
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Path { d: "m17 17 5 5" },
StaticSvgElement::Path { d: "m22 17-5 5" },
];
static USER_ROUND_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Circle { cx: "12", cy: "8", r: "5" }, StaticSvgElement::Path { d: "M20 21a8 8 0 0 0-16 0" }];
static USER_SEARCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "10", cy: "7", r: "4" },
StaticSvgElement::Path { d: "M10.3 15H7a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "17", cy: "17", r: "3" },
StaticSvgElement::Path { d: "m21 21-1.9-1.9" },
];
static USER_STAR_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",
},
StaticSvgElement::Path { d: "M8 15H7a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "10", cy: "7", r: "4" },
];
static USER_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "9", cy: "7", r: "4" },
StaticSvgElement::Line { x1: "17", y1: "8", x2: "22", y2: "13" },
StaticSvgElement::Line { x1: "22", y1: "8", x2: "17", y2: "13" },
];
static USER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" },
StaticSvgElement::Circle { cx: "12", cy: "7", r: "4" },
];
static USERS_ROUND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 21a8 8 0 0 0-16 0" },
StaticSvgElement::Circle { cx: "10", cy: "8", r: "5" },
StaticSvgElement::Path { d: "M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3" },
];
static USERS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" },
StaticSvgElement::Path { d: "M16 3.128a4 4 0 0 1 0 7.744" },
StaticSvgElement::Path { d: "M22 21v-2a4 4 0 0 0-3-3.87" },
StaticSvgElement::Circle { cx: "9", cy: "7", r: "4" },
];
static UTENSILS_CROSSED_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8" },
StaticSvgElement::Path { d: "M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7" },
StaticSvgElement::Path { d: "m2.1 21.8 6.4-6.3" },
StaticSvgElement::Path { d: "m19 5-7 7" },
];
static UTENSILS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2" },
StaticSvgElement::Path { d: "M7 2v20" },
StaticSvgElement::Path { d: "M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7" },
];
static UTILITY_POLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 2v20" },
StaticSvgElement::Path { d: "M2 5h20" },
StaticSvgElement::Path { d: "M3 3v2" },
StaticSvgElement::Path { d: "M7 3v2" },
StaticSvgElement::Path { d: "M17 3v2" },
StaticSvgElement::Path { d: "M21 3v2" },
StaticSvgElement::Path { d: "m19 5-7 7-7-7" },
];
static VARIABLE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 21s-4-3-4-9 4-9 4-9" },
StaticSvgElement::Path { d: "M16 3s4 3 4 9-4 9-4 9" },
StaticSvgElement::Line { x1: "15", y1: "9", x2: "9", y2: "15" },
StaticSvgElement::Line { x1: "9", y1: "9", x2: "15", y2: "15" },
];
static VAULT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "7.5", cy: "7.5", r: ".5" },
StaticSvgElement::Path { d: "m7.9 7.9 2.7 2.7" },
StaticSvgElement::Circle { cx: "16.5", cy: "7.5", r: ".5" },
StaticSvgElement::Path { d: "m13.4 10.6 2.7-2.7" },
StaticSvgElement::Circle { cx: "7.5", cy: "16.5", r: ".5" },
StaticSvgElement::Path { d: "m7.9 16.1 2.7-2.7" },
StaticSvgElement::Circle { cx: "16.5", cy: "16.5", r: ".5" },
StaticSvgElement::Path { d: "m13.4 13.4 2.7 2.7" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "2" },
];
static VECTOR_SQUARE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19.5 7a24 24 0 0 1 0 10" },
StaticSvgElement::Path { d: "M4.5 7a24 24 0 0 0 0 10" },
StaticSvgElement::Path { d: "M7 19.5a24 24 0 0 0 10 0" },
StaticSvgElement::Path { d: "M7 4.5a24 24 0 0 1 10 0" },
StaticSvgElement::Rect { x: "17", y: "17", width: "5", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "17", y: "2", width: "5", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "2", y: "17", width: "5", height: "5", rx: Some("1"), ry: None },
StaticSvgElement::Rect { x: "2", y: "2", width: "5", height: "5", rx: Some("1"), ry: None },
];
static VEGAN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 8q6 0 6-6-6 0-6 6" },
StaticSvgElement::Path { d: "M17.41 3.59a10 10 0 1 0 3 3" },
StaticSvgElement::Path { d: "M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14" },
];
static VENETIAN_MASK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 11c-1.5 0-2.5.5-3 2" },
StaticSvgElement::Path {
d: "M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z",
},
StaticSvgElement::Path { d: "M6 11c1.5 0 2.5.5 3 2" },
];
static VENUS_AND_MARS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 20h4" },
StaticSvgElement::Path { d: "M12 16v6" },
StaticSvgElement::Path { d: "M17 2h4v4" },
StaticSvgElement::Path { d: "m21 2-5.46 5.46" },
StaticSvgElement::Circle { cx: "12", cy: "11", r: "5" },
];
static VENUS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 15v7" },
StaticSvgElement::Path { d: "M9 19h6" },
StaticSvgElement::Circle { cx: "12", cy: "9", r: "6" },
];
static VIBRATE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 8 2 2-2 2 2 2-2 2" },
StaticSvgElement::Path { d: "m22 8-2 2 2 2-2 2 2 2" },
StaticSvgElement::Path { d: "M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2" },
StaticSvgElement::Path { d: "M16 10.34V6c0-.55-.45-1-1-1h-4.34" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static VIBRATE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 8 2 2-2 2 2 2-2 2" },
StaticSvgElement::Path { d: "m22 8-2 2 2 2-2 2 2 2" },
StaticSvgElement::Rect { x: "8", y: "5", width: "8", height: "14", rx: Some("1"), ry: None },
];
static VIDEO_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196" },
StaticSvgElement::Path { d: "M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static VIDEO_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5" },
StaticSvgElement::Rect { x: "2", y: "6", width: "14", height: "12", rx: Some("2"), ry: None },
];
static VIDEOTAPE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "2", y: "4", width: "20", height: "16", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M2 8h20" },
StaticSvgElement::Circle { cx: "8", cy: "14", r: "2" },
StaticSvgElement::Path { d: "M8 12h8" },
StaticSvgElement::Circle { cx: "16", cy: "14", r: "2" },
];
static VIEW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2" },
StaticSvgElement::Path { d: "M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "1" },
StaticSvgElement::Path {
d: "M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",
},
];
static VOICEMAIL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "6", cy: "12", r: "4" },
StaticSvgElement::Circle { cx: "18", cy: "12", r: "4" },
StaticSvgElement::Line { x1: "6", y1: "16", x2: "18", y2: "16" },
];
static VOLLEYBALL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.1 7.1a16.55 16.55 0 0 1 10.9 4" },
StaticSvgElement::Path { d: "M12 12a12.6 12.6 0 0 1-8.7 5" },
StaticSvgElement::Path { d: "M16.8 13.6a16.55 16.55 0 0 1-9 7.5" },
StaticSvgElement::Path { d: "M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10" },
StaticSvgElement::Path { d: "M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "10" },
];
static VOLUME1_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
},
StaticSvgElement::Path { d: "M16 9a5 5 0 0 1 0 6" },
];
static VOLUME2_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
},
StaticSvgElement::Path { d: "M16 9a5 5 0 0 1 0 6" },
StaticSvgElement::Path { d: "M19.364 18.364a9 9 0 0 0 0-12.728" },
];
static VOLUME_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M16 9a5 5 0 0 1 .95 2.293" },
StaticSvgElement::Path { d: "M19.364 5.636a9 9 0 0 1 1.889 9.96" },
StaticSvgElement::Path { d: "m2 2 20 20" },
StaticSvgElement::Path {
d: "m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11",
},
StaticSvgElement::Path { d: "M9.828 4.172A.686.686 0 0 1 11 4.657v.686" },
];
static VOLUME_X_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
},
StaticSvgElement::Line { x1: "22", y1: "9", x2: "16", y2: "15" },
StaticSvgElement::Line { x1: "16", y1: "9", x2: "22", y2: "15" },
];
static VOLUME_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",
}];
static VOTE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m9 12 2 2 4-4" },
StaticSvgElement::Path { d: "M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z" },
StaticSvgElement::Path { d: "M22 19H2" },
];
static WALLET_CARDS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "18", height: "18", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2" },
StaticSvgElement::Path { d: "M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21" },
];
static WALLET_MINIMAL_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 14h.01" },
StaticSvgElement::Path { d: "M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14" },
];
static WALLET_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",
},
StaticSvgElement::Path { d: "M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4" },
];
static WALLPAPER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "8", cy: "9", r: "2" },
StaticSvgElement::Path {
d: "m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2",
},
StaticSvgElement::Path { d: "M8 21h8" },
StaticSvgElement::Path { d: "M12 17v4" },
];
static WAND_SPARKLES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",
},
StaticSvgElement::Path { d: "m14 7 3 3" },
StaticSvgElement::Path { d: "M5 6v4" },
StaticSvgElement::Path { d: "M19 14v4" },
StaticSvgElement::Path { d: "M10 2v2" },
StaticSvgElement::Path { d: "M7 8H3" },
StaticSvgElement::Path { d: "M21 16h-4" },
StaticSvgElement::Path { d: "M11 3H9" },
];
static WAND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M15 4V2" },
StaticSvgElement::Path { d: "M15 16v-2" },
StaticSvgElement::Path { d: "M8 9h2" },
StaticSvgElement::Path { d: "M20 9h2" },
StaticSvgElement::Path { d: "M17.8 11.8 19 13" },
StaticSvgElement::Path { d: "M15 9h.01" },
StaticSvgElement::Path { d: "M17.8 6.2 19 5" },
StaticSvgElement::Path { d: "m3 21 9-9" },
StaticSvgElement::Path { d: "M12.2 6.2 11 5" },
];
static WAREHOUSE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11" },
StaticSvgElement::Path {
d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z",
},
StaticSvgElement::Path { d: "M6 13h12" },
StaticSvgElement::Path { d: "M6 17h12" },
];
static WASHING_MACHINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M3 6h3" },
StaticSvgElement::Path { d: "M17 6h.01" },
StaticSvgElement::Rect { x: "3", y: "2", width: "18", height: "20", rx: Some("2"), ry: None },
StaticSvgElement::Circle { cx: "12", cy: "13", r: "5" },
StaticSvgElement::Path { d: "M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5" },
];
static WATCH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 10v2.2l1.6 1" },
StaticSvgElement::Path { d: "m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05" },
StaticSvgElement::Path { d: "m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05" },
StaticSvgElement::Circle { cx: "12", cy: "12", r: "6" },
];
static WAVES_LADDER_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M19 5a2 2 0 0 0-2 2v11" },
StaticSvgElement::Path {
d: "M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
},
StaticSvgElement::Path { d: "M7 13h10" },
StaticSvgElement::Path { d: "M7 9h10" },
StaticSvgElement::Path { d: "M9 5a2 2 0 0 0-2 2v11" },
];
static WAVES_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
},
StaticSvgElement::Path {
d: "M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
},
StaticSvgElement::Path {
d: "M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",
},
];
static WAYPOINTS_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "4.5", r: "2.5" },
StaticSvgElement::Path { d: "m10.2 6.3-3.9 3.9" },
StaticSvgElement::Circle { cx: "4.5", cy: "12", r: "2.5" },
StaticSvgElement::Path { d: "M7 12h10" },
StaticSvgElement::Circle { cx: "19.5", cy: "12", r: "2.5" },
StaticSvgElement::Path { d: "m13.8 17.7 3.9-3.9" },
StaticSvgElement::Circle { cx: "12", cy: "19.5", r: "2.5" },
];
static WEBCAM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "10", r: "8" },
StaticSvgElement::Circle { cx: "12", cy: "10", r: "3" },
StaticSvgElement::Path { d: "M7 22h10" },
StaticSvgElement::Path { d: "M12 22v-4" },
];
static WEBHOOK_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15" },
StaticSvgElement::Path { d: "M9 3.4a4 4 0 0 1 6.52.66" },
StaticSvgElement::Path { d: "m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05" },
StaticSvgElement::Path { d: "M20.3 20.3a4 4 0 0 1-2.3.7" },
StaticSvgElement::Path { d: "M18.6 13a4 4 0 0 1 3.357 3.414" },
StaticSvgElement::Path { d: "m12 6 .6 1" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static WEBHOOK_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2" },
StaticSvgElement::Path { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" },
StaticSvgElement::Path { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" },
];
static WEIGHT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "12", cy: "5", r: "3" },
StaticSvgElement::Path {
d: "M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z",
},
];
static WHEAT_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m2 22 10-10" },
StaticSvgElement::Path { d: "m16 8-1.17 1.17" },
StaticSvgElement::Path {
d: "M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
},
StaticSvgElement::Path { d: "m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97" },
StaticSvgElement::Path { d: "M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62" },
StaticSvgElement::Path { d: "M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z" },
StaticSvgElement::Path {
d: "M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
},
StaticSvgElement::Path { d: "m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98" },
StaticSvgElement::Path { d: "M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28" },
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static WHEAT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 22 16 8" },
StaticSvgElement::Path {
d: "M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
},
StaticSvgElement::Path { d: "M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z" },
StaticSvgElement::Path {
d: "M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",
},
StaticSvgElement::Path { d: "M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z" },
StaticSvgElement::Path {
d: "M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
},
StaticSvgElement::Path {
d: "M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
},
StaticSvgElement::Path {
d: "M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",
},
];
static WHOLE_WORD_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "7", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M10 9v6" },
StaticSvgElement::Circle { cx: "17", cy: "12", r: "3" },
StaticSvgElement::Path { d: "M14 7v8" },
StaticSvgElement::Path { d: "M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1" },
];
static WIFI_COG_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m14.305 19.53.923-.382" },
StaticSvgElement::Path { d: "m15.228 16.852-.923-.383" },
StaticSvgElement::Path { d: "m16.852 15.228-.383-.923" },
StaticSvgElement::Path { d: "m16.852 20.772-.383.924" },
StaticSvgElement::Path { d: "m19.148 15.228.383-.923" },
StaticSvgElement::Path { d: "m19.53 21.696-.382-.924" },
StaticSvgElement::Path { d: "M2 7.82a15 15 0 0 1 20 0" },
StaticSvgElement::Path { d: "m20.772 16.852.924-.383" },
StaticSvgElement::Path { d: "m20.772 19.148.924.383" },
StaticSvgElement::Path { d: "M5 11.858a10 10 0 0 1 11.5-1.785" },
StaticSvgElement::Path { d: "M8.5 15.429a5 5 0 0 1 2.413-1.31" },
StaticSvgElement::Circle { cx: "18", cy: "18", r: "3" },
];
static WIFI_HIGH_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20h.01" },
StaticSvgElement::Path { d: "M5 12.859a10 10 0 0 1 14 0" },
StaticSvgElement::Path { d: "M8.5 16.429a5 5 0 0 1 7 0" },
];
static WIFI_LOW_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M12 20h.01" }, StaticSvgElement::Path { d: "M8.5 16.429a5 5 0 0 1 7 0" }];
static WIFI_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20h.01" },
StaticSvgElement::Path { d: "M8.5 16.429a5 5 0 0 1 7 0" },
StaticSvgElement::Path { d: "M5 12.859a10 10 0 0 1 5.17-2.69" },
StaticSvgElement::Path { d: "M19 12.859a10 10 0 0 0-2.007-1.523" },
StaticSvgElement::Path { d: "M2 8.82a15 15 0 0 1 4.177-2.643" },
StaticSvgElement::Path { d: "M22 8.82a15 15 0 0 0-11.288-3.764" },
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static WIFI_PEN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M2 8.82a15 15 0 0 1 20 0" },
StaticSvgElement::Path {
d: "M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",
},
StaticSvgElement::Path { d: "M5 12.859a10 10 0 0 1 10.5-2.222" },
StaticSvgElement::Path { d: "M8.5 16.429a5 5 0 0 1 3-1.406" },
];
static WIFI_SYNC_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5" },
StaticSvgElement::Path { d: "M11.965 14.105h4" },
StaticSvgElement::Path { d: "M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5" },
StaticSvgElement::Path { d: "M2 8.82a15 15 0 0 1 20 0" },
StaticSvgElement::Path { d: "M21.965 22.105v-4" },
StaticSvgElement::Path { d: "M5 12.86a10 10 0 0 1 3-2.032" },
StaticSvgElement::Path { d: "M8.5 16.429h.01" },
];
static WIFI_ZERO_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path { d: "M12 20h.01" }];
static WIFI_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12 20h.01" },
StaticSvgElement::Path { d: "M2 8.82a15 15 0 0 1 20 0" },
StaticSvgElement::Path { d: "M5 12.859a10 10 0 0 1 14 0" },
StaticSvgElement::Path { d: "M8.5 16.429a5 5 0 0 1 7 0" },
];
static WIND_ARROW_DOWN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10 2v8" },
StaticSvgElement::Path { d: "M12.8 21.6A2 2 0 1 0 14 18H2" },
StaticSvgElement::Path { d: "M17.5 10a2.5 2.5 0 1 1 2 4H2" },
StaticSvgElement::Path { d: "m6 6 4 4 4-4" },
];
static WIND_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M12.8 19.6A2 2 0 1 0 14 16H2" },
StaticSvgElement::Path { d: "M17.5 8a2.5 2.5 0 1 1 2 4H2" },
StaticSvgElement::Path { d: "M9.8 4.4A2 2 0 1 1 11 8H2" },
];
static WINE_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 22h8" },
StaticSvgElement::Path { d: "M7 10h3m7 0h-1.343" },
StaticSvgElement::Path { d: "M12 15v7" },
StaticSvgElement::Path {
d: "M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198",
},
StaticSvgElement::Line { x1: "2", y1: "2", x2: "22", y2: "22" },
];
static WINE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M8 22h8" },
StaticSvgElement::Path { d: "M7 10h10" },
StaticSvgElement::Path { d: "M12 15v7" },
StaticSvgElement::Path { d: "M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z" },
];
static WORKFLOW_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Rect { x: "3", y: "3", width: "8", height: "8", rx: Some("2"), ry: None },
StaticSvgElement::Path { d: "M7 11v4a2 2 0 0 0 2 2h4" },
StaticSvgElement::Rect { x: "13", y: "13", width: "8", height: "8", rx: Some("2"), ry: None },
];
static WORM_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m19 12-1.5 3" },
StaticSvgElement::Path { d: "M19.63 18.81 22 20" },
StaticSvgElement::Path {
d: "M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z",
},
];
static WRAP_TEXT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "m16 16-2 2 2 2" },
StaticSvgElement::Path { d: "M3 12h15a3 3 0 1 1 0 6h-4" },
StaticSvgElement::Path { d: "M3 18h7" },
StaticSvgElement::Path { d: "M3 6h18" },
];
static WRENCH_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z",
}];
static X_ELEMENTS: &[StaticSvgElement] =
&[StaticSvgElement::Path { d: "M18 6 6 18" }, StaticSvgElement::Path { d: "m6 6 12 12" }];
static YOUTUBE_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path {
d: "M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17",
},
StaticSvgElement::Path { d: "m10 15 5-3-5-3z" },
];
static ZAP_OFF_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Path { d: "M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317" },
StaticSvgElement::Path { d: "M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773" },
StaticSvgElement::Path {
d: "M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643",
},
StaticSvgElement::Path { d: "m2 2 20 20" },
];
static ZAP_ELEMENTS: &[StaticSvgElement] = &[StaticSvgElement::Path {
d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",
}];
static ZOOM_IN_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
StaticSvgElement::Line { x1: "21", y1: "21", x2: "16.65", y2: "16.65" },
StaticSvgElement::Line { x1: "11", y1: "8", x2: "11", y2: "14" },
StaticSvgElement::Line { x1: "8", y1: "11", x2: "14", y2: "11" },
];
static ZOOM_OUT_ELEMENTS: &[StaticSvgElement] = &[
StaticSvgElement::Circle { cx: "11", cy: "11", r: "8" },
StaticSvgElement::Line { x1: "21", y1: "21", x2: "16.65", y2: "16.65" },
StaticSvgElement::Line { x1: "8", y1: "11", x2: "14", y2: "11" },
];
/// Centralized registry containing all icon SVG data
static ICON_REGISTRY: OnceLock<HashMap<IconType, &'static [StaticSvgElement]>> = OnceLock::new();
fn get_registry() -> &'static HashMap<IconType, &'static [StaticSvgElement]> {
ICON_REGISTRY.get_or_init(|| {
let mut registry = HashMap::new();
registry.insert(IconType::AArrowDown, A_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::AArrowUp, A_ARROW_UP_ELEMENTS);
registry.insert(IconType::ALargeSmall, A_LARGE_SMALL_ELEMENTS);
registry.insert(IconType::Accessibility, ACCESSIBILITY_ELEMENTS);
registry.insert(IconType::Activity, ACTIVITY_ELEMENTS);
registry.insert(IconType::AirVent, AIR_VENT_ELEMENTS);
registry.insert(IconType::Airplay, AIRPLAY_ELEMENTS);
registry.insert(IconType::AlarmClockCheck, ALARM_CLOCK_CHECK_ELEMENTS);
registry.insert(IconType::AlarmClockMinus, ALARM_CLOCK_MINUS_ELEMENTS);
registry.insert(IconType::AlarmClockOff, ALARM_CLOCK_OFF_ELEMENTS);
registry.insert(IconType::AlarmClockPlus, ALARM_CLOCK_PLUS_ELEMENTS);
registry.insert(IconType::AlarmClock, ALARM_CLOCK_ELEMENTS);
registry.insert(IconType::AlarmSmoke, ALARM_SMOKE_ELEMENTS);
registry.insert(IconType::Album, ALBUM_ELEMENTS);
registry.insert(IconType::AlignCenterHorizontal, ALIGN_CENTER_HORIZONTAL_ELEMENTS);
registry.insert(IconType::AlignCenterVertical, ALIGN_CENTER_VERTICAL_ELEMENTS);
registry.insert(IconType::AlignCenter, ALIGN_CENTER_ELEMENTS);
registry.insert(IconType::AlignEndHorizontal, ALIGN_END_HORIZONTAL_ELEMENTS);
registry.insert(IconType::AlignEndVertical, ALIGN_END_VERTICAL_ELEMENTS);
registry.insert(IconType::AlignHorizontalDistributeCenter, ALIGN_HORIZONTAL_DISTRIBUTE_CENTER_ELEMENTS);
registry.insert(IconType::AlignHorizontalDistributeEnd, ALIGN_HORIZONTAL_DISTRIBUTE_END_ELEMENTS);
registry.insert(IconType::AlignHorizontalDistributeStart, ALIGN_HORIZONTAL_DISTRIBUTE_START_ELEMENTS);
registry.insert(IconType::AlignHorizontalJustifyCenter, ALIGN_HORIZONTAL_JUSTIFY_CENTER_ELEMENTS);
registry.insert(IconType::AlignHorizontalJustifyEnd, ALIGN_HORIZONTAL_JUSTIFY_END_ELEMENTS);
registry.insert(IconType::AlignHorizontalJustifyStart, ALIGN_HORIZONTAL_JUSTIFY_START_ELEMENTS);
registry.insert(IconType::AlignHorizontalSpaceAround, ALIGN_HORIZONTAL_SPACE_AROUND_ELEMENTS);
registry.insert(IconType::AlignHorizontalSpaceBetween, ALIGN_HORIZONTAL_SPACE_BETWEEN_ELEMENTS);
registry.insert(IconType::AlignJustify, ALIGN_JUSTIFY_ELEMENTS);
registry.insert(IconType::AlignLeft, ALIGN_LEFT_ELEMENTS);
registry.insert(IconType::AlignRight, ALIGN_RIGHT_ELEMENTS);
registry.insert(IconType::AlignStartHorizontal, ALIGN_START_HORIZONTAL_ELEMENTS);
registry.insert(IconType::AlignStartVertical, ALIGN_START_VERTICAL_ELEMENTS);
registry.insert(IconType::AlignVerticalDistributeCenter, ALIGN_VERTICAL_DISTRIBUTE_CENTER_ELEMENTS);
registry.insert(IconType::AlignVerticalDistributeEnd, ALIGN_VERTICAL_DISTRIBUTE_END_ELEMENTS);
registry.insert(IconType::AlignVerticalDistributeStart, ALIGN_VERTICAL_DISTRIBUTE_START_ELEMENTS);
registry.insert(IconType::AlignVerticalJustifyCenter, ALIGN_VERTICAL_JUSTIFY_CENTER_ELEMENTS);
registry.insert(IconType::AlignVerticalJustifyEnd, ALIGN_VERTICAL_JUSTIFY_END_ELEMENTS);
registry.insert(IconType::AlignVerticalJustifyStart, ALIGN_VERTICAL_JUSTIFY_START_ELEMENTS);
registry.insert(IconType::AlignVerticalSpaceAround, ALIGN_VERTICAL_SPACE_AROUND_ELEMENTS);
registry.insert(IconType::AlignVerticalSpaceBetween, ALIGN_VERTICAL_SPACE_BETWEEN_ELEMENTS);
registry.insert(IconType::Ambulance, AMBULANCE_ELEMENTS);
registry.insert(IconType::Ampersand, AMPERSAND_ELEMENTS);
registry.insert(IconType::Ampersands, AMPERSANDS_ELEMENTS);
registry.insert(IconType::Amphora, AMPHORA_ELEMENTS);
registry.insert(IconType::Anchor, ANCHOR_ELEMENTS);
registry.insert(IconType::Angry, ANGRY_ELEMENTS);
registry.insert(IconType::Annoyed, ANNOYED_ELEMENTS);
registry.insert(IconType::Antenna, ANTENNA_ELEMENTS);
registry.insert(IconType::Anvil, ANVIL_ELEMENTS);
registry.insert(IconType::Aperture, APERTURE_ELEMENTS);
registry.insert(IconType::AppWindowMac, APP_WINDOW_MAC_ELEMENTS);
registry.insert(IconType::AppWindow, APP_WINDOW_ELEMENTS);
registry.insert(IconType::Apple, APPLE_ELEMENTS);
registry.insert(IconType::ArchiveRestore, ARCHIVE_RESTORE_ELEMENTS);
registry.insert(IconType::ArchiveX, ARCHIVE_X_ELEMENTS);
registry.insert(IconType::Archive, ARCHIVE_ELEMENTS);
registry.insert(IconType::Armchair, ARMCHAIR_ELEMENTS);
registry.insert(IconType::ArrowBigDownDash, ARROW_BIG_DOWN_DASH_ELEMENTS);
registry.insert(IconType::ArrowBigDown, ARROW_BIG_DOWN_ELEMENTS);
registry.insert(IconType::ArrowBigLeftDash, ARROW_BIG_LEFT_DASH_ELEMENTS);
registry.insert(IconType::ArrowBigLeft, ARROW_BIG_LEFT_ELEMENTS);
registry.insert(IconType::ArrowBigRightDash, ARROW_BIG_RIGHT_DASH_ELEMENTS);
registry.insert(IconType::ArrowBigRight, ARROW_BIG_RIGHT_ELEMENTS);
registry.insert(IconType::ArrowBigUpDash, ARROW_BIG_UP_DASH_ELEMENTS);
registry.insert(IconType::ArrowBigUp, ARROW_BIG_UP_ELEMENTS);
registry.insert(IconType::ArrowDown01, ARROW_DOWN01_ELEMENTS);
registry.insert(IconType::ArrowDown10, ARROW_DOWN10_ELEMENTS);
registry.insert(IconType::ArrowDownAZ, ARROW_DOWN_A_Z_ELEMENTS);
registry.insert(IconType::ArrowDownFromLine, ARROW_DOWN_FROM_LINE_ELEMENTS);
registry.insert(IconType::ArrowDownLeft, ARROW_DOWN_LEFT_ELEMENTS);
registry.insert(IconType::ArrowDownNarrowWide, ARROW_DOWN_NARROW_WIDE_ELEMENTS);
registry.insert(IconType::ArrowDownRight, ARROW_DOWN_RIGHT_ELEMENTS);
registry.insert(IconType::ArrowDownToDot, ARROW_DOWN_TO_DOT_ELEMENTS);
registry.insert(IconType::ArrowDownToLine, ARROW_DOWN_TO_LINE_ELEMENTS);
registry.insert(IconType::ArrowDownUp, ARROW_DOWN_UP_ELEMENTS);
registry.insert(IconType::ArrowDownWideNarrow, ARROW_DOWN_WIDE_NARROW_ELEMENTS);
registry.insert(IconType::ArrowDownZA, ARROW_DOWN_Z_A_ELEMENTS);
registry.insert(IconType::ArrowDown, ARROW_DOWN_ELEMENTS);
registry.insert(IconType::ArrowLeftFromLine, ARROW_LEFT_FROM_LINE_ELEMENTS);
registry.insert(IconType::ArrowLeftRight, ARROW_LEFT_RIGHT_ELEMENTS);
registry.insert(IconType::ArrowLeftToLine, ARROW_LEFT_TO_LINE_ELEMENTS);
registry.insert(IconType::ArrowLeft, ARROW_LEFT_ELEMENTS);
registry.insert(IconType::ArrowRightFromLine, ARROW_RIGHT_FROM_LINE_ELEMENTS);
registry.insert(IconType::ArrowRightLeft, ARROW_RIGHT_LEFT_ELEMENTS);
registry.insert(IconType::ArrowRightToLine, ARROW_RIGHT_TO_LINE_ELEMENTS);
registry.insert(IconType::ArrowRight, ARROW_RIGHT_ELEMENTS);
registry.insert(IconType::ArrowUp01, ARROW_UP01_ELEMENTS);
registry.insert(IconType::ArrowUp10, ARROW_UP10_ELEMENTS);
registry.insert(IconType::ArrowUpAZ, ARROW_UP_A_Z_ELEMENTS);
registry.insert(IconType::ArrowUpDown, ARROW_UP_DOWN_ELEMENTS);
registry.insert(IconType::ArrowUpFromDot, ARROW_UP_FROM_DOT_ELEMENTS);
registry.insert(IconType::ArrowUpFromLine, ARROW_UP_FROM_LINE_ELEMENTS);
registry.insert(IconType::ArrowUpLeft, ARROW_UP_LEFT_ELEMENTS);
registry.insert(IconType::ArrowUpNarrowWide, ARROW_UP_NARROW_WIDE_ELEMENTS);
registry.insert(IconType::ArrowUpRight, ARROW_UP_RIGHT_ELEMENTS);
registry.insert(IconType::ArrowUpToLine, ARROW_UP_TO_LINE_ELEMENTS);
registry.insert(IconType::ArrowUpWideNarrow, ARROW_UP_WIDE_NARROW_ELEMENTS);
registry.insert(IconType::ArrowUpZA, ARROW_UP_Z_A_ELEMENTS);
registry.insert(IconType::ArrowUp, ARROW_UP_ELEMENTS);
registry.insert(IconType::ArrowsUpFromLine, ARROWS_UP_FROM_LINE_ELEMENTS);
registry.insert(IconType::Asterisk, ASTERISK_ELEMENTS);
registry.insert(IconType::AtSign, AT_SIGN_ELEMENTS);
registry.insert(IconType::Atom, ATOM_ELEMENTS);
registry.insert(IconType::AudioLines, AUDIO_LINES_ELEMENTS);
registry.insert(IconType::AudioWaveform, AUDIO_WAVEFORM_ELEMENTS);
registry.insert(IconType::Award, AWARD_ELEMENTS);
registry.insert(IconType::Axe, AXE_ELEMENTS);
registry.insert(IconType::Axis3D, AXIS3_D_ELEMENTS);
registry.insert(IconType::Baby, BABY_ELEMENTS);
registry.insert(IconType::Backpack, BACKPACK_ELEMENTS);
registry.insert(IconType::BadgeAlert, BADGE_ALERT_ELEMENTS);
registry.insert(IconType::BadgeCent, BADGE_CENT_ELEMENTS);
registry.insert(IconType::BadgeCheck, BADGE_CHECK_ELEMENTS);
registry.insert(IconType::BadgeDollarSign, BADGE_DOLLAR_SIGN_ELEMENTS);
registry.insert(IconType::BadgeEuro, BADGE_EURO_ELEMENTS);
registry.insert(IconType::BadgeHelp, BADGE_HELP_ELEMENTS);
registry.insert(IconType::BadgeIndianRupee, BADGE_INDIAN_RUPEE_ELEMENTS);
registry.insert(IconType::BadgeInfo, BADGE_INFO_ELEMENTS);
registry.insert(IconType::BadgeJapaneseYen, BADGE_JAPANESE_YEN_ELEMENTS);
registry.insert(IconType::BadgeMinus, BADGE_MINUS_ELEMENTS);
registry.insert(IconType::BadgePercent, BADGE_PERCENT_ELEMENTS);
registry.insert(IconType::BadgePlus, BADGE_PLUS_ELEMENTS);
registry.insert(IconType::BadgePoundSterling, BADGE_POUND_STERLING_ELEMENTS);
registry.insert(IconType::BadgeQuestionMark, BADGE_QUESTION_MARK_ELEMENTS);
registry.insert(IconType::BadgeRussianRuble, BADGE_RUSSIAN_RUBLE_ELEMENTS);
registry.insert(IconType::BadgeSwissFranc, BADGE_SWISS_FRANC_ELEMENTS);
registry.insert(IconType::BadgeTurkishLira, BADGE_TURKISH_LIRA_ELEMENTS);
registry.insert(IconType::BadgeX, BADGE_X_ELEMENTS);
registry.insert(IconType::Badge, BADGE_ELEMENTS);
registry.insert(IconType::BaggageClaim, BAGGAGE_CLAIM_ELEMENTS);
registry.insert(IconType::Ban, BAN_ELEMENTS);
registry.insert(IconType::Banana, BANANA_ELEMENTS);
registry.insert(IconType::Bandage, BANDAGE_ELEMENTS);
registry.insert(IconType::BanknoteArrowDown, BANKNOTE_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::BanknoteArrowUp, BANKNOTE_ARROW_UP_ELEMENTS);
registry.insert(IconType::BanknoteX, BANKNOTE_X_ELEMENTS);
registry.insert(IconType::Banknote, BANKNOTE_ELEMENTS);
registry.insert(IconType::Barcode, BARCODE_ELEMENTS);
registry.insert(IconType::Barrel, BARREL_ELEMENTS);
registry.insert(IconType::Baseline, BASELINE_ELEMENTS);
registry.insert(IconType::Bath, BATH_ELEMENTS);
registry.insert(IconType::BatteryCharging, BATTERY_CHARGING_ELEMENTS);
registry.insert(IconType::BatteryFull, BATTERY_FULL_ELEMENTS);
registry.insert(IconType::BatteryLow, BATTERY_LOW_ELEMENTS);
registry.insert(IconType::BatteryMedium, BATTERY_MEDIUM_ELEMENTS);
registry.insert(IconType::BatteryPlus, BATTERY_PLUS_ELEMENTS);
registry.insert(IconType::BatteryWarning, BATTERY_WARNING_ELEMENTS);
registry.insert(IconType::Battery, BATTERY_ELEMENTS);
registry.insert(IconType::Beaker, BEAKER_ELEMENTS);
registry.insert(IconType::BeanOff, BEAN_OFF_ELEMENTS);
registry.insert(IconType::Bean, BEAN_ELEMENTS);
registry.insert(IconType::BedDouble, BED_DOUBLE_ELEMENTS);
registry.insert(IconType::BedSingle, BED_SINGLE_ELEMENTS);
registry.insert(IconType::Bed, BED_ELEMENTS);
registry.insert(IconType::Beef, BEEF_ELEMENTS);
registry.insert(IconType::BeerOff, BEER_OFF_ELEMENTS);
registry.insert(IconType::Beer, BEER_ELEMENTS);
registry.insert(IconType::BellDot, BELL_DOT_ELEMENTS);
registry.insert(IconType::BellElectric, BELL_ELECTRIC_ELEMENTS);
registry.insert(IconType::BellMinus, BELL_MINUS_ELEMENTS);
registry.insert(IconType::BellOff, BELL_OFF_ELEMENTS);
registry.insert(IconType::BellPlus, BELL_PLUS_ELEMENTS);
registry.insert(IconType::BellRing, BELL_RING_ELEMENTS);
registry.insert(IconType::Bell, BELL_ELEMENTS);
registry.insert(IconType::BetweenHorizontalEnd, BETWEEN_HORIZONTAL_END_ELEMENTS);
registry.insert(IconType::BetweenHorizontalStart, BETWEEN_HORIZONTAL_START_ELEMENTS);
registry.insert(IconType::BetweenVerticalEnd, BETWEEN_VERTICAL_END_ELEMENTS);
registry.insert(IconType::BetweenVerticalStart, BETWEEN_VERTICAL_START_ELEMENTS);
registry.insert(IconType::BicepsFlexed, BICEPS_FLEXED_ELEMENTS);
registry.insert(IconType::Bike, BIKE_ELEMENTS);
registry.insert(IconType::Binary, BINARY_ELEMENTS);
registry.insert(IconType::Binoculars, BINOCULARS_ELEMENTS);
registry.insert(IconType::Biohazard, BIOHAZARD_ELEMENTS);
registry.insert(IconType::Bird, BIRD_ELEMENTS);
registry.insert(IconType::Bitcoin, BITCOIN_ELEMENTS);
registry.insert(IconType::Blend, BLEND_ELEMENTS);
registry.insert(IconType::Blinds, BLINDS_ELEMENTS);
registry.insert(IconType::Blocks, BLOCKS_ELEMENTS);
registry.insert(IconType::BluetoothConnected, BLUETOOTH_CONNECTED_ELEMENTS);
registry.insert(IconType::BluetoothOff, BLUETOOTH_OFF_ELEMENTS);
registry.insert(IconType::BluetoothSearching, BLUETOOTH_SEARCHING_ELEMENTS);
registry.insert(IconType::Bluetooth, BLUETOOTH_ELEMENTS);
registry.insert(IconType::Bold, BOLD_ELEMENTS);
registry.insert(IconType::Bolt, BOLT_ELEMENTS);
registry.insert(IconType::Bomb, BOMB_ELEMENTS);
registry.insert(IconType::Bone, BONE_ELEMENTS);
registry.insert(IconType::BookA, BOOK_A_ELEMENTS);
registry.insert(IconType::BookAlert, BOOK_ALERT_ELEMENTS);
registry.insert(IconType::BookAudio, BOOK_AUDIO_ELEMENTS);
registry.insert(IconType::BookCheck, BOOK_CHECK_ELEMENTS);
registry.insert(IconType::BookCopy, BOOK_COPY_ELEMENTS);
registry.insert(IconType::BookDashed, BOOK_DASHED_ELEMENTS);
registry.insert(IconType::BookDown, BOOK_DOWN_ELEMENTS);
registry.insert(IconType::BookHeadphones, BOOK_HEADPHONES_ELEMENTS);
registry.insert(IconType::BookHeart, BOOK_HEART_ELEMENTS);
registry.insert(IconType::BookImage, BOOK_IMAGE_ELEMENTS);
registry.insert(IconType::BookKey, BOOK_KEY_ELEMENTS);
registry.insert(IconType::BookLock, BOOK_LOCK_ELEMENTS);
registry.insert(IconType::BookMarked, BOOK_MARKED_ELEMENTS);
registry.insert(IconType::BookMinus, BOOK_MINUS_ELEMENTS);
registry.insert(IconType::BookOpenCheck, BOOK_OPEN_CHECK_ELEMENTS);
registry.insert(IconType::BookOpenText, BOOK_OPEN_TEXT_ELEMENTS);
registry.insert(IconType::BookOpen, BOOK_OPEN_ELEMENTS);
registry.insert(IconType::BookPlus, BOOK_PLUS_ELEMENTS);
registry.insert(IconType::BookText, BOOK_TEXT_ELEMENTS);
registry.insert(IconType::BookType, BOOK_TYPE_ELEMENTS);
registry.insert(IconType::BookUp2, BOOK_UP2_ELEMENTS);
registry.insert(IconType::BookUp, BOOK_UP_ELEMENTS);
registry.insert(IconType::BookUser, BOOK_USER_ELEMENTS);
registry.insert(IconType::BookX, BOOK_X_ELEMENTS);
registry.insert(IconType::Book, BOOK_ELEMENTS);
registry.insert(IconType::BookmarkCheck, BOOKMARK_CHECK_ELEMENTS);
registry.insert(IconType::BookmarkMinus, BOOKMARK_MINUS_ELEMENTS);
registry.insert(IconType::BookmarkPlus, BOOKMARK_PLUS_ELEMENTS);
registry.insert(IconType::BookmarkX, BOOKMARK_X_ELEMENTS);
registry.insert(IconType::Bookmark, BOOKMARK_ELEMENTS);
registry.insert(IconType::BoomBox, BOOM_BOX_ELEMENTS);
registry.insert(IconType::BotMessageSquare, BOT_MESSAGE_SQUARE_ELEMENTS);
registry.insert(IconType::BotOff, BOT_OFF_ELEMENTS);
registry.insert(IconType::Bot, BOT_ELEMENTS);
registry.insert(IconType::BottleWine, BOTTLE_WINE_ELEMENTS);
registry.insert(IconType::BowArrow, BOW_ARROW_ELEMENTS);
// registry.insert(IconType::Box, BOX_ELEMENTS);
registry.insert(IconType::Boxes, BOXES_ELEMENTS);
registry.insert(IconType::Braces, BRACES_ELEMENTS);
registry.insert(IconType::Brackets, BRACKETS_ELEMENTS);
registry.insert(IconType::BrainCircuit, BRAIN_CIRCUIT_ELEMENTS);
registry.insert(IconType::BrainCog, BRAIN_COG_ELEMENTS);
registry.insert(IconType::Brain, BRAIN_ELEMENTS);
registry.insert(IconType::BrickWallFire, BRICK_WALL_FIRE_ELEMENTS);
registry.insert(IconType::BrickWall, BRICK_WALL_ELEMENTS);
registry.insert(IconType::BriefcaseBusiness, BRIEFCASE_BUSINESS_ELEMENTS);
registry.insert(IconType::BriefcaseConveyorBelt, BRIEFCASE_CONVEYOR_BELT_ELEMENTS);
registry.insert(IconType::BriefcaseMedical, BRIEFCASE_MEDICAL_ELEMENTS);
registry.insert(IconType::Briefcase, BRIEFCASE_ELEMENTS);
registry.insert(IconType::BringToFront, BRING_TO_FRONT_ELEMENTS);
registry.insert(IconType::BrushCleaning, BRUSH_CLEANING_ELEMENTS);
registry.insert(IconType::Brush, BRUSH_ELEMENTS);
registry.insert(IconType::Bubbles, BUBBLES_ELEMENTS);
registry.insert(IconType::BugOff, BUG_OFF_ELEMENTS);
registry.insert(IconType::BugPlay, BUG_PLAY_ELEMENTS);
registry.insert(IconType::Bug, BUG_ELEMENTS);
registry.insert(IconType::Building2, BUILDING2_ELEMENTS);
registry.insert(IconType::Building, BUILDING_ELEMENTS);
registry.insert(IconType::BusFront, BUS_FRONT_ELEMENTS);
registry.insert(IconType::Bus, BUS_ELEMENTS);
registry.insert(IconType::CableCar, CABLE_CAR_ELEMENTS);
registry.insert(IconType::Cable, CABLE_ELEMENTS);
registry.insert(IconType::CakeSlice, CAKE_SLICE_ELEMENTS);
registry.insert(IconType::Cake, CAKE_ELEMENTS);
registry.insert(IconType::Calculator, CALCULATOR_ELEMENTS);
registry.insert(IconType::Calendar1, CALENDAR1_ELEMENTS);
registry.insert(IconType::CalendarArrowDown, CALENDAR_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::CalendarArrowUp, CALENDAR_ARROW_UP_ELEMENTS);
registry.insert(IconType::CalendarCheck2, CALENDAR_CHECK2_ELEMENTS);
registry.insert(IconType::CalendarCheck, CALENDAR_CHECK_ELEMENTS);
registry.insert(IconType::CalendarClock, CALENDAR_CLOCK_ELEMENTS);
registry.insert(IconType::CalendarCog, CALENDAR_COG_ELEMENTS);
registry.insert(IconType::CalendarDays, CALENDAR_DAYS_ELEMENTS);
registry.insert(IconType::CalendarFold, CALENDAR_FOLD_ELEMENTS);
registry.insert(IconType::CalendarHeart, CALENDAR_HEART_ELEMENTS);
registry.insert(IconType::CalendarMinus2, CALENDAR_MINUS2_ELEMENTS);
registry.insert(IconType::CalendarMinus, CALENDAR_MINUS_ELEMENTS);
registry.insert(IconType::CalendarOff, CALENDAR_OFF_ELEMENTS);
registry.insert(IconType::CalendarPlus2, CALENDAR_PLUS2_ELEMENTS);
registry.insert(IconType::CalendarPlus, CALENDAR_PLUS_ELEMENTS);
registry.insert(IconType::CalendarRange, CALENDAR_RANGE_ELEMENTS);
registry.insert(IconType::CalendarSearch, CALENDAR_SEARCH_ELEMENTS);
registry.insert(IconType::CalendarSync, CALENDAR_SYNC_ELEMENTS);
registry.insert(IconType::CalendarX2, CALENDAR_X2_ELEMENTS);
registry.insert(IconType::CalendarX, CALENDAR_X_ELEMENTS);
registry.insert(IconType::Calendar, CALENDAR_ELEMENTS);
registry.insert(IconType::CameraOff, CAMERA_OFF_ELEMENTS);
registry.insert(IconType::Camera, CAMERA_ELEMENTS);
registry.insert(IconType::CandyCane, CANDY_CANE_ELEMENTS);
registry.insert(IconType::CandyOff, CANDY_OFF_ELEMENTS);
registry.insert(IconType::Candy, CANDY_ELEMENTS);
registry.insert(IconType::Cannabis, CANNABIS_ELEMENTS);
registry.insert(IconType::CaptionsOff, CAPTIONS_OFF_ELEMENTS);
registry.insert(IconType::Captions, CAPTIONS_ELEMENTS);
registry.insert(IconType::CarFront, CAR_FRONT_ELEMENTS);
registry.insert(IconType::CarTaxiFront, CAR_TAXI_FRONT_ELEMENTS);
registry.insert(IconType::Car, CAR_ELEMENTS);
registry.insert(IconType::Caravan, CARAVAN_ELEMENTS);
registry.insert(IconType::CardSim, CARD_SIM_ELEMENTS);
registry.insert(IconType::Carrot, CARROT_ELEMENTS);
registry.insert(IconType::CaseLower, CASE_LOWER_ELEMENTS);
registry.insert(IconType::CaseSensitive, CASE_SENSITIVE_ELEMENTS);
registry.insert(IconType::CaseUpper, CASE_UPPER_ELEMENTS);
registry.insert(IconType::CassetteTape, CASSETTE_TAPE_ELEMENTS);
registry.insert(IconType::Cast, CAST_ELEMENTS);
registry.insert(IconType::Castle, CASTLE_ELEMENTS);
registry.insert(IconType::Cat, CAT_ELEMENTS);
registry.insert(IconType::Cctv, CCTV_ELEMENTS);
registry.insert(IconType::ChartArea, CHART_AREA_ELEMENTS);
registry.insert(IconType::ChartBarBig, CHART_BAR_BIG_ELEMENTS);
registry.insert(IconType::ChartBarDecreasing, CHART_BAR_DECREASING_ELEMENTS);
registry.insert(IconType::ChartBarIncreasing, CHART_BAR_INCREASING_ELEMENTS);
registry.insert(IconType::ChartBarStacked, CHART_BAR_STACKED_ELEMENTS);
registry.insert(IconType::ChartBar, CHART_BAR_ELEMENTS);
registry.insert(IconType::ChartCandlestick, CHART_CANDLESTICK_ELEMENTS);
registry.insert(IconType::ChartColumnBig, CHART_COLUMN_BIG_ELEMENTS);
registry.insert(IconType::ChartColumnDecreasing, CHART_COLUMN_DECREASING_ELEMENTS);
registry.insert(IconType::ChartColumnIncreasing, CHART_COLUMN_INCREASING_ELEMENTS);
registry.insert(IconType::ChartColumnStacked, CHART_COLUMN_STACKED_ELEMENTS);
registry.insert(IconType::ChartColumn, CHART_COLUMN_ELEMENTS);
registry.insert(IconType::ChartGantt, CHART_GANTT_ELEMENTS);
registry.insert(IconType::ChartLine, CHART_LINE_ELEMENTS);
registry.insert(IconType::ChartNetwork, CHART_NETWORK_ELEMENTS);
registry.insert(IconType::ChartNoAxesColumnDecreasing, CHART_NO_AXES_COLUMN_DECREASING_ELEMENTS);
registry.insert(IconType::ChartNoAxesColumnIncreasing, CHART_NO_AXES_COLUMN_INCREASING_ELEMENTS);
registry.insert(IconType::ChartNoAxesColumn, CHART_NO_AXES_COLUMN_ELEMENTS);
registry.insert(IconType::ChartNoAxesCombined, CHART_NO_AXES_COMBINED_ELEMENTS);
registry.insert(IconType::ChartNoAxesGantt, CHART_NO_AXES_GANTT_ELEMENTS);
registry.insert(IconType::ChartPie, CHART_PIE_ELEMENTS);
registry.insert(IconType::ChartScatter, CHART_SCATTER_ELEMENTS);
registry.insert(IconType::ChartSpline, CHART_SPLINE_ELEMENTS);
registry.insert(IconType::CheckCheck, CHECK_CHECK_ELEMENTS);
registry.insert(IconType::CheckLine, CHECK_LINE_ELEMENTS);
registry.insert(IconType::Check, CHECK_ELEMENTS);
registry.insert(IconType::ChefHat, CHEF_HAT_ELEMENTS);
registry.insert(IconType::Cherry, CHERRY_ELEMENTS);
registry.insert(IconType::ChevronDown, CHEVRON_DOWN_ELEMENTS);
registry.insert(IconType::ChevronFirst, CHEVRON_FIRST_ELEMENTS);
registry.insert(IconType::ChevronLast, CHEVRON_LAST_ELEMENTS);
registry.insert(IconType::ChevronLeft, CHEVRON_LEFT_ELEMENTS);
registry.insert(IconType::ChevronRight, CHEVRON_RIGHT_ELEMENTS);
registry.insert(IconType::ChevronUp, CHEVRON_UP_ELEMENTS);
registry.insert(IconType::ChevronsDownUp, CHEVRONS_DOWN_UP_ELEMENTS);
registry.insert(IconType::ChevronsDown, CHEVRONS_DOWN_ELEMENTS);
registry.insert(IconType::ChevronsLeftRightEllipsis, CHEVRONS_LEFT_RIGHT_ELLIPSIS_ELEMENTS);
registry.insert(IconType::ChevronsLeftRight, CHEVRONS_LEFT_RIGHT_ELEMENTS);
registry.insert(IconType::ChevronsLeft, CHEVRONS_LEFT_ELEMENTS);
registry.insert(IconType::ChevronsRightLeft, CHEVRONS_RIGHT_LEFT_ELEMENTS);
registry.insert(IconType::ChevronsRight, CHEVRONS_RIGHT_ELEMENTS);
registry.insert(IconType::ChevronsUpDown, CHEVRONS_UP_DOWN_ELEMENTS);
registry.insert(IconType::ChevronsUp, CHEVRONS_UP_ELEMENTS);
registry.insert(IconType::Chrome, CHROME_ELEMENTS);
registry.insert(IconType::Church, CHURCH_ELEMENTS);
registry.insert(IconType::CigaretteOff, CIGARETTE_OFF_ELEMENTS);
registry.insert(IconType::Cigarette, CIGARETTE_ELEMENTS);
registry.insert(IconType::CircleAlert, CIRCLE_ALERT_ELEMENTS);
registry.insert(IconType::CircleArrowDown, CIRCLE_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::CircleArrowLeft, CIRCLE_ARROW_LEFT_ELEMENTS);
registry.insert(IconType::CircleArrowOutDownLeft, CIRCLE_ARROW_OUT_DOWN_LEFT_ELEMENTS);
registry.insert(IconType::CircleArrowOutDownRight, CIRCLE_ARROW_OUT_DOWN_RIGHT_ELEMENTS);
registry.insert(IconType::CircleArrowOutUpLeft, CIRCLE_ARROW_OUT_UP_LEFT_ELEMENTS);
registry.insert(IconType::CircleArrowOutUpRight, CIRCLE_ARROW_OUT_UP_RIGHT_ELEMENTS);
registry.insert(IconType::CircleArrowRight, CIRCLE_ARROW_RIGHT_ELEMENTS);
registry.insert(IconType::CircleArrowUp, CIRCLE_ARROW_UP_ELEMENTS);
registry.insert(IconType::CircleCheckBig, CIRCLE_CHECK_BIG_ELEMENTS);
registry.insert(IconType::CircleCheck, CIRCLE_CHECK_ELEMENTS);
registry.insert(IconType::CircleChevronDown, CIRCLE_CHEVRON_DOWN_ELEMENTS);
registry.insert(IconType::CircleChevronLeft, CIRCLE_CHEVRON_LEFT_ELEMENTS);
registry.insert(IconType::CircleChevronRight, CIRCLE_CHEVRON_RIGHT_ELEMENTS);
registry.insert(IconType::CircleChevronUp, CIRCLE_CHEVRON_UP_ELEMENTS);
registry.insert(IconType::CircleDashed, CIRCLE_DASHED_ELEMENTS);
registry.insert(IconType::CircleDivide, CIRCLE_DIVIDE_ELEMENTS);
registry.insert(IconType::CircleDollarSign, CIRCLE_DOLLAR_SIGN_ELEMENTS);
registry.insert(IconType::CircleDotDashed, CIRCLE_DOT_DASHED_ELEMENTS);
registry.insert(IconType::CircleDot, CIRCLE_DOT_ELEMENTS);
registry.insert(IconType::CircleEllipsis, CIRCLE_ELLIPSIS_ELEMENTS);
registry.insert(IconType::CircleEqual, CIRCLE_EQUAL_ELEMENTS);
registry.insert(IconType::CircleFadingArrowUp, CIRCLE_FADING_ARROW_UP_ELEMENTS);
registry.insert(IconType::CircleFadingPlus, CIRCLE_FADING_PLUS_ELEMENTS);
registry.insert(IconType::CircleGauge, CIRCLE_GAUGE_ELEMENTS);
registry.insert(IconType::CircleHelp, CIRCLE_HELP_ELEMENTS);
registry.insert(IconType::CircleMinus, CIRCLE_MINUS_ELEMENTS);
registry.insert(IconType::CircleOff, CIRCLE_OFF_ELEMENTS);
registry.insert(IconType::CircleParkingOff, CIRCLE_PARKING_OFF_ELEMENTS);
registry.insert(IconType::CircleParking, CIRCLE_PARKING_ELEMENTS);
registry.insert(IconType::CirclePause, CIRCLE_PAUSE_ELEMENTS);
registry.insert(IconType::CirclePercent, CIRCLE_PERCENT_ELEMENTS);
registry.insert(IconType::CirclePlay, CIRCLE_PLAY_ELEMENTS);
registry.insert(IconType::CirclePlus, CIRCLE_PLUS_ELEMENTS);
registry.insert(IconType::CirclePoundSterling, CIRCLE_POUND_STERLING_ELEMENTS);
registry.insert(IconType::CirclePower, CIRCLE_POWER_ELEMENTS);
registry.insert(IconType::CircleQuestionMark, CIRCLE_QUESTION_MARK_ELEMENTS);
registry.insert(IconType::CircleSlash2, CIRCLE_SLASH2_ELEMENTS);
registry.insert(IconType::CircleSlash, CIRCLE_SLASH_ELEMENTS);
registry.insert(IconType::CircleSmall, CIRCLE_SMALL_ELEMENTS);
registry.insert(IconType::CircleStop, CIRCLE_STOP_ELEMENTS);
registry.insert(IconType::CircleUserRound, CIRCLE_USER_ROUND_ELEMENTS);
registry.insert(IconType::CircleUser, CIRCLE_USER_ELEMENTS);
registry.insert(IconType::CircleX, CIRCLE_X_ELEMENTS);
registry.insert(IconType::Circle, CIRCLE_ELEMENTS);
registry.insert(IconType::CircuitBoard, CIRCUIT_BOARD_ELEMENTS);
registry.insert(IconType::Citrus, CITRUS_ELEMENTS);
registry.insert(IconType::Clapperboard, CLAPPERBOARD_ELEMENTS);
registry.insert(IconType::ClipboardCheck, CLIPBOARD_CHECK_ELEMENTS);
registry.insert(IconType::ClipboardClock, CLIPBOARD_CLOCK_ELEMENTS);
registry.insert(IconType::ClipboardCopy, CLIPBOARD_COPY_ELEMENTS);
registry.insert(IconType::ClipboardList, CLIPBOARD_LIST_ELEMENTS);
registry.insert(IconType::ClipboardMinus, CLIPBOARD_MINUS_ELEMENTS);
registry.insert(IconType::ClipboardPaste, CLIPBOARD_PASTE_ELEMENTS);
registry.insert(IconType::ClipboardPenLine, CLIPBOARD_PEN_LINE_ELEMENTS);
registry.insert(IconType::ClipboardPen, CLIPBOARD_PEN_ELEMENTS);
registry.insert(IconType::ClipboardPlus, CLIPBOARD_PLUS_ELEMENTS);
registry.insert(IconType::ClipboardType, CLIPBOARD_TYPE_ELEMENTS);
registry.insert(IconType::ClipboardX, CLIPBOARD_X_ELEMENTS);
registry.insert(IconType::Clipboard, CLIPBOARD_ELEMENTS);
registry.insert(IconType::Clock1, CLOCK1_ELEMENTS);
registry.insert(IconType::Clock10, CLOCK10_ELEMENTS);
registry.insert(IconType::Clock11, CLOCK11_ELEMENTS);
registry.insert(IconType::Clock12, CLOCK12_ELEMENTS);
registry.insert(IconType::Clock2, CLOCK2_ELEMENTS);
registry.insert(IconType::Clock3, CLOCK3_ELEMENTS);
registry.insert(IconType::Clock4, CLOCK4_ELEMENTS);
registry.insert(IconType::Clock5, CLOCK5_ELEMENTS);
registry.insert(IconType::Clock6, CLOCK6_ELEMENTS);
registry.insert(IconType::Clock7, CLOCK7_ELEMENTS);
registry.insert(IconType::Clock8, CLOCK8_ELEMENTS);
registry.insert(IconType::Clock9, CLOCK9_ELEMENTS);
registry.insert(IconType::ClockAlert, CLOCK_ALERT_ELEMENTS);
registry.insert(IconType::ClockArrowDown, CLOCK_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::ClockArrowUp, CLOCK_ARROW_UP_ELEMENTS);
registry.insert(IconType::ClockFading, CLOCK_FADING_ELEMENTS);
registry.insert(IconType::ClockPlus, CLOCK_PLUS_ELEMENTS);
registry.insert(IconType::Clock, CLOCK_ELEMENTS);
registry.insert(IconType::CloudAlert, CLOUD_ALERT_ELEMENTS);
registry.insert(IconType::CloudCheck, CLOUD_CHECK_ELEMENTS);
registry.insert(IconType::CloudCog, CLOUD_COG_ELEMENTS);
registry.insert(IconType::CloudDownload, CLOUD_DOWNLOAD_ELEMENTS);
registry.insert(IconType::CloudDrizzle, CLOUD_DRIZZLE_ELEMENTS);
registry.insert(IconType::CloudFog, CLOUD_FOG_ELEMENTS);
registry.insert(IconType::CloudHail, CLOUD_HAIL_ELEMENTS);
registry.insert(IconType::CloudLightning, CLOUD_LIGHTNING_ELEMENTS);
registry.insert(IconType::CloudMoonRain, CLOUD_MOON_RAIN_ELEMENTS);
registry.insert(IconType::CloudMoon, CLOUD_MOON_ELEMENTS);
registry.insert(IconType::CloudOff, CLOUD_OFF_ELEMENTS);
registry.insert(IconType::CloudRainWind, CLOUD_RAIN_WIND_ELEMENTS);
registry.insert(IconType::CloudRain, CLOUD_RAIN_ELEMENTS);
registry.insert(IconType::CloudSnow, CLOUD_SNOW_ELEMENTS);
registry.insert(IconType::CloudSunRain, CLOUD_SUN_RAIN_ELEMENTS);
registry.insert(IconType::CloudSun, CLOUD_SUN_ELEMENTS);
registry.insert(IconType::CloudUpload, CLOUD_UPLOAD_ELEMENTS);
registry.insert(IconType::Cloud, CLOUD_ELEMENTS);
registry.insert(IconType::Cloudy, CLOUDY_ELEMENTS);
registry.insert(IconType::Clover, CLOVER_ELEMENTS);
registry.insert(IconType::Club, CLUB_ELEMENTS);
registry.insert(IconType::CodeXml, CODE_XML_ELEMENTS);
registry.insert(IconType::Code, CODE_ELEMENTS);
registry.insert(IconType::Codepen, CODEPEN_ELEMENTS);
registry.insert(IconType::Codesandbox, CODESANDBOX_ELEMENTS);
registry.insert(IconType::Coffee, COFFEE_ELEMENTS);
registry.insert(IconType::Cog, COG_ELEMENTS);
registry.insert(IconType::Coins, COINS_ELEMENTS);
registry.insert(IconType::Columns2, COLUMNS2_ELEMENTS);
registry.insert(IconType::Columns3Cog, COLUMNS3_COG_ELEMENTS);
registry.insert(IconType::Columns3, COLUMNS3_ELEMENTS);
registry.insert(IconType::Columns4, COLUMNS4_ELEMENTS);
registry.insert(IconType::Combine, COMBINE_ELEMENTS);
registry.insert(IconType::Command, COMMAND_ELEMENTS);
registry.insert(IconType::Compass, COMPASS_ELEMENTS);
registry.insert(IconType::Component, COMPONENT_ELEMENTS);
registry.insert(IconType::Computer, COMPUTER_ELEMENTS);
registry.insert(IconType::ConciergeBell, CONCIERGE_BELL_ELEMENTS);
registry.insert(IconType::Cone, CONE_ELEMENTS);
registry.insert(IconType::Construction, CONSTRUCTION_ELEMENTS);
registry.insert(IconType::ContactRound, CONTACT_ROUND_ELEMENTS);
registry.insert(IconType::Contact, CONTACT_ELEMENTS);
registry.insert(IconType::Container, CONTAINER_ELEMENTS);
registry.insert(IconType::Contrast, CONTRAST_ELEMENTS);
registry.insert(IconType::Cookie, COOKIE_ELEMENTS);
registry.insert(IconType::CookingPot, COOKING_POT_ELEMENTS);
registry.insert(IconType::CopyCheck, COPY_CHECK_ELEMENTS);
registry.insert(IconType::CopyMinus, COPY_MINUS_ELEMENTS);
registry.insert(IconType::CopyPlus, COPY_PLUS_ELEMENTS);
registry.insert(IconType::CopySlash, COPY_SLASH_ELEMENTS);
registry.insert(IconType::CopyX, COPY_X_ELEMENTS);
registry.insert(IconType::Copy, COPY_ELEMENTS);
registry.insert(IconType::Copyleft, COPYLEFT_ELEMENTS);
registry.insert(IconType::Copyright, COPYRIGHT_ELEMENTS);
registry.insert(IconType::CornerDownLeft, CORNER_DOWN_LEFT_ELEMENTS);
registry.insert(IconType::CornerDownRight, CORNER_DOWN_RIGHT_ELEMENTS);
registry.insert(IconType::CornerLeftDown, CORNER_LEFT_DOWN_ELEMENTS);
registry.insert(IconType::CornerLeftUp, CORNER_LEFT_UP_ELEMENTS);
registry.insert(IconType::CornerRightDown, CORNER_RIGHT_DOWN_ELEMENTS);
registry.insert(IconType::CornerRightUp, CORNER_RIGHT_UP_ELEMENTS);
registry.insert(IconType::CornerUpLeft, CORNER_UP_LEFT_ELEMENTS);
registry.insert(IconType::CornerUpRight, CORNER_UP_RIGHT_ELEMENTS);
registry.insert(IconType::Cpu, CPU_ELEMENTS);
registry.insert(IconType::CreativeCommons, CREATIVE_COMMONS_ELEMENTS);
registry.insert(IconType::CreditCard, CREDIT_CARD_ELEMENTS);
registry.insert(IconType::Croissant, CROISSANT_ELEMENTS);
registry.insert(IconType::Crop, CROP_ELEMENTS);
registry.insert(IconType::Cross, CROSS_ELEMENTS);
registry.insert(IconType::Crosshair, CROSSHAIR_ELEMENTS);
registry.insert(IconType::Crown, CROWN_ELEMENTS);
registry.insert(IconType::Cuboid, CUBOID_ELEMENTS);
registry.insert(IconType::CupSoda, CUP_SODA_ELEMENTS);
registry.insert(IconType::Currency, CURRENCY_ELEMENTS);
registry.insert(IconType::Cylinder, CYLINDER_ELEMENTS);
registry.insert(IconType::Dam, DAM_ELEMENTS);
registry.insert(IconType::DatabaseBackup, DATABASE_BACKUP_ELEMENTS);
registry.insert(IconType::DatabaseZap, DATABASE_ZAP_ELEMENTS);
registry.insert(IconType::Database, DATABASE_ELEMENTS);
registry.insert(IconType::DecimalsArrowLeft, DECIMALS_ARROW_LEFT_ELEMENTS);
registry.insert(IconType::DecimalsArrowRight, DECIMALS_ARROW_RIGHT_ELEMENTS);
registry.insert(IconType::Delete, DELETE_ELEMENTS);
registry.insert(IconType::Dessert, DESSERT_ELEMENTS);
registry.insert(IconType::Diameter, DIAMETER_ELEMENTS);
registry.insert(IconType::DiamondMinus, DIAMOND_MINUS_ELEMENTS);
registry.insert(IconType::DiamondPercent, DIAMOND_PERCENT_ELEMENTS);
registry.insert(IconType::DiamondPlus, DIAMOND_PLUS_ELEMENTS);
registry.insert(IconType::Diamond, DIAMOND_ELEMENTS);
registry.insert(IconType::Dice1, DICE1_ELEMENTS);
registry.insert(IconType::Dice2, DICE2_ELEMENTS);
registry.insert(IconType::Dice3, DICE3_ELEMENTS);
registry.insert(IconType::Dice4, DICE4_ELEMENTS);
registry.insert(IconType::Dice5, DICE5_ELEMENTS);
registry.insert(IconType::Dice6, DICE6_ELEMENTS);
registry.insert(IconType::Dices, DICES_ELEMENTS);
registry.insert(IconType::Diff, DIFF_ELEMENTS);
registry.insert(IconType::Disc2, DISC2_ELEMENTS);
registry.insert(IconType::Disc3, DISC3_ELEMENTS);
registry.insert(IconType::DiscAlbum, DISC_ALBUM_ELEMENTS);
registry.insert(IconType::Disc, DISC_ELEMENTS);
registry.insert(IconType::Divide, DIVIDE_ELEMENTS);
registry.insert(IconType::DnaOff, DNA_OFF_ELEMENTS);
registry.insert(IconType::Dna, DNA_ELEMENTS);
registry.insert(IconType::Dock, DOCK_ELEMENTS);
registry.insert(IconType::Dog, DOG_ELEMENTS);
registry.insert(IconType::DollarSign, DOLLAR_SIGN_ELEMENTS);
registry.insert(IconType::Donut, DONUT_ELEMENTS);
registry.insert(IconType::DoorClosedLocked, DOOR_CLOSED_LOCKED_ELEMENTS);
registry.insert(IconType::DoorClosed, DOOR_CLOSED_ELEMENTS);
registry.insert(IconType::DoorOpen, DOOR_OPEN_ELEMENTS);
registry.insert(IconType::Dot, DOT_ELEMENTS);
registry.insert(IconType::Download, DOWNLOAD_ELEMENTS);
registry.insert(IconType::DraftingCompass, DRAFTING_COMPASS_ELEMENTS);
registry.insert(IconType::Drama, DRAMA_ELEMENTS);
registry.insert(IconType::Dribbble, DRIBBBLE_ELEMENTS);
registry.insert(IconType::Drill, DRILL_ELEMENTS);
registry.insert(IconType::Drone, DRONE_ELEMENTS);
registry.insert(IconType::DropletOff, DROPLET_OFF_ELEMENTS);
registry.insert(IconType::Droplet, DROPLET_ELEMENTS);
registry.insert(IconType::Droplets, DROPLETS_ELEMENTS);
registry.insert(IconType::Drum, DRUM_ELEMENTS);
registry.insert(IconType::Drumstick, DRUMSTICK_ELEMENTS);
registry.insert(IconType::Dumbbell, DUMBBELL_ELEMENTS);
registry.insert(IconType::EarOff, EAR_OFF_ELEMENTS);
registry.insert(IconType::Ear, EAR_ELEMENTS);
registry.insert(IconType::EarthLock, EARTH_LOCK_ELEMENTS);
registry.insert(IconType::Earth, EARTH_ELEMENTS);
registry.insert(IconType::Eclipse, ECLIPSE_ELEMENTS);
registry.insert(IconType::EggFried, EGG_FRIED_ELEMENTS);
registry.insert(IconType::EggOff, EGG_OFF_ELEMENTS);
registry.insert(IconType::Egg, EGG_ELEMENTS);
registry.insert(IconType::EllipsisVertical, ELLIPSIS_VERTICAL_ELEMENTS);
registry.insert(IconType::Ellipsis, ELLIPSIS_ELEMENTS);
registry.insert(IconType::EqualApproximately, EQUAL_APPROXIMATELY_ELEMENTS);
registry.insert(IconType::EqualNot, EQUAL_NOT_ELEMENTS);
registry.insert(IconType::Equal, EQUAL_ELEMENTS);
registry.insert(IconType::Eraser, ERASER_ELEMENTS);
registry.insert(IconType::EthernetPort, ETHERNET_PORT_ELEMENTS);
registry.insert(IconType::Euro, EURO_ELEMENTS);
registry.insert(IconType::Expand, EXPAND_ELEMENTS);
registry.insert(IconType::ExternalLink, EXTERNAL_LINK_ELEMENTS);
registry.insert(IconType::EyeClosed, EYE_CLOSED_ELEMENTS);
registry.insert(IconType::EyeOff, EYE_OFF_ELEMENTS);
registry.insert(IconType::Eye, EYE_ELEMENTS);
registry.insert(IconType::Facebook, FACEBOOK_ELEMENTS);
registry.insert(IconType::Factory, FACTORY_ELEMENTS);
registry.insert(IconType::Fan, FAN_ELEMENTS);
registry.insert(IconType::FastForward, FAST_FORWARD_ELEMENTS);
registry.insert(IconType::Feather, FEATHER_ELEMENTS);
registry.insert(IconType::Fence, FENCE_ELEMENTS);
registry.insert(IconType::FerrisWheel, FERRIS_WHEEL_ELEMENTS);
registry.insert(IconType::Figma, FIGMA_ELEMENTS);
registry.insert(IconType::FileArchive, FILE_ARCHIVE_ELEMENTS);
registry.insert(IconType::FileAudio2, FILE_AUDIO2_ELEMENTS);
registry.insert(IconType::FileAudio, FILE_AUDIO_ELEMENTS);
registry.insert(IconType::FileAxis3D, FILE_AXIS3_D_ELEMENTS);
registry.insert(IconType::FileBadge2, FILE_BADGE2_ELEMENTS);
registry.insert(IconType::FileBadge, FILE_BADGE_ELEMENTS);
registry.insert(IconType::FileBox, FILE_BOX_ELEMENTS);
registry.insert(IconType::FileChartColumnIncreasing, FILE_CHART_COLUMN_INCREASING_ELEMENTS);
registry.insert(IconType::FileChartColumn, FILE_CHART_COLUMN_ELEMENTS);
registry.insert(IconType::FileChartLine, FILE_CHART_LINE_ELEMENTS);
registry.insert(IconType::FileChartPie, FILE_CHART_PIE_ELEMENTS);
registry.insert(IconType::FileCheck2, FILE_CHECK2_ELEMENTS);
registry.insert(IconType::FileCheck, FILE_CHECK_ELEMENTS);
registry.insert(IconType::FileClock, FILE_CLOCK_ELEMENTS);
registry.insert(IconType::FileCode2, FILE_CODE2_ELEMENTS);
registry.insert(IconType::FileCode, FILE_CODE_ELEMENTS);
registry.insert(IconType::FileCog, FILE_COG_ELEMENTS);
registry.insert(IconType::FileDiff, FILE_DIFF_ELEMENTS);
registry.insert(IconType::FileDigit, FILE_DIGIT_ELEMENTS);
registry.insert(IconType::FileDown, FILE_DOWN_ELEMENTS);
registry.insert(IconType::FileHeart, FILE_HEART_ELEMENTS);
registry.insert(IconType::FileImage, FILE_IMAGE_ELEMENTS);
registry.insert(IconType::FileInput, FILE_INPUT_ELEMENTS);
registry.insert(IconType::FileJson2, FILE_JSON2_ELEMENTS);
registry.insert(IconType::FileJson, FILE_JSON_ELEMENTS);
registry.insert(IconType::FileKey2, FILE_KEY2_ELEMENTS);
registry.insert(IconType::FileKey, FILE_KEY_ELEMENTS);
registry.insert(IconType::FileLock2, FILE_LOCK2_ELEMENTS);
registry.insert(IconType::FileLock, FILE_LOCK_ELEMENTS);
registry.insert(IconType::FileMinus2, FILE_MINUS2_ELEMENTS);
registry.insert(IconType::FileMinus, FILE_MINUS_ELEMENTS);
registry.insert(IconType::FileMusic, FILE_MUSIC_ELEMENTS);
registry.insert(IconType::FileOutput, FILE_OUTPUT_ELEMENTS);
registry.insert(IconType::FilePenLine, FILE_PEN_LINE_ELEMENTS);
registry.insert(IconType::FilePen, FILE_PEN_ELEMENTS);
registry.insert(IconType::FilePlay, FILE_PLAY_ELEMENTS);
registry.insert(IconType::FilePlus2, FILE_PLUS2_ELEMENTS);
registry.insert(IconType::FilePlus, FILE_PLUS_ELEMENTS);
registry.insert(IconType::FileQuestionMark, FILE_QUESTION_MARK_ELEMENTS);
registry.insert(IconType::FileQuestion, FILE_QUESTION_ELEMENTS);
registry.insert(IconType::FileScan, FILE_SCAN_ELEMENTS);
registry.insert(IconType::FileSearch2, FILE_SEARCH2_ELEMENTS);
registry.insert(IconType::FileSearch, FILE_SEARCH_ELEMENTS);
registry.insert(IconType::FileSliders, FILE_SLIDERS_ELEMENTS);
registry.insert(IconType::FileSpreadsheet, FILE_SPREADSHEET_ELEMENTS);
registry.insert(IconType::FileStack, FILE_STACK_ELEMENTS);
registry.insert(IconType::FileSymlink, FILE_SYMLINK_ELEMENTS);
registry.insert(IconType::FileTerminal, FILE_TERMINAL_ELEMENTS);
registry.insert(IconType::FileText, FILE_TEXT_ELEMENTS);
registry.insert(IconType::FileType2, FILE_TYPE2_ELEMENTS);
registry.insert(IconType::FileType, FILE_TYPE_ELEMENTS);
registry.insert(IconType::FileUp, FILE_UP_ELEMENTS);
registry.insert(IconType::FileUser, FILE_USER_ELEMENTS);
registry.insert(IconType::FileVideo2, FILE_VIDEO2_ELEMENTS);
registry.insert(IconType::FileVideoCamera, FILE_VIDEO_CAMERA_ELEMENTS);
registry.insert(IconType::FileVideo, FILE_VIDEO_ELEMENTS);
registry.insert(IconType::FileVolume2, FILE_VOLUME2_ELEMENTS);
registry.insert(IconType::FileVolume, FILE_VOLUME_ELEMENTS);
registry.insert(IconType::FileWarning, FILE_WARNING_ELEMENTS);
registry.insert(IconType::FileX2, FILE_X2_ELEMENTS);
registry.insert(IconType::FileX, FILE_X_ELEMENTS);
registry.insert(IconType::File, FILE_ELEMENTS);
registry.insert(IconType::Files, FILES_ELEMENTS);
registry.insert(IconType::Film, FILM_ELEMENTS);
registry.insert(IconType::FilterX, FILTER_X_ELEMENTS);
registry.insert(IconType::Filter, FILTER_ELEMENTS);
registry.insert(IconType::Fingerprint, FINGERPRINT_ELEMENTS);
registry.insert(IconType::FireExtinguisher, FIRE_EXTINGUISHER_ELEMENTS);
registry.insert(IconType::FishOff, FISH_OFF_ELEMENTS);
registry.insert(IconType::FishSymbol, FISH_SYMBOL_ELEMENTS);
registry.insert(IconType::Fish, FISH_ELEMENTS);
registry.insert(IconType::FlagOff, FLAG_OFF_ELEMENTS);
registry.insert(IconType::FlagTriangleLeft, FLAG_TRIANGLE_LEFT_ELEMENTS);
registry.insert(IconType::FlagTriangleRight, FLAG_TRIANGLE_RIGHT_ELEMENTS);
registry.insert(IconType::Flag, FLAG_ELEMENTS);
registry.insert(IconType::FlameKindling, FLAME_KINDLING_ELEMENTS);
registry.insert(IconType::Flame, FLAME_ELEMENTS);
registry.insert(IconType::FlashlightOff, FLASHLIGHT_OFF_ELEMENTS);
registry.insert(IconType::Flashlight, FLASHLIGHT_ELEMENTS);
registry.insert(IconType::FlaskConicalOff, FLASK_CONICAL_OFF_ELEMENTS);
registry.insert(IconType::FlaskConical, FLASK_CONICAL_ELEMENTS);
registry.insert(IconType::FlaskRound, FLASK_ROUND_ELEMENTS);
registry.insert(IconType::FlipHorizontal2, FLIP_HORIZONTAL2_ELEMENTS);
registry.insert(IconType::FlipHorizontal, FLIP_HORIZONTAL_ELEMENTS);
registry.insert(IconType::FlipVertical2, FLIP_VERTICAL2_ELEMENTS);
registry.insert(IconType::FlipVertical, FLIP_VERTICAL_ELEMENTS);
registry.insert(IconType::Flower2, FLOWER2_ELEMENTS);
registry.insert(IconType::Flower, FLOWER_ELEMENTS);
registry.insert(IconType::Focus, FOCUS_ELEMENTS);
registry.insert(IconType::FoldHorizontal, FOLD_HORIZONTAL_ELEMENTS);
registry.insert(IconType::FoldVertical, FOLD_VERTICAL_ELEMENTS);
registry.insert(IconType::FolderArchive, FOLDER_ARCHIVE_ELEMENTS);
registry.insert(IconType::FolderCheck, FOLDER_CHECK_ELEMENTS);
registry.insert(IconType::FolderClock, FOLDER_CLOCK_ELEMENTS);
registry.insert(IconType::FolderClosed, FOLDER_CLOSED_ELEMENTS);
registry.insert(IconType::FolderCode, FOLDER_CODE_ELEMENTS);
registry.insert(IconType::FolderCog, FOLDER_COG_ELEMENTS);
registry.insert(IconType::FolderDot, FOLDER_DOT_ELEMENTS);
registry.insert(IconType::FolderDown, FOLDER_DOWN_ELEMENTS);
registry.insert(IconType::FolderGit2, FOLDER_GIT2_ELEMENTS);
registry.insert(IconType::FolderGit, FOLDER_GIT_ELEMENTS);
registry.insert(IconType::FolderHeart, FOLDER_HEART_ELEMENTS);
registry.insert(IconType::FolderInput, FOLDER_INPUT_ELEMENTS);
registry.insert(IconType::FolderKanban, FOLDER_KANBAN_ELEMENTS);
registry.insert(IconType::FolderKey, FOLDER_KEY_ELEMENTS);
registry.insert(IconType::FolderLock, FOLDER_LOCK_ELEMENTS);
registry.insert(IconType::FolderMinus, FOLDER_MINUS_ELEMENTS);
registry.insert(IconType::FolderOpenDot, FOLDER_OPEN_DOT_ELEMENTS);
registry.insert(IconType::FolderOpen, FOLDER_OPEN_ELEMENTS);
registry.insert(IconType::FolderOutput, FOLDER_OUTPUT_ELEMENTS);
registry.insert(IconType::FolderPen, FOLDER_PEN_ELEMENTS);
registry.insert(IconType::FolderPlus, FOLDER_PLUS_ELEMENTS);
registry.insert(IconType::FolderRoot, FOLDER_ROOT_ELEMENTS);
registry.insert(IconType::FolderSearch2, FOLDER_SEARCH2_ELEMENTS);
registry.insert(IconType::FolderSearch, FOLDER_SEARCH_ELEMENTS);
registry.insert(IconType::FolderSymlink, FOLDER_SYMLINK_ELEMENTS);
registry.insert(IconType::FolderSync, FOLDER_SYNC_ELEMENTS);
registry.insert(IconType::FolderTree, FOLDER_TREE_ELEMENTS);
registry.insert(IconType::FolderUp, FOLDER_UP_ELEMENTS);
registry.insert(IconType::FolderX, FOLDER_X_ELEMENTS);
registry.insert(IconType::Folder, FOLDER_ELEMENTS);
registry.insert(IconType::Folders, FOLDERS_ELEMENTS);
registry.insert(IconType::Footprints, FOOTPRINTS_ELEMENTS);
registry.insert(IconType::Forklift, FORKLIFT_ELEMENTS);
registry.insert(IconType::Forward, FORWARD_ELEMENTS);
registry.insert(IconType::Frame, FRAME_ELEMENTS);
registry.insert(IconType::Framer, FRAMER_ELEMENTS);
registry.insert(IconType::Frown, FROWN_ELEMENTS);
registry.insert(IconType::Fuel, FUEL_ELEMENTS);
registry.insert(IconType::Fullscreen, FULLSCREEN_ELEMENTS);
registry.insert(IconType::FunnelPlus, FUNNEL_PLUS_ELEMENTS);
registry.insert(IconType::FunnelX, FUNNEL_X_ELEMENTS);
registry.insert(IconType::Funnel, FUNNEL_ELEMENTS);
registry.insert(IconType::GalleryHorizontalEnd, GALLERY_HORIZONTAL_END_ELEMENTS);
registry.insert(IconType::GalleryHorizontal, GALLERY_HORIZONTAL_ELEMENTS);
registry.insert(IconType::GalleryThumbnails, GALLERY_THUMBNAILS_ELEMENTS);
registry.insert(IconType::GalleryVerticalEnd, GALLERY_VERTICAL_END_ELEMENTS);
registry.insert(IconType::GalleryVertical, GALLERY_VERTICAL_ELEMENTS);
registry.insert(IconType::Gamepad2, GAMEPAD2_ELEMENTS);
registry.insert(IconType::Gamepad, GAMEPAD_ELEMENTS);
registry.insert(IconType::Gauge, GAUGE_ELEMENTS);
registry.insert(IconType::Gavel, GAVEL_ELEMENTS);
registry.insert(IconType::Gem, GEM_ELEMENTS);
registry.insert(IconType::GeorgianLari, GEORGIAN_LARI_ELEMENTS);
registry.insert(IconType::Ghost, GHOST_ELEMENTS);
registry.insert(IconType::Gift, GIFT_ELEMENTS);
registry.insert(IconType::GitBranchPlus, GIT_BRANCH_PLUS_ELEMENTS);
registry.insert(IconType::GitBranch, GIT_BRANCH_ELEMENTS);
registry.insert(IconType::GitCommitHorizontal, GIT_COMMIT_HORIZONTAL_ELEMENTS);
registry.insert(IconType::GitCommitVertical, GIT_COMMIT_VERTICAL_ELEMENTS);
registry.insert(IconType::GitCompareArrows, GIT_COMPARE_ARROWS_ELEMENTS);
registry.insert(IconType::GitCompare, GIT_COMPARE_ELEMENTS);
registry.insert(IconType::GitFork, GIT_FORK_ELEMENTS);
registry.insert(IconType::GitGraph, GIT_GRAPH_ELEMENTS);
registry.insert(IconType::GitMerge, GIT_MERGE_ELEMENTS);
registry.insert(IconType::GitPullRequestArrow, GIT_PULL_REQUEST_ARROW_ELEMENTS);
registry.insert(IconType::GitPullRequestClosed, GIT_PULL_REQUEST_CLOSED_ELEMENTS);
registry.insert(IconType::GitPullRequestCreateArrow, GIT_PULL_REQUEST_CREATE_ARROW_ELEMENTS);
registry.insert(IconType::GitPullRequestCreate, GIT_PULL_REQUEST_CREATE_ELEMENTS);
registry.insert(IconType::GitPullRequestDraft, GIT_PULL_REQUEST_DRAFT_ELEMENTS);
registry.insert(IconType::GitPullRequest, GIT_PULL_REQUEST_ELEMENTS);
registry.insert(IconType::Github, GITHUB_ELEMENTS);
registry.insert(IconType::Gitlab, GITLAB_ELEMENTS);
registry.insert(IconType::GlassWater, GLASS_WATER_ELEMENTS);
registry.insert(IconType::Glasses, GLASSES_ELEMENTS);
registry.insert(IconType::GlobeLock, GLOBE_LOCK_ELEMENTS);
registry.insert(IconType::Globe, GLOBE_ELEMENTS);
registry.insert(IconType::Goal, GOAL_ELEMENTS);
registry.insert(IconType::Gpu, GPU_ELEMENTS);
registry.insert(IconType::Grab, GRAB_ELEMENTS);
registry.insert(IconType::GraduationCap, GRADUATION_CAP_ELEMENTS);
registry.insert(IconType::Grape, GRAPE_ELEMENTS);
registry.insert(IconType::Grid2X2Check, GRID2_X2_CHECK_ELEMENTS);
registry.insert(IconType::Grid2X2Plus, GRID2_X2_PLUS_ELEMENTS);
registry.insert(IconType::Grid2X2X, GRID2_X2_X_ELEMENTS);
registry.insert(IconType::Grid2X2, GRID2_X2_ELEMENTS);
registry.insert(IconType::Grid3X2, GRID3_X2_ELEMENTS);
registry.insert(IconType::Grid3X3, GRID3_X3_ELEMENTS);
registry.insert(IconType::GripHorizontal, GRIP_HORIZONTAL_ELEMENTS);
registry.insert(IconType::GripVertical, GRIP_VERTICAL_ELEMENTS);
registry.insert(IconType::Grip, GRIP_ELEMENTS);
registry.insert(IconType::Group, GROUP_ELEMENTS);
registry.insert(IconType::Guitar, GUITAR_ELEMENTS);
registry.insert(IconType::Ham, HAM_ELEMENTS);
registry.insert(IconType::Hamburger, HAMBURGER_ELEMENTS);
registry.insert(IconType::Hammer, HAMMER_ELEMENTS);
registry.insert(IconType::HandCoins, HAND_COINS_ELEMENTS);
registry.insert(IconType::HandHeart, HAND_HEART_ELEMENTS);
registry.insert(IconType::HandHelping, HAND_HELPING_ELEMENTS);
registry.insert(IconType::HandMetal, HAND_METAL_ELEMENTS);
registry.insert(IconType::HandPlatter, HAND_PLATTER_ELEMENTS);
registry.insert(IconType::Hand, HAND_ELEMENTS);
registry.insert(IconType::Handbag, HANDBAG_ELEMENTS);
registry.insert(IconType::Handshake, HANDSHAKE_ELEMENTS);
registry.insert(IconType::HardDriveDownload, HARD_DRIVE_DOWNLOAD_ELEMENTS);
registry.insert(IconType::HardDriveUpload, HARD_DRIVE_UPLOAD_ELEMENTS);
registry.insert(IconType::HardDrive, HARD_DRIVE_ELEMENTS);
registry.insert(IconType::HardHat, HARD_HAT_ELEMENTS);
registry.insert(IconType::Hash, HASH_ELEMENTS);
registry.insert(IconType::HatGlasses, HAT_GLASSES_ELEMENTS);
registry.insert(IconType::Haze, HAZE_ELEMENTS);
registry.insert(IconType::HdmiPort, HDMI_PORT_ELEMENTS);
registry.insert(IconType::Heading1, HEADING1_ELEMENTS);
registry.insert(IconType::Heading2, HEADING2_ELEMENTS);
registry.insert(IconType::Heading3, HEADING3_ELEMENTS);
registry.insert(IconType::Heading4, HEADING4_ELEMENTS);
registry.insert(IconType::Heading5, HEADING5_ELEMENTS);
registry.insert(IconType::Heading6, HEADING6_ELEMENTS);
registry.insert(IconType::Heading, HEADING_ELEMENTS);
registry.insert(IconType::HeadphoneOff, HEADPHONE_OFF_ELEMENTS);
registry.insert(IconType::Headphones, HEADPHONES_ELEMENTS);
registry.insert(IconType::Headset, HEADSET_ELEMENTS);
registry.insert(IconType::HeartCrack, HEART_CRACK_ELEMENTS);
registry.insert(IconType::HeartHandshake, HEART_HANDSHAKE_ELEMENTS);
registry.insert(IconType::HeartMinus, HEART_MINUS_ELEMENTS);
registry.insert(IconType::HeartOff, HEART_OFF_ELEMENTS);
registry.insert(IconType::HeartPlus, HEART_PLUS_ELEMENTS);
registry.insert(IconType::HeartPulse, HEART_PULSE_ELEMENTS);
registry.insert(IconType::Heart, HEART_ELEMENTS);
registry.insert(IconType::Heater, HEATER_ELEMENTS);
registry.insert(IconType::Hexagon, HEXAGON_ELEMENTS);
registry.insert(IconType::Highlighter, HIGHLIGHTER_ELEMENTS);
registry.insert(IconType::History, HISTORY_ELEMENTS);
registry.insert(IconType::HopOff, HOP_OFF_ELEMENTS);
registry.insert(IconType::Hop, HOP_ELEMENTS);
registry.insert(IconType::Hospital, HOSPITAL_ELEMENTS);
registry.insert(IconType::Hotel, HOTEL_ELEMENTS);
registry.insert(IconType::Hourglass, HOURGLASS_ELEMENTS);
registry.insert(IconType::HousePlug, HOUSE_PLUG_ELEMENTS);
registry.insert(IconType::HousePlus, HOUSE_PLUS_ELEMENTS);
registry.insert(IconType::HouseWifi, HOUSE_WIFI_ELEMENTS);
registry.insert(IconType::House, HOUSE_ELEMENTS);
registry.insert(IconType::IceCreamBowl, ICE_CREAM_BOWL_ELEMENTS);
registry.insert(IconType::IceCreamCone, ICE_CREAM_CONE_ELEMENTS);
registry.insert(IconType::IdCardLanyard, ID_CARD_LANYARD_ELEMENTS);
registry.insert(IconType::IdCard, ID_CARD_ELEMENTS);
registry.insert(IconType::ImageDown, IMAGE_DOWN_ELEMENTS);
registry.insert(IconType::ImageMinus, IMAGE_MINUS_ELEMENTS);
registry.insert(IconType::ImageOff, IMAGE_OFF_ELEMENTS);
registry.insert(IconType::ImagePlay, IMAGE_PLAY_ELEMENTS);
registry.insert(IconType::ImagePlus, IMAGE_PLUS_ELEMENTS);
registry.insert(IconType::ImageUp, IMAGE_UP_ELEMENTS);
registry.insert(IconType::ImageUpscale, IMAGE_UPSCALE_ELEMENTS);
registry.insert(IconType::Image, IMAGE_ELEMENTS);
registry.insert(IconType::Images, IMAGES_ELEMENTS);
registry.insert(IconType::Import, IMPORT_ELEMENTS);
registry.insert(IconType::Inbox, INBOX_ELEMENTS);
registry.insert(IconType::IndentDecrease, INDENT_DECREASE_ELEMENTS);
registry.insert(IconType::IndentIncrease, INDENT_INCREASE_ELEMENTS);
registry.insert(IconType::IndianRupee, INDIAN_RUPEE_ELEMENTS);
registry.insert(IconType::Infinity, INFINITY_ELEMENTS);
registry.insert(IconType::Info, INFO_ELEMENTS);
registry.insert(IconType::InspectionPanel, INSPECTION_PANEL_ELEMENTS);
registry.insert(IconType::Instagram, INSTAGRAM_ELEMENTS);
registry.insert(IconType::Italic, ITALIC_ELEMENTS);
registry.insert(IconType::IterationCcw, ITERATION_CCW_ELEMENTS);
registry.insert(IconType::IterationCw, ITERATION_CW_ELEMENTS);
registry.insert(IconType::JapaneseYen, JAPANESE_YEN_ELEMENTS);
registry.insert(IconType::Joystick, JOYSTICK_ELEMENTS);
registry.insert(IconType::Kanban, KANBAN_ELEMENTS);
registry.insert(IconType::KeyRound, KEY_ROUND_ELEMENTS);
registry.insert(IconType::KeySquare, KEY_SQUARE_ELEMENTS);
registry.insert(IconType::Key, KEY_ELEMENTS);
registry.insert(IconType::KeyboardMusic, KEYBOARD_MUSIC_ELEMENTS);
registry.insert(IconType::KeyboardOff, KEYBOARD_OFF_ELEMENTS);
registry.insert(IconType::Keyboard, KEYBOARD_ELEMENTS);
registry.insert(IconType::LampCeiling, LAMP_CEILING_ELEMENTS);
registry.insert(IconType::LampDesk, LAMP_DESK_ELEMENTS);
registry.insert(IconType::LampFloor, LAMP_FLOOR_ELEMENTS);
registry.insert(IconType::LampWallDown, LAMP_WALL_DOWN_ELEMENTS);
registry.insert(IconType::LampWallUp, LAMP_WALL_UP_ELEMENTS);
registry.insert(IconType::Lamp, LAMP_ELEMENTS);
registry.insert(IconType::LandPlot, LAND_PLOT_ELEMENTS);
registry.insert(IconType::Landmark, LANDMARK_ELEMENTS);
registry.insert(IconType::Languages, LANGUAGES_ELEMENTS);
registry.insert(IconType::LaptopMinimalCheck, LAPTOP_MINIMAL_CHECK_ELEMENTS);
registry.insert(IconType::LaptopMinimal, LAPTOP_MINIMAL_ELEMENTS);
registry.insert(IconType::Laptop, LAPTOP_ELEMENTS);
registry.insert(IconType::LassoSelect, LASSO_SELECT_ELEMENTS);
registry.insert(IconType::Lasso, LASSO_ELEMENTS);
registry.insert(IconType::Laugh, LAUGH_ELEMENTS);
registry.insert(IconType::Layers2, LAYERS2_ELEMENTS);
registry.insert(IconType::Layers3, LAYERS3_ELEMENTS);
registry.insert(IconType::Layers, LAYERS_ELEMENTS);
registry.insert(IconType::LayoutDashboard, LAYOUT_DASHBOARD_ELEMENTS);
registry.insert(IconType::LayoutGrid, LAYOUT_GRID_ELEMENTS);
registry.insert(IconType::LayoutList, LAYOUT_LIST_ELEMENTS);
registry.insert(IconType::LayoutPanelLeft, LAYOUT_PANEL_LEFT_ELEMENTS);
registry.insert(IconType::LayoutPanelTop, LAYOUT_PANEL_TOP_ELEMENTS);
registry.insert(IconType::LayoutTemplate, LAYOUT_TEMPLATE_ELEMENTS);
registry.insert(IconType::Leaf, LEAF_ELEMENTS);
registry.insert(IconType::LeafyGreen, LEAFY_GREEN_ELEMENTS);
registry.insert(IconType::Lectern, LECTERN_ELEMENTS);
registry.insert(IconType::LetterText, LETTER_TEXT_ELEMENTS);
registry.insert(IconType::Lib, LIB_ELEMENTS);
registry.insert(IconType::LibraryBig, LIBRARY_BIG_ELEMENTS);
registry.insert(IconType::Library, LIBRARY_ELEMENTS);
registry.insert(IconType::LifeBuoy, LIFE_BUOY_ELEMENTS);
registry.insert(IconType::Ligature, LIGATURE_ELEMENTS);
registry.insert(IconType::LightbulbOff, LIGHTBULB_OFF_ELEMENTS);
registry.insert(IconType::Lightbulb, LIGHTBULB_ELEMENTS);
registry.insert(IconType::LineSquiggle, LINE_SQUIGGLE_ELEMENTS);
registry.insert(IconType::Link2Off, LINK2_OFF_ELEMENTS);
registry.insert(IconType::Link2, LINK2_ELEMENTS);
registry.insert(IconType::Link, LINK_ELEMENTS);
registry.insert(IconType::Linkedin, LINKEDIN_ELEMENTS);
registry.insert(IconType::ListCheck, LIST_CHECK_ELEMENTS);
registry.insert(IconType::ListChecks, LIST_CHECKS_ELEMENTS);
registry.insert(IconType::ListCollapse, LIST_COLLAPSE_ELEMENTS);
registry.insert(IconType::ListEnd, LIST_END_ELEMENTS);
registry.insert(IconType::ListFilterPlus, LIST_FILTER_PLUS_ELEMENTS);
registry.insert(IconType::ListFilter, LIST_FILTER_ELEMENTS);
registry.insert(IconType::ListMinus, LIST_MINUS_ELEMENTS);
registry.insert(IconType::ListMusic, LIST_MUSIC_ELEMENTS);
registry.insert(IconType::ListOrdered, LIST_ORDERED_ELEMENTS);
registry.insert(IconType::ListPlus, LIST_PLUS_ELEMENTS);
registry.insert(IconType::ListRestart, LIST_RESTART_ELEMENTS);
registry.insert(IconType::ListStart, LIST_START_ELEMENTS);
registry.insert(IconType::ListTodo, LIST_TODO_ELEMENTS);
registry.insert(IconType::ListTree, LIST_TREE_ELEMENTS);
registry.insert(IconType::ListVideo, LIST_VIDEO_ELEMENTS);
registry.insert(IconType::ListX, LIST_X_ELEMENTS);
registry.insert(IconType::List, LIST_ELEMENTS);
registry.insert(IconType::LoaderCircle, LOADER_CIRCLE_ELEMENTS);
registry.insert(IconType::LoaderPinwheel, LOADER_PINWHEEL_ELEMENTS);
registry.insert(IconType::Loader, LOADER_ELEMENTS);
registry.insert(IconType::LocateFixed, LOCATE_FIXED_ELEMENTS);
registry.insert(IconType::LocateOff, LOCATE_OFF_ELEMENTS);
registry.insert(IconType::Locate, LOCATE_ELEMENTS);
registry.insert(IconType::LocationEdit, LOCATION_EDIT_ELEMENTS);
registry.insert(IconType::LockKeyholeOpen, LOCK_KEYHOLE_OPEN_ELEMENTS);
registry.insert(IconType::LockKeyhole, LOCK_KEYHOLE_ELEMENTS);
registry.insert(IconType::LockOpen, LOCK_OPEN_ELEMENTS);
registry.insert(IconType::Lock, LOCK_ELEMENTS);
registry.insert(IconType::LogIn, LOG_IN_ELEMENTS);
registry.insert(IconType::LogOut, LOG_OUT_ELEMENTS);
registry.insert(IconType::Logs, LOGS_ELEMENTS);
registry.insert(IconType::Lollipop, LOLLIPOP_ELEMENTS);
registry.insert(IconType::Luggage, LUGGAGE_ELEMENTS);
registry.insert(IconType::Magnet, MAGNET_ELEMENTS);
registry.insert(IconType::MailCheck, MAIL_CHECK_ELEMENTS);
registry.insert(IconType::MailMinus, MAIL_MINUS_ELEMENTS);
registry.insert(IconType::MailOpen, MAIL_OPEN_ELEMENTS);
registry.insert(IconType::MailPlus, MAIL_PLUS_ELEMENTS);
registry.insert(IconType::MailQuestionMark, MAIL_QUESTION_MARK_ELEMENTS);
registry.insert(IconType::MailQuestion, MAIL_QUESTION_ELEMENTS);
registry.insert(IconType::MailSearch, MAIL_SEARCH_ELEMENTS);
registry.insert(IconType::MailWarning, MAIL_WARNING_ELEMENTS);
registry.insert(IconType::MailX, MAIL_X_ELEMENTS);
registry.insert(IconType::Mail, MAIL_ELEMENTS);
registry.insert(IconType::Mailbox, MAILBOX_ELEMENTS);
registry.insert(IconType::Mails, MAILS_ELEMENTS);
registry.insert(IconType::MapMinus, MAP_MINUS_ELEMENTS);
registry.insert(IconType::MapPinCheckInside, MAP_PIN_CHECK_INSIDE_ELEMENTS);
registry.insert(IconType::MapPinCheck, MAP_PIN_CHECK_ELEMENTS);
registry.insert(IconType::MapPinHouse, MAP_PIN_HOUSE_ELEMENTS);
registry.insert(IconType::MapPinMinusInside, MAP_PIN_MINUS_INSIDE_ELEMENTS);
registry.insert(IconType::MapPinMinus, MAP_PIN_MINUS_ELEMENTS);
registry.insert(IconType::MapPinOff, MAP_PIN_OFF_ELEMENTS);
registry.insert(IconType::MapPinPen, MAP_PIN_PEN_ELEMENTS);
registry.insert(IconType::MapPinPlusInside, MAP_PIN_PLUS_INSIDE_ELEMENTS);
registry.insert(IconType::MapPinPlus, MAP_PIN_PLUS_ELEMENTS);
registry.insert(IconType::MapPinXInside, MAP_PIN_X_INSIDE_ELEMENTS);
registry.insert(IconType::MapPinX, MAP_PIN_X_ELEMENTS);
registry.insert(IconType::MapPin, MAP_PIN_ELEMENTS);
registry.insert(IconType::MapPinned, MAP_PINNED_ELEMENTS);
registry.insert(IconType::MapPlus, MAP_PLUS_ELEMENTS);
registry.insert(IconType::Map, MAP_ELEMENTS);
registry.insert(IconType::MarsStroke, MARS_STROKE_ELEMENTS);
registry.insert(IconType::Mars, MARS_ELEMENTS);
registry.insert(IconType::Martini, MARTINI_ELEMENTS);
registry.insert(IconType::Maximize2, MAXIMIZE2_ELEMENTS);
registry.insert(IconType::Maximize, MAXIMIZE_ELEMENTS);
registry.insert(IconType::Medal, MEDAL_ELEMENTS);
registry.insert(IconType::MegaphoneOff, MEGAPHONE_OFF_ELEMENTS);
registry.insert(IconType::Megaphone, MEGAPHONE_ELEMENTS);
registry.insert(IconType::Meh, MEH_ELEMENTS);
registry.insert(IconType::MemoryStick, MEMORY_STICK_ELEMENTS);
registry.insert(IconType::Menu, MENU_ELEMENTS);
registry.insert(IconType::Merge, MERGE_ELEMENTS);
registry.insert(IconType::MessageCircleCode, MESSAGE_CIRCLE_CODE_ELEMENTS);
registry.insert(IconType::MessageCircleDashed, MESSAGE_CIRCLE_DASHED_ELEMENTS);
registry.insert(IconType::MessageCircleHeart, MESSAGE_CIRCLE_HEART_ELEMENTS);
registry.insert(IconType::MessageCircleMore, MESSAGE_CIRCLE_MORE_ELEMENTS);
registry.insert(IconType::MessageCircleOff, MESSAGE_CIRCLE_OFF_ELEMENTS);
registry.insert(IconType::MessageCirclePlus, MESSAGE_CIRCLE_PLUS_ELEMENTS);
registry.insert(IconType::MessageCircleQuestionMark, MESSAGE_CIRCLE_QUESTION_MARK_ELEMENTS);
registry.insert(IconType::MessageCircleQuestion, MESSAGE_CIRCLE_QUESTION_ELEMENTS);
registry.insert(IconType::MessageCircleReply, MESSAGE_CIRCLE_REPLY_ELEMENTS);
registry.insert(IconType::MessageCircleWarning, MESSAGE_CIRCLE_WARNING_ELEMENTS);
registry.insert(IconType::MessageCircleX, MESSAGE_CIRCLE_X_ELEMENTS);
registry.insert(IconType::MessageCircle, MESSAGE_CIRCLE_ELEMENTS);
registry.insert(IconType::MessageSquareCode, MESSAGE_SQUARE_CODE_ELEMENTS);
registry.insert(IconType::MessageSquareDashed, MESSAGE_SQUARE_DASHED_ELEMENTS);
registry.insert(IconType::MessageSquareDiff, MESSAGE_SQUARE_DIFF_ELEMENTS);
registry.insert(IconType::MessageSquareDot, MESSAGE_SQUARE_DOT_ELEMENTS);
registry.insert(IconType::MessageSquareHeart, MESSAGE_SQUARE_HEART_ELEMENTS);
registry.insert(IconType::MessageSquareLock, MESSAGE_SQUARE_LOCK_ELEMENTS);
registry.insert(IconType::MessageSquareMore, MESSAGE_SQUARE_MORE_ELEMENTS);
registry.insert(IconType::MessageSquareOff, MESSAGE_SQUARE_OFF_ELEMENTS);
registry.insert(IconType::MessageSquarePlus, MESSAGE_SQUARE_PLUS_ELEMENTS);
registry.insert(IconType::MessageSquareQuote, MESSAGE_SQUARE_QUOTE_ELEMENTS);
registry.insert(IconType::MessageSquareReply, MESSAGE_SQUARE_REPLY_ELEMENTS);
registry.insert(IconType::MessageSquareShare, MESSAGE_SQUARE_SHARE_ELEMENTS);
registry.insert(IconType::MessageSquareText, MESSAGE_SQUARE_TEXT_ELEMENTS);
registry.insert(IconType::MessageSquareWarning, MESSAGE_SQUARE_WARNING_ELEMENTS);
registry.insert(IconType::MessageSquareX, MESSAGE_SQUARE_X_ELEMENTS);
registry.insert(IconType::MessageSquare, MESSAGE_SQUARE_ELEMENTS);
registry.insert(IconType::MessagesSquare, MESSAGES_SQUARE_ELEMENTS);
registry.insert(IconType::MicOff, MIC_OFF_ELEMENTS);
registry.insert(IconType::MicVocal, MIC_VOCAL_ELEMENTS);
registry.insert(IconType::Mic, MIC_ELEMENTS);
registry.insert(IconType::Microchip, MICROCHIP_ELEMENTS);
registry.insert(IconType::Microscope, MICROSCOPE_ELEMENTS);
registry.insert(IconType::Microwave, MICROWAVE_ELEMENTS);
registry.insert(IconType::Milestone, MILESTONE_ELEMENTS);
registry.insert(IconType::MilkOff, MILK_OFF_ELEMENTS);
registry.insert(IconType::Milk, MILK_ELEMENTS);
registry.insert(IconType::Minimize2, MINIMIZE2_ELEMENTS);
registry.insert(IconType::Minimize, MINIMIZE_ELEMENTS);
registry.insert(IconType::Minus, MINUS_ELEMENTS);
registry.insert(IconType::MonitorCheck, MONITOR_CHECK_ELEMENTS);
registry.insert(IconType::MonitorCog, MONITOR_COG_ELEMENTS);
registry.insert(IconType::MonitorDot, MONITOR_DOT_ELEMENTS);
registry.insert(IconType::MonitorDown, MONITOR_DOWN_ELEMENTS);
registry.insert(IconType::MonitorOff, MONITOR_OFF_ELEMENTS);
registry.insert(IconType::MonitorPause, MONITOR_PAUSE_ELEMENTS);
registry.insert(IconType::MonitorPlay, MONITOR_PLAY_ELEMENTS);
registry.insert(IconType::MonitorSmartphone, MONITOR_SMARTPHONE_ELEMENTS);
registry.insert(IconType::MonitorSpeaker, MONITOR_SPEAKER_ELEMENTS);
registry.insert(IconType::MonitorStop, MONITOR_STOP_ELEMENTS);
registry.insert(IconType::MonitorUp, MONITOR_UP_ELEMENTS);
registry.insert(IconType::MonitorX, MONITOR_X_ELEMENTS);
registry.insert(IconType::Monitor, MONITOR_ELEMENTS);
registry.insert(IconType::MoonStar, MOON_STAR_ELEMENTS);
registry.insert(IconType::Moon, MOON_ELEMENTS);
registry.insert(IconType::MountainSnow, MOUNTAIN_SNOW_ELEMENTS);
registry.insert(IconType::Mountain, MOUNTAIN_ELEMENTS);
registry.insert(IconType::MouseOff, MOUSE_OFF_ELEMENTS);
registry.insert(IconType::MousePointer2, MOUSE_POINTER2_ELEMENTS);
registry.insert(IconType::MousePointerBan, MOUSE_POINTER_BAN_ELEMENTS);
registry.insert(IconType::MousePointerClick, MOUSE_POINTER_CLICK_ELEMENTS);
registry.insert(IconType::MousePointer, MOUSE_POINTER_ELEMENTS);
registry.insert(IconType::Mouse, MOUSE_ELEMENTS);
registry.insert(IconType::Move3D, MOVE3_D_ELEMENTS);
registry.insert(IconType::MoveDiagonal2, MOVE_DIAGONAL2_ELEMENTS);
registry.insert(IconType::MoveDiagonal, MOVE_DIAGONAL_ELEMENTS);
registry.insert(IconType::MoveDownLeft, MOVE_DOWN_LEFT_ELEMENTS);
registry.insert(IconType::MoveDownRight, MOVE_DOWN_RIGHT_ELEMENTS);
registry.insert(IconType::MoveDown, MOVE_DOWN_ELEMENTS);
registry.insert(IconType::MoveHorizontal, MOVE_HORIZONTAL_ELEMENTS);
registry.insert(IconType::MoveLeft, MOVE_LEFT_ELEMENTS);
registry.insert(IconType::MoveRight, MOVE_RIGHT_ELEMENTS);
registry.insert(IconType::MoveUpLeft, MOVE_UP_LEFT_ELEMENTS);
registry.insert(IconType::MoveUpRight, MOVE_UP_RIGHT_ELEMENTS);
registry.insert(IconType::MoveUp, MOVE_UP_ELEMENTS);
registry.insert(IconType::MoveVertical, MOVE_VERTICAL_ELEMENTS);
registry.insert(IconType::Move, MOVE_ELEMENTS);
registry.insert(IconType::Music2, MUSIC2_ELEMENTS);
registry.insert(IconType::Music3, MUSIC3_ELEMENTS);
registry.insert(IconType::Music4, MUSIC4_ELEMENTS);
registry.insert(IconType::Music, MUSIC_ELEMENTS);
registry.insert(IconType::Navigation2Off, NAVIGATION2_OFF_ELEMENTS);
registry.insert(IconType::Navigation2, NAVIGATION2_ELEMENTS);
registry.insert(IconType::NavigationOff, NAVIGATION_OFF_ELEMENTS);
registry.insert(IconType::Navigation, NAVIGATION_ELEMENTS);
registry.insert(IconType::Network, NETWORK_ELEMENTS);
registry.insert(IconType::Newspaper, NEWSPAPER_ELEMENTS);
registry.insert(IconType::Nfc, NFC_ELEMENTS);
registry.insert(IconType::NonBinary, NON_BINARY_ELEMENTS);
registry.insert(IconType::NotebookPen, NOTEBOOK_PEN_ELEMENTS);
registry.insert(IconType::NotebookTabs, NOTEBOOK_TABS_ELEMENTS);
registry.insert(IconType::NotebookText, NOTEBOOK_TEXT_ELEMENTS);
registry.insert(IconType::Notebook, NOTEBOOK_ELEMENTS);
registry.insert(IconType::NotepadTextDashed, NOTEPAD_TEXT_DASHED_ELEMENTS);
registry.insert(IconType::NotepadText, NOTEPAD_TEXT_ELEMENTS);
registry.insert(IconType::NutOff, NUT_OFF_ELEMENTS);
registry.insert(IconType::Nut, NUT_ELEMENTS);
registry.insert(IconType::OctagonAlert, OCTAGON_ALERT_ELEMENTS);
registry.insert(IconType::OctagonMinus, OCTAGON_MINUS_ELEMENTS);
registry.insert(IconType::OctagonPause, OCTAGON_PAUSE_ELEMENTS);
registry.insert(IconType::OctagonX, OCTAGON_X_ELEMENTS);
registry.insert(IconType::Octagon, OCTAGON_ELEMENTS);
registry.insert(IconType::Omega, OMEGA_ELEMENTS);
// registry.insert(IconType::Option, OPTION_ELEMENTS);
registry.insert(IconType::Orbit, ORBIT_ELEMENTS);
registry.insert(IconType::Origami, ORIGAMI_ELEMENTS);
registry.insert(IconType::Package2, PACKAGE2_ELEMENTS);
registry.insert(IconType::PackageCheck, PACKAGE_CHECK_ELEMENTS);
registry.insert(IconType::PackageMinus, PACKAGE_MINUS_ELEMENTS);
registry.insert(IconType::PackageOpen, PACKAGE_OPEN_ELEMENTS);
registry.insert(IconType::PackagePlus, PACKAGE_PLUS_ELEMENTS);
registry.insert(IconType::PackageSearch, PACKAGE_SEARCH_ELEMENTS);
registry.insert(IconType::PackageX, PACKAGE_X_ELEMENTS);
registry.insert(IconType::Package, PACKAGE_ELEMENTS);
registry.insert(IconType::PaintBucket, PAINT_BUCKET_ELEMENTS);
registry.insert(IconType::PaintRoller, PAINT_ROLLER_ELEMENTS);
registry.insert(IconType::PaintbrushVertical, PAINTBRUSH_VERTICAL_ELEMENTS);
registry.insert(IconType::Paintbrush, PAINTBRUSH_ELEMENTS);
registry.insert(IconType::Palette, PALETTE_ELEMENTS);
registry.insert(IconType::Panda, PANDA_ELEMENTS);
registry.insert(IconType::PanelBottomClose, PANEL_BOTTOM_CLOSE_ELEMENTS);
registry.insert(IconType::PanelBottomDashed, PANEL_BOTTOM_DASHED_ELEMENTS);
registry.insert(IconType::PanelBottomOpen, PANEL_BOTTOM_OPEN_ELEMENTS);
registry.insert(IconType::PanelBottom, PANEL_BOTTOM_ELEMENTS);
registry.insert(IconType::PanelLeftClose, PANEL_LEFT_CLOSE_ELEMENTS);
registry.insert(IconType::PanelLeftDashed, PANEL_LEFT_DASHED_ELEMENTS);
registry.insert(IconType::PanelLeftOpen, PANEL_LEFT_OPEN_ELEMENTS);
registry.insert(IconType::PanelLeft, PANEL_LEFT_ELEMENTS);
registry.insert(IconType::PanelRightClose, PANEL_RIGHT_CLOSE_ELEMENTS);
registry.insert(IconType::PanelRightDashed, PANEL_RIGHT_DASHED_ELEMENTS);
registry.insert(IconType::PanelRightOpen, PANEL_RIGHT_OPEN_ELEMENTS);
registry.insert(IconType::PanelRight, PANEL_RIGHT_ELEMENTS);
registry.insert(IconType::PanelTopClose, PANEL_TOP_CLOSE_ELEMENTS);
registry.insert(IconType::PanelTopDashed, PANEL_TOP_DASHED_ELEMENTS);
registry.insert(IconType::PanelTopOpen, PANEL_TOP_OPEN_ELEMENTS);
registry.insert(IconType::PanelTop, PANEL_TOP_ELEMENTS);
registry.insert(IconType::PanelsLeftBottom, PANELS_LEFT_BOTTOM_ELEMENTS);
registry.insert(IconType::PanelsRightBottom, PANELS_RIGHT_BOTTOM_ELEMENTS);
registry.insert(IconType::PanelsTopLeft, PANELS_TOP_LEFT_ELEMENTS);
registry.insert(IconType::Paperclip, PAPERCLIP_ELEMENTS);
registry.insert(IconType::Parentheses, PARENTHESES_ELEMENTS);
registry.insert(IconType::ParkingMeter, PARKING_METER_ELEMENTS);
registry.insert(IconType::PartyPopper, PARTY_POPPER_ELEMENTS);
registry.insert(IconType::Pause, PAUSE_ELEMENTS);
registry.insert(IconType::PawPrint, PAW_PRINT_ELEMENTS);
registry.insert(IconType::PcCase, PC_CASE_ELEMENTS);
registry.insert(IconType::PenLine, PEN_LINE_ELEMENTS);
registry.insert(IconType::PenOff, PEN_OFF_ELEMENTS);
registry.insert(IconType::PenTool, PEN_TOOL_ELEMENTS);
registry.insert(IconType::Pen, PEN_ELEMENTS);
registry.insert(IconType::PencilLine, PENCIL_LINE_ELEMENTS);
registry.insert(IconType::PencilOff, PENCIL_OFF_ELEMENTS);
registry.insert(IconType::PencilRuler, PENCIL_RULER_ELEMENTS);
registry.insert(IconType::Pencil, PENCIL_ELEMENTS);
registry.insert(IconType::Pentagon, PENTAGON_ELEMENTS);
registry.insert(IconType::Percent, PERCENT_ELEMENTS);
registry.insert(IconType::PersonStanding, PERSON_STANDING_ELEMENTS);
registry.insert(IconType::PhilippinePeso, PHILIPPINE_PESO_ELEMENTS);
registry.insert(IconType::PhoneCall, PHONE_CALL_ELEMENTS);
registry.insert(IconType::PhoneForwarded, PHONE_FORWARDED_ELEMENTS);
registry.insert(IconType::PhoneIncoming, PHONE_INCOMING_ELEMENTS);
registry.insert(IconType::PhoneMissed, PHONE_MISSED_ELEMENTS);
registry.insert(IconType::PhoneOff, PHONE_OFF_ELEMENTS);
registry.insert(IconType::PhoneOutgoing, PHONE_OUTGOING_ELEMENTS);
registry.insert(IconType::Phone, PHONE_ELEMENTS);
registry.insert(IconType::Pi, PI_ELEMENTS);
registry.insert(IconType::Piano, PIANO_ELEMENTS);
registry.insert(IconType::Pickaxe, PICKAXE_ELEMENTS);
registry.insert(IconType::PictureInPicture2, PICTURE_IN_PICTURE2_ELEMENTS);
registry.insert(IconType::PictureInPicture, PICTURE_IN_PICTURE_ELEMENTS);
registry.insert(IconType::PiggyBank, PIGGY_BANK_ELEMENTS);
registry.insert(IconType::PilcrowLeft, PILCROW_LEFT_ELEMENTS);
registry.insert(IconType::PilcrowRight, PILCROW_RIGHT_ELEMENTS);
registry.insert(IconType::Pilcrow, PILCROW_ELEMENTS);
registry.insert(IconType::PillBottle, PILL_BOTTLE_ELEMENTS);
registry.insert(IconType::Pill, PILL_ELEMENTS);
registry.insert(IconType::PinOff, PIN_OFF_ELEMENTS);
registry.insert(IconType::Pin, PIN_ELEMENTS);
registry.insert(IconType::Pipette, PIPETTE_ELEMENTS);
registry.insert(IconType::Pizza, PIZZA_ELEMENTS);
registry.insert(IconType::PlaneLanding, PLANE_LANDING_ELEMENTS);
registry.insert(IconType::PlaneTakeoff, PLANE_TAKEOFF_ELEMENTS);
registry.insert(IconType::Plane, PLANE_ELEMENTS);
registry.insert(IconType::Play, PLAY_ELEMENTS);
registry.insert(IconType::Plug2, PLUG2_ELEMENTS);
registry.insert(IconType::PlugZap, PLUG_ZAP_ELEMENTS);
registry.insert(IconType::Plug, PLUG_ELEMENTS);
registry.insert(IconType::Plus, PLUS_ELEMENTS);
registry.insert(IconType::PocketKnife, POCKET_KNIFE_ELEMENTS);
registry.insert(IconType::Pocket, POCKET_ELEMENTS);
registry.insert(IconType::Podcast, PODCAST_ELEMENTS);
registry.insert(IconType::PointerOff, POINTER_OFF_ELEMENTS);
registry.insert(IconType::Pointer, POINTER_ELEMENTS);
registry.insert(IconType::Popcorn, POPCORN_ELEMENTS);
registry.insert(IconType::Popsicle, POPSICLE_ELEMENTS);
registry.insert(IconType::PoundSterling, POUND_STERLING_ELEMENTS);
registry.insert(IconType::PowerOff, POWER_OFF_ELEMENTS);
registry.insert(IconType::Power, POWER_ELEMENTS);
registry.insert(IconType::Presentation, PRESENTATION_ELEMENTS);
registry.insert(IconType::PrinterCheck, PRINTER_CHECK_ELEMENTS);
registry.insert(IconType::Printer, PRINTER_ELEMENTS);
registry.insert(IconType::Projector, PROJECTOR_ELEMENTS);
registry.insert(IconType::Proportions, PROPORTIONS_ELEMENTS);
registry.insert(IconType::Puzzle, PUZZLE_ELEMENTS);
registry.insert(IconType::Pyramid, PYRAMID_ELEMENTS);
registry.insert(IconType::QrCode, QR_CODE_ELEMENTS);
registry.insert(IconType::Quote, QUOTE_ELEMENTS);
registry.insert(IconType::Rabbit, RABBIT_ELEMENTS);
registry.insert(IconType::Radar, RADAR_ELEMENTS);
registry.insert(IconType::Radiation, RADIATION_ELEMENTS);
registry.insert(IconType::Radical, RADICAL_ELEMENTS);
registry.insert(IconType::RadioReceiver, RADIO_RECEIVER_ELEMENTS);
registry.insert(IconType::RadioTower, RADIO_TOWER_ELEMENTS);
registry.insert(IconType::Radio, RADIO_ELEMENTS);
registry.insert(IconType::Radius, RADIUS_ELEMENTS);
registry.insert(IconType::RailSymbol, RAIL_SYMBOL_ELEMENTS);
registry.insert(IconType::Rainbow, RAINBOW_ELEMENTS);
registry.insert(IconType::Rat, RAT_ELEMENTS);
registry.insert(IconType::Ratio, RATIO_ELEMENTS);
registry.insert(IconType::ReceiptCent, RECEIPT_CENT_ELEMENTS);
registry.insert(IconType::ReceiptEuro, RECEIPT_EURO_ELEMENTS);
registry.insert(IconType::ReceiptIndianRupee, RECEIPT_INDIAN_RUPEE_ELEMENTS);
registry.insert(IconType::ReceiptJapaneseYen, RECEIPT_JAPANESE_YEN_ELEMENTS);
registry.insert(IconType::ReceiptPoundSterling, RECEIPT_POUND_STERLING_ELEMENTS);
registry.insert(IconType::ReceiptRussianRuble, RECEIPT_RUSSIAN_RUBLE_ELEMENTS);
registry.insert(IconType::ReceiptSwissFranc, RECEIPT_SWISS_FRANC_ELEMENTS);
registry.insert(IconType::ReceiptText, RECEIPT_TEXT_ELEMENTS);
registry.insert(IconType::ReceiptTurkishLira, RECEIPT_TURKISH_LIRA_ELEMENTS);
registry.insert(IconType::Receipt, RECEIPT_ELEMENTS);
registry.insert(IconType::RectangleCircle, RECTANGLE_CIRCLE_ELEMENTS);
registry.insert(IconType::RectangleEllipsis, RECTANGLE_ELLIPSIS_ELEMENTS);
registry.insert(IconType::RectangleGoggles, RECTANGLE_GOGGLES_ELEMENTS);
registry.insert(IconType::RectangleHorizontal, RECTANGLE_HORIZONTAL_ELEMENTS);
registry.insert(IconType::RectangleVertical, RECTANGLE_VERTICAL_ELEMENTS);
registry.insert(IconType::Recycle, RECYCLE_ELEMENTS);
registry.insert(IconType::Redo2, REDO2_ELEMENTS);
registry.insert(IconType::RedoDot, REDO_DOT_ELEMENTS);
registry.insert(IconType::Redo, REDO_ELEMENTS);
registry.insert(IconType::RefreshCcwDot, REFRESH_CCW_DOT_ELEMENTS);
registry.insert(IconType::RefreshCcw, REFRESH_CCW_ELEMENTS);
registry.insert(IconType::RefreshCwOff, REFRESH_CW_OFF_ELEMENTS);
registry.insert(IconType::RefreshCw, REFRESH_CW_ELEMENTS);
registry.insert(IconType::Refrigerator, REFRIGERATOR_ELEMENTS);
registry.insert(IconType::Regex, REGEX_ELEMENTS);
registry.insert(IconType::RemoveFormatting, REMOVE_FORMATTING_ELEMENTS);
registry.insert(IconType::Repeat1, REPEAT1_ELEMENTS);
registry.insert(IconType::Repeat2, REPEAT2_ELEMENTS);
registry.insert(IconType::Repeat, REPEAT_ELEMENTS);
registry.insert(IconType::ReplaceAll, REPLACE_ALL_ELEMENTS);
registry.insert(IconType::Replace, REPLACE_ELEMENTS);
registry.insert(IconType::ReplyAll, REPLY_ALL_ELEMENTS);
registry.insert(IconType::Reply, REPLY_ELEMENTS);
registry.insert(IconType::Rewind, REWIND_ELEMENTS);
registry.insert(IconType::Ribbon, RIBBON_ELEMENTS);
registry.insert(IconType::Rocket, ROCKET_ELEMENTS);
registry.insert(IconType::RockingChair, ROCKING_CHAIR_ELEMENTS);
registry.insert(IconType::RollerCoaster, ROLLER_COASTER_ELEMENTS);
registry.insert(IconType::Rotate3D, ROTATE3_D_ELEMENTS);
registry.insert(IconType::RotateCcwKey, ROTATE_CCW_KEY_ELEMENTS);
registry.insert(IconType::RotateCcwSquare, ROTATE_CCW_SQUARE_ELEMENTS);
registry.insert(IconType::RotateCcw, ROTATE_CCW_ELEMENTS);
registry.insert(IconType::RotateCwSquare, ROTATE_CW_SQUARE_ELEMENTS);
registry.insert(IconType::RotateCw, ROTATE_CW_ELEMENTS);
registry.insert(IconType::RouteOff, ROUTE_OFF_ELEMENTS);
registry.insert(IconType::Route, ROUTE_ELEMENTS);
registry.insert(IconType::Router, ROUTER_ELEMENTS);
registry.insert(IconType::Rows2, ROWS2_ELEMENTS);
registry.insert(IconType::Rows3, ROWS3_ELEMENTS);
registry.insert(IconType::Rows4, ROWS4_ELEMENTS);
registry.insert(IconType::Rss, RSS_ELEMENTS);
registry.insert(IconType::RulerDimensionLine, RULER_DIMENSION_LINE_ELEMENTS);
registry.insert(IconType::Ruler, RULER_ELEMENTS);
registry.insert(IconType::RussianRuble, RUSSIAN_RUBLE_ELEMENTS);
registry.insert(IconType::Sailboat, SAILBOAT_ELEMENTS);
registry.insert(IconType::Salad, SALAD_ELEMENTS);
registry.insert(IconType::Sandwich, SANDWICH_ELEMENTS);
registry.insert(IconType::SatelliteDish, SATELLITE_DISH_ELEMENTS);
registry.insert(IconType::Satellite, SATELLITE_ELEMENTS);
registry.insert(IconType::SaudiRiyal, SAUDI_RIYAL_ELEMENTS);
registry.insert(IconType::SaveAll, SAVE_ALL_ELEMENTS);
registry.insert(IconType::SaveOff, SAVE_OFF_ELEMENTS);
registry.insert(IconType::Save, SAVE_ELEMENTS);
registry.insert(IconType::Scale3D, SCALE3_D_ELEMENTS);
registry.insert(IconType::Scale, SCALE_ELEMENTS);
registry.insert(IconType::Scaling, SCALING_ELEMENTS);
registry.insert(IconType::ScanBarcode, SCAN_BARCODE_ELEMENTS);
registry.insert(IconType::ScanEye, SCAN_EYE_ELEMENTS);
registry.insert(IconType::ScanFace, SCAN_FACE_ELEMENTS);
registry.insert(IconType::ScanHeart, SCAN_HEART_ELEMENTS);
registry.insert(IconType::ScanLine, SCAN_LINE_ELEMENTS);
registry.insert(IconType::ScanQrCode, SCAN_QR_CODE_ELEMENTS);
registry.insert(IconType::ScanSearch, SCAN_SEARCH_ELEMENTS);
registry.insert(IconType::ScanText, SCAN_TEXT_ELEMENTS);
registry.insert(IconType::Scan, SCAN_ELEMENTS);
registry.insert(IconType::School, SCHOOL_ELEMENTS);
registry.insert(IconType::ScissorsLineDashed, SCISSORS_LINE_DASHED_ELEMENTS);
registry.insert(IconType::Scissors, SCISSORS_ELEMENTS);
registry.insert(IconType::ScreenShareOff, SCREEN_SHARE_OFF_ELEMENTS);
registry.insert(IconType::ScreenShare, SCREEN_SHARE_ELEMENTS);
registry.insert(IconType::ScrollText, SCROLL_TEXT_ELEMENTS);
registry.insert(IconType::Scroll, SCROLL_ELEMENTS);
registry.insert(IconType::SearchCheck, SEARCH_CHECK_ELEMENTS);
registry.insert(IconType::SearchCode, SEARCH_CODE_ELEMENTS);
registry.insert(IconType::SearchSlash, SEARCH_SLASH_ELEMENTS);
registry.insert(IconType::SearchX, SEARCH_X_ELEMENTS);
registry.insert(IconType::Search, SEARCH_ELEMENTS);
registry.insert(IconType::Section, SECTION_ELEMENTS);
registry.insert(IconType::SendHorizontal, SEND_HORIZONTAL_ELEMENTS);
registry.insert(IconType::SendToBack, SEND_TO_BACK_ELEMENTS);
registry.insert(IconType::Send, SEND_ELEMENTS);
registry.insert(IconType::SeparatorHorizontal, SEPARATOR_HORIZONTAL_ELEMENTS);
registry.insert(IconType::SeparatorVertical, SEPARATOR_VERTICAL_ELEMENTS);
registry.insert(IconType::ServerCog, SERVER_COG_ELEMENTS);
registry.insert(IconType::ServerCrash, SERVER_CRASH_ELEMENTS);
registry.insert(IconType::ServerOff, SERVER_OFF_ELEMENTS);
registry.insert(IconType::Server, SERVER_ELEMENTS);
registry.insert(IconType::Settings2, SETTINGS2_ELEMENTS);
registry.insert(IconType::Settings, SETTINGS_ELEMENTS);
registry.insert(IconType::Shapes, SHAPES_ELEMENTS);
registry.insert(IconType::Share2, SHARE2_ELEMENTS);
registry.insert(IconType::Share, SHARE_ELEMENTS);
registry.insert(IconType::Sheet, SHEET_ELEMENTS);
registry.insert(IconType::Shell, SHELL_ELEMENTS);
registry.insert(IconType::ShieldAlert, SHIELD_ALERT_ELEMENTS);
registry.insert(IconType::ShieldBan, SHIELD_BAN_ELEMENTS);
registry.insert(IconType::ShieldCheck, SHIELD_CHECK_ELEMENTS);
registry.insert(IconType::ShieldEllipsis, SHIELD_ELLIPSIS_ELEMENTS);
registry.insert(IconType::ShieldHalf, SHIELD_HALF_ELEMENTS);
registry.insert(IconType::ShieldMinus, SHIELD_MINUS_ELEMENTS);
registry.insert(IconType::ShieldOff, SHIELD_OFF_ELEMENTS);
registry.insert(IconType::ShieldPlus, SHIELD_PLUS_ELEMENTS);
registry.insert(IconType::ShieldQuestionMark, SHIELD_QUESTION_MARK_ELEMENTS);
registry.insert(IconType::ShieldQuestion, SHIELD_QUESTION_ELEMENTS);
registry.insert(IconType::ShieldUser, SHIELD_USER_ELEMENTS);
registry.insert(IconType::ShieldX, SHIELD_X_ELEMENTS);
registry.insert(IconType::Shield, SHIELD_ELEMENTS);
registry.insert(IconType::ShipWheel, SHIP_WHEEL_ELEMENTS);
registry.insert(IconType::Ship, SHIP_ELEMENTS);
registry.insert(IconType::Shirt, SHIRT_ELEMENTS);
registry.insert(IconType::ShoppingBag, SHOPPING_BAG_ELEMENTS);
registry.insert(IconType::ShoppingBasket, SHOPPING_BASKET_ELEMENTS);
registry.insert(IconType::ShoppingCart, SHOPPING_CART_ELEMENTS);
registry.insert(IconType::Shovel, SHOVEL_ELEMENTS);
registry.insert(IconType::ShowerHead, SHOWER_HEAD_ELEMENTS);
registry.insert(IconType::Shredder, SHREDDER_ELEMENTS);
registry.insert(IconType::Shrimp, SHRIMP_ELEMENTS);
registry.insert(IconType::Shrink, SHRINK_ELEMENTS);
registry.insert(IconType::Shrub, SHRUB_ELEMENTS);
registry.insert(IconType::Shuffle, SHUFFLE_ELEMENTS);
registry.insert(IconType::Sigma, SIGMA_ELEMENTS);
registry.insert(IconType::SignalHigh, SIGNAL_HIGH_ELEMENTS);
registry.insert(IconType::SignalLow, SIGNAL_LOW_ELEMENTS);
registry.insert(IconType::SignalMedium, SIGNAL_MEDIUM_ELEMENTS);
registry.insert(IconType::SignalZero, SIGNAL_ZERO_ELEMENTS);
registry.insert(IconType::Signal, SIGNAL_ELEMENTS);
registry.insert(IconType::Signature, SIGNATURE_ELEMENTS);
registry.insert(IconType::SignpostBig, SIGNPOST_BIG_ELEMENTS);
registry.insert(IconType::Signpost, SIGNPOST_ELEMENTS);
registry.insert(IconType::Siren, SIREN_ELEMENTS);
registry.insert(IconType::SkipBack, SKIP_BACK_ELEMENTS);
registry.insert(IconType::SkipForward, SKIP_FORWARD_ELEMENTS);
registry.insert(IconType::Skull, SKULL_ELEMENTS);
registry.insert(IconType::Slack, SLACK_ELEMENTS);
registry.insert(IconType::Slash, SLASH_ELEMENTS);
registry.insert(IconType::Slice, SLICE_ELEMENTS);
registry.insert(IconType::SlidersHorizontal, SLIDERS_HORIZONTAL_ELEMENTS);
registry.insert(IconType::SlidersVertical, SLIDERS_VERTICAL_ELEMENTS);
registry.insert(IconType::SmartphoneCharging, SMARTPHONE_CHARGING_ELEMENTS);
registry.insert(IconType::SmartphoneNfc, SMARTPHONE_NFC_ELEMENTS);
registry.insert(IconType::Smartphone, SMARTPHONE_ELEMENTS);
registry.insert(IconType::SmilePlus, SMILE_PLUS_ELEMENTS);
registry.insert(IconType::Smile, SMILE_ELEMENTS);
registry.insert(IconType::Snail, SNAIL_ELEMENTS);
registry.insert(IconType::Snowflake, SNOWFLAKE_ELEMENTS);
registry.insert(IconType::SoapDispenserDroplet, SOAP_DISPENSER_DROPLET_ELEMENTS);
registry.insert(IconType::Sofa, SOFA_ELEMENTS);
registry.insert(IconType::Soup, SOUP_ELEMENTS);
registry.insert(IconType::Space, SPACE_ELEMENTS);
registry.insert(IconType::Spade, SPADE_ELEMENTS);
registry.insert(IconType::Sparkle, SPARKLE_ELEMENTS);
registry.insert(IconType::Sparkles, SPARKLES_ELEMENTS);
registry.insert(IconType::Speaker, SPEAKER_ELEMENTS);
registry.insert(IconType::Speech, SPEECH_ELEMENTS);
registry.insert(IconType::SpellCheck2, SPELL_CHECK2_ELEMENTS);
registry.insert(IconType::SpellCheck, SPELL_CHECK_ELEMENTS);
registry.insert(IconType::SplinePointer, SPLINE_POINTER_ELEMENTS);
registry.insert(IconType::Spline, SPLINE_ELEMENTS);
registry.insert(IconType::Split, SPLIT_ELEMENTS);
registry.insert(IconType::Spool, SPOOL_ELEMENTS);
registry.insert(IconType::Spotlight, SPOTLIGHT_ELEMENTS);
registry.insert(IconType::SprayCan, SPRAY_CAN_ELEMENTS);
registry.insert(IconType::Sprout, SPROUT_ELEMENTS);
registry.insert(IconType::SquareActivity, SQUARE_ACTIVITY_ELEMENTS);
registry.insert(IconType::SquareArrowDownLeft, SQUARE_ARROW_DOWN_LEFT_ELEMENTS);
registry.insert(IconType::SquareArrowDownRight, SQUARE_ARROW_DOWN_RIGHT_ELEMENTS);
registry.insert(IconType::SquareArrowDown, SQUARE_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::SquareArrowLeft, SQUARE_ARROW_LEFT_ELEMENTS);
registry.insert(IconType::SquareArrowOutDownLeft, SQUARE_ARROW_OUT_DOWN_LEFT_ELEMENTS);
registry.insert(IconType::SquareArrowOutDownRight, SQUARE_ARROW_OUT_DOWN_RIGHT_ELEMENTS);
registry.insert(IconType::SquareArrowOutUpLeft, SQUARE_ARROW_OUT_UP_LEFT_ELEMENTS);
registry.insert(IconType::SquareArrowOutUpRight, SQUARE_ARROW_OUT_UP_RIGHT_ELEMENTS);
registry.insert(IconType::SquareArrowRight, SQUARE_ARROW_RIGHT_ELEMENTS);
registry.insert(IconType::SquareArrowUpLeft, SQUARE_ARROW_UP_LEFT_ELEMENTS);
registry.insert(IconType::SquareArrowUpRight, SQUARE_ARROW_UP_RIGHT_ELEMENTS);
registry.insert(IconType::SquareArrowUp, SQUARE_ARROW_UP_ELEMENTS);
registry.insert(IconType::SquareAsterisk, SQUARE_ASTERISK_ELEMENTS);
registry.insert(IconType::SquareBottomDashedScissors, SQUARE_BOTTOM_DASHED_SCISSORS_ELEMENTS);
registry.insert(IconType::SquareChartGantt, SQUARE_CHART_GANTT_ELEMENTS);
registry.insert(IconType::SquareCheckBig, SQUARE_CHECK_BIG_ELEMENTS);
registry.insert(IconType::SquareCheck, SQUARE_CHECK_ELEMENTS);
registry.insert(IconType::SquareChevronDown, SQUARE_CHEVRON_DOWN_ELEMENTS);
registry.insert(IconType::SquareChevronLeft, SQUARE_CHEVRON_LEFT_ELEMENTS);
registry.insert(IconType::SquareChevronRight, SQUARE_CHEVRON_RIGHT_ELEMENTS);
registry.insert(IconType::SquareChevronUp, SQUARE_CHEVRON_UP_ELEMENTS);
registry.insert(IconType::SquareCode, SQUARE_CODE_ELEMENTS);
registry.insert(IconType::SquareDashedBottomCode, SQUARE_DASHED_BOTTOM_CODE_ELEMENTS);
registry.insert(IconType::SquareDashedBottom, SQUARE_DASHED_BOTTOM_ELEMENTS);
registry.insert(IconType::SquareDashedKanban, SQUARE_DASHED_KANBAN_ELEMENTS);
registry.insert(IconType::SquareDashedMousePointer, SQUARE_DASHED_MOUSE_POINTER_ELEMENTS);
registry.insert(IconType::SquareDashedTopSolid, SQUARE_DASHED_TOP_SOLID_ELEMENTS);
registry.insert(IconType::SquareDashed, SQUARE_DASHED_ELEMENTS);
registry.insert(IconType::SquareDivide, SQUARE_DIVIDE_ELEMENTS);
registry.insert(IconType::SquareDot, SQUARE_DOT_ELEMENTS);
registry.insert(IconType::SquareEqual, SQUARE_EQUAL_ELEMENTS);
registry.insert(IconType::SquareFunction, SQUARE_FUNCTION_ELEMENTS);
registry.insert(IconType::SquareKanban, SQUARE_KANBAN_ELEMENTS);
registry.insert(IconType::SquareLibrary, SQUARE_LIBRARY_ELEMENTS);
registry.insert(IconType::SquareM, SQUARE_M_ELEMENTS);
registry.insert(IconType::SquareMenu, SQUARE_MENU_ELEMENTS);
registry.insert(IconType::SquareMinus, SQUARE_MINUS_ELEMENTS);
registry.insert(IconType::SquareMousePointer, SQUARE_MOUSE_POINTER_ELEMENTS);
registry.insert(IconType::SquareParkingOff, SQUARE_PARKING_OFF_ELEMENTS);
registry.insert(IconType::SquareParking, SQUARE_PARKING_ELEMENTS);
registry.insert(IconType::SquarePause, SQUARE_PAUSE_ELEMENTS);
registry.insert(IconType::SquarePen, SQUARE_PEN_ELEMENTS);
registry.insert(IconType::SquarePercent, SQUARE_PERCENT_ELEMENTS);
registry.insert(IconType::SquarePi, SQUARE_PI_ELEMENTS);
registry.insert(IconType::SquarePilcrow, SQUARE_PILCROW_ELEMENTS);
registry.insert(IconType::SquarePlay, SQUARE_PLAY_ELEMENTS);
registry.insert(IconType::SquarePlus, SQUARE_PLUS_ELEMENTS);
registry.insert(IconType::SquarePower, SQUARE_POWER_ELEMENTS);
registry.insert(IconType::SquareRadical, SQUARE_RADICAL_ELEMENTS);
registry.insert(IconType::SquareRoundCorner, SQUARE_ROUND_CORNER_ELEMENTS);
registry.insert(IconType::SquareScissors, SQUARE_SCISSORS_ELEMENTS);
registry.insert(IconType::SquareSigma, SQUARE_SIGMA_ELEMENTS);
registry.insert(IconType::SquareSlash, SQUARE_SLASH_ELEMENTS);
registry.insert(IconType::SquareSplitHorizontal, SQUARE_SPLIT_HORIZONTAL_ELEMENTS);
registry.insert(IconType::SquareSplitVertical, SQUARE_SPLIT_VERTICAL_ELEMENTS);
registry.insert(IconType::SquareSquare, SQUARE_SQUARE_ELEMENTS);
registry.insert(IconType::SquareStack, SQUARE_STACK_ELEMENTS);
registry.insert(IconType::SquareStop, SQUARE_STOP_ELEMENTS);
registry.insert(IconType::SquareTerminal, SQUARE_TERMINAL_ELEMENTS);
registry.insert(IconType::SquareUserRound, SQUARE_USER_ROUND_ELEMENTS);
registry.insert(IconType::SquareUser, SQUARE_USER_ELEMENTS);
registry.insert(IconType::SquareX, SQUARE_X_ELEMENTS);
registry.insert(IconType::Square, SQUARE_ELEMENTS);
registry.insert(IconType::SquaresExclude, SQUARES_EXCLUDE_ELEMENTS);
registry.insert(IconType::SquaresIntersect, SQUARES_INTERSECT_ELEMENTS);
registry.insert(IconType::SquaresSubtract, SQUARES_SUBTRACT_ELEMENTS);
registry.insert(IconType::SquaresUnite, SQUARES_UNITE_ELEMENTS);
registry.insert(IconType::SquircleDashed, SQUIRCLE_DASHED_ELEMENTS);
registry.insert(IconType::Squircle, SQUIRCLE_ELEMENTS);
registry.insert(IconType::Squirrel, SQUIRREL_ELEMENTS);
registry.insert(IconType::Stamp, STAMP_ELEMENTS);
registry.insert(IconType::StarHalf, STAR_HALF_ELEMENTS);
registry.insert(IconType::StarOff, STAR_OFF_ELEMENTS);
registry.insert(IconType::Star, STAR_ELEMENTS);
registry.insert(IconType::StepBack, STEP_BACK_ELEMENTS);
registry.insert(IconType::StepForward, STEP_FORWARD_ELEMENTS);
registry.insert(IconType::Stethoscope, STETHOSCOPE_ELEMENTS);
registry.insert(IconType::Sticker, STICKER_ELEMENTS);
registry.insert(IconType::StickyNote, STICKY_NOTE_ELEMENTS);
registry.insert(IconType::Store, STORE_ELEMENTS);
registry.insert(IconType::StretchHorizontal, STRETCH_HORIZONTAL_ELEMENTS);
registry.insert(IconType::StretchVertical, STRETCH_VERTICAL_ELEMENTS);
registry.insert(IconType::Strikethrough, STRIKETHROUGH_ELEMENTS);
registry.insert(IconType::Subscript, SUBSCRIPT_ELEMENTS);
registry.insert(IconType::SunDim, SUN_DIM_ELEMENTS);
registry.insert(IconType::SunMedium, SUN_MEDIUM_ELEMENTS);
registry.insert(IconType::SunMoon, SUN_MOON_ELEMENTS);
registry.insert(IconType::SunSnow, SUN_SNOW_ELEMENTS);
registry.insert(IconType::Sun, SUN_ELEMENTS);
registry.insert(IconType::Sunrise, SUNRISE_ELEMENTS);
registry.insert(IconType::Sunset, SUNSET_ELEMENTS);
registry.insert(IconType::Superscript, SUPERSCRIPT_ELEMENTS);
registry.insert(IconType::SwatchBook, SWATCH_BOOK_ELEMENTS);
registry.insert(IconType::SwissFranc, SWISS_FRANC_ELEMENTS);
registry.insert(IconType::SwitchCamera, SWITCH_CAMERA_ELEMENTS);
registry.insert(IconType::Sword, SWORD_ELEMENTS);
registry.insert(IconType::Swords, SWORDS_ELEMENTS);
registry.insert(IconType::Syringe, SYRINGE_ELEMENTS);
registry.insert(IconType::Table2, TABLE2_ELEMENTS);
registry.insert(IconType::TableCellsMerge, TABLE_CELLS_MERGE_ELEMENTS);
registry.insert(IconType::TableCellsSplit, TABLE_CELLS_SPLIT_ELEMENTS);
registry.insert(IconType::TableColumnsSplit, TABLE_COLUMNS_SPLIT_ELEMENTS);
registry.insert(IconType::TableOfContents, TABLE_OF_CONTENTS_ELEMENTS);
registry.insert(IconType::TableProperties, TABLE_PROPERTIES_ELEMENTS);
registry.insert(IconType::TableRowsSplit, TABLE_ROWS_SPLIT_ELEMENTS);
registry.insert(IconType::Table, TABLE_ELEMENTS);
registry.insert(IconType::TabletSmartphone, TABLET_SMARTPHONE_ELEMENTS);
registry.insert(IconType::Tablet, TABLET_ELEMENTS);
registry.insert(IconType::Tablets, TABLETS_ELEMENTS);
registry.insert(IconType::Tag, TAG_ELEMENTS);
registry.insert(IconType::Tags, TAGS_ELEMENTS);
registry.insert(IconType::Tally1, TALLY1_ELEMENTS);
registry.insert(IconType::Tally2, TALLY2_ELEMENTS);
registry.insert(IconType::Tally3, TALLY3_ELEMENTS);
registry.insert(IconType::Tally4, TALLY4_ELEMENTS);
registry.insert(IconType::Tally5, TALLY5_ELEMENTS);
registry.insert(IconType::Tangent, TANGENT_ELEMENTS);
registry.insert(IconType::Target, TARGET_ELEMENTS);
registry.insert(IconType::Telescope, TELESCOPE_ELEMENTS);
registry.insert(IconType::TentTree, TENT_TREE_ELEMENTS);
registry.insert(IconType::Tent, TENT_ELEMENTS);
registry.insert(IconType::Terminal, TERMINAL_ELEMENTS);
registry.insert(IconType::TestTubeDiagonal, TEST_TUBE_DIAGONAL_ELEMENTS);
registry.insert(IconType::TestTube, TEST_TUBE_ELEMENTS);
registry.insert(IconType::TestTubes, TEST_TUBES_ELEMENTS);
registry.insert(IconType::TextCursorInput, TEXT_CURSOR_INPUT_ELEMENTS);
registry.insert(IconType::TextCursor, TEXT_CURSOR_ELEMENTS);
registry.insert(IconType::TextQuote, TEXT_QUOTE_ELEMENTS);
registry.insert(IconType::TextSearch, TEXT_SEARCH_ELEMENTS);
registry.insert(IconType::TextSelect, TEXT_SELECT_ELEMENTS);
registry.insert(IconType::Text, TEXT_ELEMENTS);
registry.insert(IconType::Theater, THEATER_ELEMENTS);
registry.insert(IconType::ThermometerSnowflake, THERMOMETER_SNOWFLAKE_ELEMENTS);
registry.insert(IconType::ThermometerSun, THERMOMETER_SUN_ELEMENTS);
registry.insert(IconType::Thermometer, THERMOMETER_ELEMENTS);
registry.insert(IconType::ThumbsDown, THUMBS_DOWN_ELEMENTS);
registry.insert(IconType::ThumbsUp, THUMBS_UP_ELEMENTS);
registry.insert(IconType::TicketCheck, TICKET_CHECK_ELEMENTS);
registry.insert(IconType::TicketMinus, TICKET_MINUS_ELEMENTS);
registry.insert(IconType::TicketPercent, TICKET_PERCENT_ELEMENTS);
registry.insert(IconType::TicketPlus, TICKET_PLUS_ELEMENTS);
registry.insert(IconType::TicketSlash, TICKET_SLASH_ELEMENTS);
registry.insert(IconType::TicketX, TICKET_X_ELEMENTS);
registry.insert(IconType::Ticket, TICKET_ELEMENTS);
registry.insert(IconType::TicketsPlane, TICKETS_PLANE_ELEMENTS);
registry.insert(IconType::Tickets, TICKETS_ELEMENTS);
registry.insert(IconType::TimerOff, TIMER_OFF_ELEMENTS);
registry.insert(IconType::TimerReset, TIMER_RESET_ELEMENTS);
registry.insert(IconType::Timer, TIMER_ELEMENTS);
registry.insert(IconType::ToggleLeft, TOGGLE_LEFT_ELEMENTS);
registry.insert(IconType::ToggleRight, TOGGLE_RIGHT_ELEMENTS);
registry.insert(IconType::Toilet, TOILET_ELEMENTS);
registry.insert(IconType::ToolCase, TOOL_CASE_ELEMENTS);
registry.insert(IconType::Tornado, TORNADO_ELEMENTS);
registry.insert(IconType::Torus, TORUS_ELEMENTS);
registry.insert(IconType::TouchpadOff, TOUCHPAD_OFF_ELEMENTS);
registry.insert(IconType::Touchpad, TOUCHPAD_ELEMENTS);
registry.insert(IconType::TowerControl, TOWER_CONTROL_ELEMENTS);
registry.insert(IconType::ToyBrick, TOY_BRICK_ELEMENTS);
registry.insert(IconType::Tractor, TRACTOR_ELEMENTS);
registry.insert(IconType::TrafficCone, TRAFFIC_CONE_ELEMENTS);
registry.insert(IconType::TrainFrontTunnel, TRAIN_FRONT_TUNNEL_ELEMENTS);
registry.insert(IconType::TrainFront, TRAIN_FRONT_ELEMENTS);
registry.insert(IconType::TrainTrack, TRAIN_TRACK_ELEMENTS);
registry.insert(IconType::TramFront, TRAM_FRONT_ELEMENTS);
registry.insert(IconType::Transgender, TRANSGENDER_ELEMENTS);
registry.insert(IconType::Trash2, TRASH2_ELEMENTS);
registry.insert(IconType::Trash, TRASH_ELEMENTS);
registry.insert(IconType::TreeDeciduous, TREE_DECIDUOUS_ELEMENTS);
registry.insert(IconType::TreePalm, TREE_PALM_ELEMENTS);
registry.insert(IconType::TreePine, TREE_PINE_ELEMENTS);
registry.insert(IconType::Trees, TREES_ELEMENTS);
registry.insert(IconType::Trello, TRELLO_ELEMENTS);
registry.insert(IconType::TrendingDown, TRENDING_DOWN_ELEMENTS);
registry.insert(IconType::TrendingUpDown, TRENDING_UP_DOWN_ELEMENTS);
registry.insert(IconType::TrendingUp, TRENDING_UP_ELEMENTS);
registry.insert(IconType::TriangleAlert, TRIANGLE_ALERT_ELEMENTS);
registry.insert(IconType::TriangleDashed, TRIANGLE_DASHED_ELEMENTS);
registry.insert(IconType::TriangleRight, TRIANGLE_RIGHT_ELEMENTS);
registry.insert(IconType::Triangle, TRIANGLE_ELEMENTS);
registry.insert(IconType::Trophy, TROPHY_ELEMENTS);
registry.insert(IconType::TruckElectric, TRUCK_ELECTRIC_ELEMENTS);
registry.insert(IconType::Truck, TRUCK_ELEMENTS);
registry.insert(IconType::TurkishLira, TURKISH_LIRA_ELEMENTS);
registry.insert(IconType::Turtle, TURTLE_ELEMENTS);
registry.insert(IconType::TvMinimalPlay, TV_MINIMAL_PLAY_ELEMENTS);
registry.insert(IconType::TvMinimal, TV_MINIMAL_ELEMENTS);
registry.insert(IconType::Tv, TV_ELEMENTS);
registry.insert(IconType::Twitch, TWITCH_ELEMENTS);
registry.insert(IconType::Twitter, TWITTER_ELEMENTS);
registry.insert(IconType::TypeOutline, TYPE_OUTLINE_ELEMENTS);
registry.insert(IconType::Type, TYPE_ELEMENTS);
registry.insert(IconType::UmbrellaOff, UMBRELLA_OFF_ELEMENTS);
registry.insert(IconType::Umbrella, UMBRELLA_ELEMENTS);
registry.insert(IconType::Underline, UNDERLINE_ELEMENTS);
registry.insert(IconType::Undo2, UNDO2_ELEMENTS);
registry.insert(IconType::UndoDot, UNDO_DOT_ELEMENTS);
registry.insert(IconType::Undo, UNDO_ELEMENTS);
registry.insert(IconType::UnfoldHorizontal, UNFOLD_HORIZONTAL_ELEMENTS);
registry.insert(IconType::UnfoldVertical, UNFOLD_VERTICAL_ELEMENTS);
registry.insert(IconType::Ungroup, UNGROUP_ELEMENTS);
registry.insert(IconType::University, UNIVERSITY_ELEMENTS);
registry.insert(IconType::Unlink2, UNLINK2_ELEMENTS);
registry.insert(IconType::Unlink, UNLINK_ELEMENTS);
registry.insert(IconType::Unplug, UNPLUG_ELEMENTS);
registry.insert(IconType::Upload, UPLOAD_ELEMENTS);
registry.insert(IconType::Usb, USB_ELEMENTS);
registry.insert(IconType::UserCheck, USER_CHECK_ELEMENTS);
registry.insert(IconType::UserCog, USER_COG_ELEMENTS);
registry.insert(IconType::UserLock, USER_LOCK_ELEMENTS);
registry.insert(IconType::UserMinus, USER_MINUS_ELEMENTS);
registry.insert(IconType::UserPen, USER_PEN_ELEMENTS);
registry.insert(IconType::UserPlus, USER_PLUS_ELEMENTS);
registry.insert(IconType::UserRoundCheck, USER_ROUND_CHECK_ELEMENTS);
registry.insert(IconType::UserRoundCog, USER_ROUND_COG_ELEMENTS);
registry.insert(IconType::UserRoundMinus, USER_ROUND_MINUS_ELEMENTS);
registry.insert(IconType::UserRoundPen, USER_ROUND_PEN_ELEMENTS);
registry.insert(IconType::UserRoundPlus, USER_ROUND_PLUS_ELEMENTS);
registry.insert(IconType::UserRoundSearch, USER_ROUND_SEARCH_ELEMENTS);
registry.insert(IconType::UserRoundX, USER_ROUND_X_ELEMENTS);
registry.insert(IconType::UserRound, USER_ROUND_ELEMENTS);
registry.insert(IconType::UserSearch, USER_SEARCH_ELEMENTS);
registry.insert(IconType::UserStar, USER_STAR_ELEMENTS);
registry.insert(IconType::UserX, USER_X_ELEMENTS);
registry.insert(IconType::User, USER_ELEMENTS);
registry.insert(IconType::UsersRound, USERS_ROUND_ELEMENTS);
registry.insert(IconType::Users, USERS_ELEMENTS);
registry.insert(IconType::UtensilsCrossed, UTENSILS_CROSSED_ELEMENTS);
registry.insert(IconType::Utensils, UTENSILS_ELEMENTS);
registry.insert(IconType::UtilityPole, UTILITY_POLE_ELEMENTS);
registry.insert(IconType::Variable, VARIABLE_ELEMENTS);
registry.insert(IconType::Vault, VAULT_ELEMENTS);
registry.insert(IconType::VectorSquare, VECTOR_SQUARE_ELEMENTS);
registry.insert(IconType::Vegan, VEGAN_ELEMENTS);
registry.insert(IconType::VenetianMask, VENETIAN_MASK_ELEMENTS);
registry.insert(IconType::VenusAndMars, VENUS_AND_MARS_ELEMENTS);
registry.insert(IconType::Venus, VENUS_ELEMENTS);
registry.insert(IconType::VibrateOff, VIBRATE_OFF_ELEMENTS);
registry.insert(IconType::Vibrate, VIBRATE_ELEMENTS);
registry.insert(IconType::VideoOff, VIDEO_OFF_ELEMENTS);
registry.insert(IconType::Video, VIDEO_ELEMENTS);
registry.insert(IconType::Videotape, VIDEOTAPE_ELEMENTS);
registry.insert(IconType::View, VIEW_ELEMENTS);
registry.insert(IconType::Voicemail, VOICEMAIL_ELEMENTS);
registry.insert(IconType::Volleyball, VOLLEYBALL_ELEMENTS);
registry.insert(IconType::Volume1, VOLUME1_ELEMENTS);
registry.insert(IconType::Volume2, VOLUME2_ELEMENTS);
registry.insert(IconType::VolumeOff, VOLUME_OFF_ELEMENTS);
registry.insert(IconType::VolumeX, VOLUME_X_ELEMENTS);
registry.insert(IconType::Volume, VOLUME_ELEMENTS);
registry.insert(IconType::Vote, VOTE_ELEMENTS);
registry.insert(IconType::WalletCards, WALLET_CARDS_ELEMENTS);
registry.insert(IconType::WalletMinimal, WALLET_MINIMAL_ELEMENTS);
registry.insert(IconType::Wallet, WALLET_ELEMENTS);
registry.insert(IconType::Wallpaper, WALLPAPER_ELEMENTS);
registry.insert(IconType::WandSparkles, WAND_SPARKLES_ELEMENTS);
registry.insert(IconType::Wand, WAND_ELEMENTS);
registry.insert(IconType::Warehouse, WAREHOUSE_ELEMENTS);
registry.insert(IconType::WashingMachine, WASHING_MACHINE_ELEMENTS);
registry.insert(IconType::Watch, WATCH_ELEMENTS);
registry.insert(IconType::WavesLadder, WAVES_LADDER_ELEMENTS);
registry.insert(IconType::Waves, WAVES_ELEMENTS);
registry.insert(IconType::Waypoints, WAYPOINTS_ELEMENTS);
registry.insert(IconType::Webcam, WEBCAM_ELEMENTS);
registry.insert(IconType::WebhookOff, WEBHOOK_OFF_ELEMENTS);
registry.insert(IconType::Webhook, WEBHOOK_ELEMENTS);
registry.insert(IconType::Weight, WEIGHT_ELEMENTS);
registry.insert(IconType::WheatOff, WHEAT_OFF_ELEMENTS);
registry.insert(IconType::Wheat, WHEAT_ELEMENTS);
registry.insert(IconType::WholeWord, WHOLE_WORD_ELEMENTS);
registry.insert(IconType::WifiCog, WIFI_COG_ELEMENTS);
registry.insert(IconType::WifiHigh, WIFI_HIGH_ELEMENTS);
registry.insert(IconType::WifiLow, WIFI_LOW_ELEMENTS);
registry.insert(IconType::WifiOff, WIFI_OFF_ELEMENTS);
registry.insert(IconType::WifiPen, WIFI_PEN_ELEMENTS);
registry.insert(IconType::WifiSync, WIFI_SYNC_ELEMENTS);
registry.insert(IconType::WifiZero, WIFI_ZERO_ELEMENTS);
registry.insert(IconType::Wifi, WIFI_ELEMENTS);
registry.insert(IconType::WindArrowDown, WIND_ARROW_DOWN_ELEMENTS);
registry.insert(IconType::Wind, WIND_ELEMENTS);
registry.insert(IconType::WineOff, WINE_OFF_ELEMENTS);
registry.insert(IconType::Wine, WINE_ELEMENTS);
registry.insert(IconType::Workflow, WORKFLOW_ELEMENTS);
registry.insert(IconType::Worm, WORM_ELEMENTS);
registry.insert(IconType::WrapText, WRAP_TEXT_ELEMENTS);
registry.insert(IconType::Wrench, WRENCH_ELEMENTS);
registry.insert(IconType::X, X_ELEMENTS);
registry.insert(IconType::Youtube, YOUTUBE_ELEMENTS);
registry.insert(IconType::ZapOff, ZAP_OFF_ELEMENTS);
registry.insert(IconType::Zap, ZAP_ELEMENTS);
registry.insert(IconType::ZoomIn, ZOOM_IN_ELEMENTS);
registry.insert(IconType::ZoomOut, ZOOM_OUT_ELEMENTS);
registry
})
}
/// Get icon data from the registry
pub fn get_icon_data(icon_type: IconType) -> Option<&'static [StaticSvgElement]> {
get_registry().get(&icon_type).copied()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_registry_completeness() {
// Test that we have all icons in the registry
let registry = get_registry();
assert!(!registry.is_empty(), "Registry should not be empty");
// Test some known icons
assert!(get_icon_data(IconType::Activity).is_some());
assert!(get_icon_data(IconType::Check).is_some());
assert!(get_icon_data(IconType::X).is_some());
}
#[test]
fn test_circle_dollar_sign_exists() {
// Test the specific icon that was missing
let elements = get_icon_data(IconType::CircleDollarSign);
assert!(elements.is_some(), "CircleDollarSign should exist in registry");
assert!(!elements.unwrap().is_empty(), "CircleDollarSign should have SVG elements");
}
}