Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 }