You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 }