dioxus/packages/autofmt/tests/samples/reallylong.rsx

16 lines
433 B
Text
Raw Normal View History

2023-01-14 01:16:06 +00:00
pub static Icon3: Component<()> = |cx| {
2024-01-14 05:12:21 +00:00
rsx! {
2023-01-14 08:42:43 +00:00
svg {
class: "w-6 h-6",
stroke_linecap: "round",
fill: "none",
stroke_linejoin: "round",
stroke_width: "2",
stroke: "currentColor",
view_box: "0 0 24 24",
path { d: "M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2" }
circle { cx: "12", cy: "7", r: "4" }
2023-01-14 01:16:06 +00:00
}
}
2023-01-14 01:16:06 +00:00
};