mirror of
https://github.com/danbulant/lucide
synced 2026-07-09 13:10:44 +00:00
feat: add style prop to Dioxus and Yew (#71)
This commit is contained in:
parent
f1e68ed708
commit
44c2a9b9ff
3090 changed files with 7725 additions and 2 deletions
|
|
@ -12,6 +12,7 @@ pub struct AArrowDownProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AArrowDown(props: AArrowDownProps) -> Element {
|
pub fn AArrowDown(props: AArrowDownProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AArrowDown(props: AArrowDownProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AArrowUpProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AArrowUp(props: AArrowUpProps) -> Element {
|
pub fn AArrowUp(props: AArrowUpProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AArrowUp(props: AArrowUpProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ALargeSmallProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ALargeSmall(props: ALargeSmallProps) -> Element {
|
pub fn ALargeSmall(props: ALargeSmallProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ALargeSmall(props: ALargeSmallProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AccessibilityProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Accessibility(props: AccessibilityProps) -> Element {
|
pub fn Accessibility(props: AccessibilityProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Accessibility(props: AccessibilityProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ActivityProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Activity(props: ActivityProps) -> Element {
|
pub fn Activity(props: ActivityProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Activity(props: ActivityProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AirVentProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AirVent(props: AirVentProps) -> Element {
|
pub fn AirVent(props: AirVentProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AirVent(props: AirVentProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AirplayProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Airplay(props: AirplayProps) -> Element {
|
pub fn Airplay(props: AirplayProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Airplay(props: AirplayProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlarmClockProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlarmClock(props: AlarmClockProps) -> Element {
|
pub fn AlarmClock(props: AlarmClockProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlarmClock(props: AlarmClockProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlarmClockCheckProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlarmClockCheck(props: AlarmClockCheckProps) -> Element {
|
pub fn AlarmClockCheck(props: AlarmClockCheckProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlarmClockCheck(props: AlarmClockCheckProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlarmClockMinusProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlarmClockMinus(props: AlarmClockMinusProps) -> Element {
|
pub fn AlarmClockMinus(props: AlarmClockMinusProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlarmClockMinus(props: AlarmClockMinusProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlarmClockOffProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlarmClockOff(props: AlarmClockOffProps) -> Element {
|
pub fn AlarmClockOff(props: AlarmClockOffProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlarmClockOff(props: AlarmClockOffProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlarmClockPlusProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlarmClockPlus(props: AlarmClockPlusProps) -> Element {
|
pub fn AlarmClockPlus(props: AlarmClockPlusProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlarmClockPlus(props: AlarmClockPlusProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlarmSmokeProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlarmSmoke(props: AlarmSmokeProps) -> Element {
|
pub fn AlarmSmoke(props: AlarmSmokeProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlarmSmoke(props: AlarmSmokeProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlbumProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Album(props: AlbumProps) -> Element {
|
pub fn Album(props: AlbumProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Album(props: AlbumProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignCenterProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignCenter(props: AlignCenterProps) -> Element {
|
pub fn AlignCenter(props: AlignCenterProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignCenter(props: AlignCenterProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignCenterHorizontalProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignCenterHorizontal(props: AlignCenterHorizontalProps) -> Element {
|
pub fn AlignCenterHorizontal(props: AlignCenterHorizontalProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignCenterHorizontal(props: AlignCenterHorizontalProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignCenterVerticalProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignCenterVertical(props: AlignCenterVerticalProps) -> Element {
|
pub fn AlignCenterVertical(props: AlignCenterVerticalProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignCenterVertical(props: AlignCenterVerticalProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignEndHorizontalProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignEndHorizontal(props: AlignEndHorizontalProps) -> Element {
|
pub fn AlignEndHorizontal(props: AlignEndHorizontalProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignEndHorizontal(props: AlignEndHorizontalProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignEndVerticalProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignEndVertical(props: AlignEndVerticalProps) -> Element {
|
pub fn AlignEndVertical(props: AlignEndVerticalProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignEndVertical(props: AlignEndVerticalProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalDistributeCenterProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalDistributeCenter(props: AlignHorizontalDistributeCenterProps) -> Element {
|
pub fn AlignHorizontalDistributeCenter(props: AlignHorizontalDistributeCenterProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalDistributeCenter(props: AlignHorizontalDistributeCenterPro
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalDistributeEndProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalDistributeEnd(props: AlignHorizontalDistributeEndProps) -> Element {
|
pub fn AlignHorizontalDistributeEnd(props: AlignHorizontalDistributeEndProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalDistributeEnd(props: AlignHorizontalDistributeEndProps) ->
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalDistributeStartProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalDistributeStart(props: AlignHorizontalDistributeStartProps) -> Element {
|
pub fn AlignHorizontalDistributeStart(props: AlignHorizontalDistributeStartProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalDistributeStart(props: AlignHorizontalDistributeStartProps
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalJustifyCenterProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalJustifyCenter(props: AlignHorizontalJustifyCenterProps) -> Element {
|
pub fn AlignHorizontalJustifyCenter(props: AlignHorizontalJustifyCenterProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalJustifyCenter(props: AlignHorizontalJustifyCenterProps) ->
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalJustifyEndProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalJustifyEnd(props: AlignHorizontalJustifyEndProps) -> Element {
|
pub fn AlignHorizontalJustifyEnd(props: AlignHorizontalJustifyEndProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalJustifyEnd(props: AlignHorizontalJustifyEndProps) -> Eleme
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalJustifyStartProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalJustifyStart(props: AlignHorizontalJustifyStartProps) -> Element {
|
pub fn AlignHorizontalJustifyStart(props: AlignHorizontalJustifyStartProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalJustifyStart(props: AlignHorizontalJustifyStartProps) -> E
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalSpaceAroundProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalSpaceAround(props: AlignHorizontalSpaceAroundProps) -> Element {
|
pub fn AlignHorizontalSpaceAround(props: AlignHorizontalSpaceAroundProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalSpaceAround(props: AlignHorizontalSpaceAroundProps) -> Ele
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignHorizontalSpaceBetweenProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignHorizontalSpaceBetween(props: AlignHorizontalSpaceBetweenProps) -> Element {
|
pub fn AlignHorizontalSpaceBetween(props: AlignHorizontalSpaceBetweenProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignHorizontalSpaceBetween(props: AlignHorizontalSpaceBetweenProps) -> E
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignJustifyProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignJustify(props: AlignJustifyProps) -> Element {
|
pub fn AlignJustify(props: AlignJustifyProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignJustify(props: AlignJustifyProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignLeftProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignLeft(props: AlignLeftProps) -> Element {
|
pub fn AlignLeft(props: AlignLeftProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignLeft(props: AlignLeftProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignRightProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignRight(props: AlignRightProps) -> Element {
|
pub fn AlignRight(props: AlignRightProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignRight(props: AlignRightProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignStartHorizontalProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignStartHorizontal(props: AlignStartHorizontalProps) -> Element {
|
pub fn AlignStartHorizontal(props: AlignStartHorizontalProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignStartHorizontal(props: AlignStartHorizontalProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignStartVerticalProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignStartVertical(props: AlignStartVerticalProps) -> Element {
|
pub fn AlignStartVertical(props: AlignStartVerticalProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignStartVertical(props: AlignStartVerticalProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalDistributeCenterProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalDistributeCenter(props: AlignVerticalDistributeCenterProps) -> Element {
|
pub fn AlignVerticalDistributeCenter(props: AlignVerticalDistributeCenterProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalDistributeCenter(props: AlignVerticalDistributeCenterProps)
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalDistributeEndProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalDistributeEnd(props: AlignVerticalDistributeEndProps) -> Element {
|
pub fn AlignVerticalDistributeEnd(props: AlignVerticalDistributeEndProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalDistributeEnd(props: AlignVerticalDistributeEndProps) -> Ele
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalDistributeStartProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalDistributeStart(props: AlignVerticalDistributeStartProps) -> Element {
|
pub fn AlignVerticalDistributeStart(props: AlignVerticalDistributeStartProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalDistributeStart(props: AlignVerticalDistributeStartProps) ->
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalJustifyCenterProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalJustifyCenter(props: AlignVerticalJustifyCenterProps) -> Element {
|
pub fn AlignVerticalJustifyCenter(props: AlignVerticalJustifyCenterProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalJustifyCenter(props: AlignVerticalJustifyCenterProps) -> Ele
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalJustifyEndProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalJustifyEnd(props: AlignVerticalJustifyEndProps) -> Element {
|
pub fn AlignVerticalJustifyEnd(props: AlignVerticalJustifyEndProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalJustifyEnd(props: AlignVerticalJustifyEndProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalJustifyStartProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalJustifyStart(props: AlignVerticalJustifyStartProps) -> Element {
|
pub fn AlignVerticalJustifyStart(props: AlignVerticalJustifyStartProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalJustifyStart(props: AlignVerticalJustifyStartProps) -> Eleme
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalSpaceAroundProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalSpaceAround(props: AlignVerticalSpaceAroundProps) -> Element {
|
pub fn AlignVerticalSpaceAround(props: AlignVerticalSpaceAroundProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalSpaceAround(props: AlignVerticalSpaceAroundProps) -> Element
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AlignVerticalSpaceBetweenProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AlignVerticalSpaceBetween(props: AlignVerticalSpaceBetweenProps) -> Element {
|
pub fn AlignVerticalSpaceBetween(props: AlignVerticalSpaceBetweenProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AlignVerticalSpaceBetween(props: AlignVerticalSpaceBetweenProps) -> Eleme
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AmbulanceProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Ambulance(props: AmbulanceProps) -> Element {
|
pub fn Ambulance(props: AmbulanceProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Ambulance(props: AmbulanceProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AmpersandProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Ampersand(props: AmpersandProps) -> Element {
|
pub fn Ampersand(props: AmpersandProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Ampersand(props: AmpersandProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AmpersandsProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Ampersands(props: AmpersandsProps) -> Element {
|
pub fn Ampersands(props: AmpersandsProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Ampersands(props: AmpersandsProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AmphoraProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Amphora(props: AmphoraProps) -> Element {
|
pub fn Amphora(props: AmphoraProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Amphora(props: AmphoraProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AnchorProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Anchor(props: AnchorProps) -> Element {
|
pub fn Anchor(props: AnchorProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Anchor(props: AnchorProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AngryProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Angry(props: AngryProps) -> Element {
|
pub fn Angry(props: AngryProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Angry(props: AngryProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AnnoyedProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Annoyed(props: AnnoyedProps) -> Element {
|
pub fn Annoyed(props: AnnoyedProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Annoyed(props: AnnoyedProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AntennaProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Antenna(props: AntennaProps) -> Element {
|
pub fn Antenna(props: AntennaProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Antenna(props: AntennaProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AnvilProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Anvil(props: AnvilProps) -> Element {
|
pub fn Anvil(props: AnvilProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Anvil(props: AnvilProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ApertureProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Aperture(props: ApertureProps) -> Element {
|
pub fn Aperture(props: ApertureProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Aperture(props: ApertureProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AppWindowProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AppWindow(props: AppWindowProps) -> Element {
|
pub fn AppWindow(props: AppWindowProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AppWindow(props: AppWindowProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AppWindowMacProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn AppWindowMac(props: AppWindowMacProps) -> Element {
|
pub fn AppWindowMac(props: AppWindowMacProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn AppWindowMac(props: AppWindowMacProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct AppleProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Apple(props: AppleProps) -> Element {
|
pub fn Apple(props: AppleProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Apple(props: AppleProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArchiveProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Archive(props: ArchiveProps) -> Element {
|
pub fn Archive(props: ArchiveProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Archive(props: ArchiveProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArchiveRestoreProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArchiveRestore(props: ArchiveRestoreProps) -> Element {
|
pub fn ArchiveRestore(props: ArchiveRestoreProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArchiveRestore(props: ArchiveRestoreProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArchiveXProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArchiveX(props: ArchiveXProps) -> Element {
|
pub fn ArchiveX(props: ArchiveXProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArchiveX(props: ArchiveXProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArmchairProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn Armchair(props: ArmchairProps) -> Element {
|
pub fn Armchair(props: ArmchairProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn Armchair(props: ArmchairProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigDownProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigDown(props: ArrowBigDownProps) -> Element {
|
pub fn ArrowBigDown(props: ArrowBigDownProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigDown(props: ArrowBigDownProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigDownDashProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigDownDash(props: ArrowBigDownDashProps) -> Element {
|
pub fn ArrowBigDownDash(props: ArrowBigDownDashProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigDownDash(props: ArrowBigDownDashProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigLeftProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigLeft(props: ArrowBigLeftProps) -> Element {
|
pub fn ArrowBigLeft(props: ArrowBigLeftProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigLeft(props: ArrowBigLeftProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigLeftDashProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigLeftDash(props: ArrowBigLeftDashProps) -> Element {
|
pub fn ArrowBigLeftDash(props: ArrowBigLeftDashProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigLeftDash(props: ArrowBigLeftDashProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigRightProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigRight(props: ArrowBigRightProps) -> Element {
|
pub fn ArrowBigRight(props: ArrowBigRightProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigRight(props: ArrowBigRightProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigRightDashProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigRightDash(props: ArrowBigRightDashProps) -> Element {
|
pub fn ArrowBigRightDash(props: ArrowBigRightDashProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigRightDash(props: ArrowBigRightDashProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigUpProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigUp(props: ArrowBigUpProps) -> Element {
|
pub fn ArrowBigUp(props: ArrowBigUpProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigUp(props: ArrowBigUpProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowBigUpDashProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowBigUpDash(props: ArrowBigUpDashProps) -> Element {
|
pub fn ArrowBigUpDash(props: ArrowBigUpDashProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowBigUpDash(props: ArrowBigUpDashProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDown(props: ArrowDownProps) -> Element {
|
pub fn ArrowDown(props: ArrowDownProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDown(props: ArrowDownProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDown01Props {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDown01(props: ArrowDown01Props) -> Element {
|
pub fn ArrowDown01(props: ArrowDown01Props) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDown01(props: ArrowDown01Props) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDown10Props {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDown10(props: ArrowDown10Props) -> Element {
|
pub fn ArrowDown10(props: ArrowDown10Props) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDown10(props: ArrowDown10Props) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownAZProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownAZ(props: ArrowDownAZProps) -> Element {
|
pub fn ArrowDownAZ(props: ArrowDownAZProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownAZ(props: ArrowDownAZProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownFromLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownFromLine(props: ArrowDownFromLineProps) -> Element {
|
pub fn ArrowDownFromLine(props: ArrowDownFromLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownFromLine(props: ArrowDownFromLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownLeftProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownLeft(props: ArrowDownLeftProps) -> Element {
|
pub fn ArrowDownLeft(props: ArrowDownLeftProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownLeft(props: ArrowDownLeftProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownNarrowWideProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownNarrowWide(props: ArrowDownNarrowWideProps) -> Element {
|
pub fn ArrowDownNarrowWide(props: ArrowDownNarrowWideProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownNarrowWide(props: ArrowDownNarrowWideProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownRightProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownRight(props: ArrowDownRightProps) -> Element {
|
pub fn ArrowDownRight(props: ArrowDownRightProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownRight(props: ArrowDownRightProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownToDotProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownToDot(props: ArrowDownToDotProps) -> Element {
|
pub fn ArrowDownToDot(props: ArrowDownToDotProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownToDot(props: ArrowDownToDotProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownToLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownToLine(props: ArrowDownToLineProps) -> Element {
|
pub fn ArrowDownToLine(props: ArrowDownToLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownToLine(props: ArrowDownToLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownUpProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownUp(props: ArrowDownUpProps) -> Element {
|
pub fn ArrowDownUp(props: ArrowDownUpProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownUp(props: ArrowDownUpProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownWideNarrowProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownWideNarrow(props: ArrowDownWideNarrowProps) -> Element {
|
pub fn ArrowDownWideNarrow(props: ArrowDownWideNarrowProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownWideNarrow(props: ArrowDownWideNarrowProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowDownZAProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowDownZA(props: ArrowDownZAProps) -> Element {
|
pub fn ArrowDownZA(props: ArrowDownZAProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowDownZA(props: ArrowDownZAProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowLeftProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowLeft(props: ArrowLeftProps) -> Element {
|
pub fn ArrowLeft(props: ArrowLeftProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowLeft(props: ArrowLeftProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowLeftFromLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowLeftFromLine(props: ArrowLeftFromLineProps) -> Element {
|
pub fn ArrowLeftFromLine(props: ArrowLeftFromLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowLeftFromLine(props: ArrowLeftFromLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowLeftRightProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowLeftRight(props: ArrowLeftRightProps) -> Element {
|
pub fn ArrowLeftRight(props: ArrowLeftRightProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowLeftRight(props: ArrowLeftRightProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowLeftToLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowLeftToLine(props: ArrowLeftToLineProps) -> Element {
|
pub fn ArrowLeftToLine(props: ArrowLeftToLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowLeftToLine(props: ArrowLeftToLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowRightProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowRight(props: ArrowRightProps) -> Element {
|
pub fn ArrowRight(props: ArrowRightProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowRight(props: ArrowRightProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowRightFromLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowRightFromLine(props: ArrowRightFromLineProps) -> Element {
|
pub fn ArrowRightFromLine(props: ArrowRightFromLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowRightFromLine(props: ArrowRightFromLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowRightLeftProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowRightLeft(props: ArrowRightLeftProps) -> Element {
|
pub fn ArrowRightLeft(props: ArrowRightLeftProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowRightLeft(props: ArrowRightLeftProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowRightToLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowRightToLine(props: ArrowRightToLineProps) -> Element {
|
pub fn ArrowRightToLine(props: ArrowRightToLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowRightToLine(props: ArrowRightToLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUp(props: ArrowUpProps) -> Element {
|
pub fn ArrowUp(props: ArrowUpProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUp(props: ArrowUpProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUp01Props {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUp01(props: ArrowUp01Props) -> Element {
|
pub fn ArrowUp01(props: ArrowUp01Props) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUp01(props: ArrowUp01Props) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUp10Props {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUp10(props: ArrowUp10Props) -> Element {
|
pub fn ArrowUp10(props: ArrowUp10Props) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUp10(props: ArrowUp10Props) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpAZProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpAZ(props: ArrowUpAZProps) -> Element {
|
pub fn ArrowUpAZ(props: ArrowUpAZProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpAZ(props: ArrowUpAZProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpDownProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpDown(props: ArrowUpDownProps) -> Element {
|
pub fn ArrowUpDown(props: ArrowUpDownProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpDown(props: ArrowUpDownProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpFromDotProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpFromDot(props: ArrowUpFromDotProps) -> Element {
|
pub fn ArrowUpFromDot(props: ArrowUpFromDotProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpFromDot(props: ArrowUpFromDotProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpFromLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpFromLine(props: ArrowUpFromLineProps) -> Element {
|
pub fn ArrowUpFromLine(props: ArrowUpFromLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpFromLine(props: ArrowUpFromLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpLeftProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpLeft(props: ArrowUpLeftProps) -> Element {
|
pub fn ArrowUpLeft(props: ArrowUpLeftProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpLeft(props: ArrowUpLeftProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpNarrowWideProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpNarrowWide(props: ArrowUpNarrowWideProps) -> Element {
|
pub fn ArrowUpNarrowWide(props: ArrowUpNarrowWideProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpNarrowWide(props: ArrowUpNarrowWideProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpRightProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpRight(props: ArrowUpRightProps) -> Element {
|
pub fn ArrowUpRight(props: ArrowUpRightProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpRight(props: ArrowUpRightProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpToLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpToLine(props: ArrowUpToLineProps) -> Element {
|
pub fn ArrowUpToLine(props: ArrowUpToLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpToLine(props: ArrowUpToLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpWideNarrowProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpWideNarrow(props: ArrowUpWideNarrowProps) -> Element {
|
pub fn ArrowUpWideNarrow(props: ArrowUpWideNarrowProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpWideNarrow(props: ArrowUpWideNarrowProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowUpZAProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowUpZA(props: ArrowUpZAProps) -> Element {
|
pub fn ArrowUpZA(props: ArrowUpZAProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowUpZA(props: ArrowUpZAProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ pub struct ArrowsUpFromLineProps {
|
||||||
#[props(default = false)]
|
#[props(default = false)]
|
||||||
pub absolute_stroke_width: bool,
|
pub absolute_stroke_width: bool,
|
||||||
pub class: Option<String>,
|
pub class: Option<String>,
|
||||||
|
pub style: Option<String>,
|
||||||
}
|
}
|
||||||
#[component]
|
#[component]
|
||||||
pub fn ArrowsUpFromLine(props: ArrowsUpFromLineProps) -> Element {
|
pub fn ArrowsUpFromLine(props: ArrowsUpFromLineProps) -> Element {
|
||||||
|
|
@ -24,6 +25,7 @@ pub fn ArrowsUpFromLine(props: ArrowsUpFromLineProps) -> Element {
|
||||||
svg {
|
svg {
|
||||||
"xmlns": "http://www.w3.org/2000/svg",
|
"xmlns": "http://www.w3.org/2000/svg",
|
||||||
"class": if let Some(class) = props.class { "{class}" },
|
"class": if let Some(class) = props.class { "{class}" },
|
||||||
|
"style": if let Some(style) = props.style { "{style}" },
|
||||||
"width": "{props.size}",
|
"width": "{props.size}",
|
||||||
"height": "{props.size}",
|
"height": "{props.size}",
|
||||||
"viewBox": "0 0 24 24",
|
"viewBox": "0 0 24 24",
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue