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