reallylong.rsx 447 B

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