reallylong.rsx 433 B

123456789101112131415
  1. pub static Icon3: Component<()> = |cx| {
  2. rsx! {
  3. svg {
  4. class: "w-6 h-6",
  5. stroke_linecap: "round",
  6. fill: "none",
  7. stroke_linejoin: "round",
  8. stroke_width: "2",
  9. stroke: "currentColor",
  10. view_box: "0 0 24 24",
  11. path { d: "M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2" }
  12. circle { cx: "12", cy: "7", r: "4" }
  13. }
  14. }
  15. };