tldraw/components/canvas/shapes/indicator.tsx
2021-05-12 12:27:33 +01:00

21 lines
426 B
TypeScript

import styled from "styles"
const Indicator = styled("path", {
fill: "none",
stroke: "transparent",
strokeWidth: "2",
pointerEvents: "none",
strokeLineCap: "round",
strokeLinejoin: "round",
})
const HoverIndicator = styled("path", {
fill: "none",
stroke: "transparent",
strokeWidth: "8",
pointerEvents: "all",
strokeLinecap: "round",
strokeLinejoin: "round",
})
export { Indicator, HoverIndicator }