Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

indicator.tsx 426B

123456789101112131415161718192021
  1. import styled from "styles"
  2. const Indicator = styled("path", {
  3. fill: "none",
  4. stroke: "transparent",
  5. strokeWidth: "2",
  6. pointerEvents: "none",
  7. strokeLineCap: "round",
  8. strokeLinejoin: "round",
  9. })
  10. const HoverIndicator = styled("path", {
  11. fill: "none",
  12. stroke: "transparent",
  13. strokeWidth: "8",
  14. pointerEvents: "all",
  15. strokeLinecap: "round",
  16. strokeLinejoin: "round",
  17. })
  18. export { Indicator, HoverIndicator }