tldraw/components/canvas/brush.tsx

24 lines
422 B
TypeScript
Raw Normal View History

2021-05-10 12:16:57 +00:00
import { useSelector } from "state"
import styled from "styles"
export default function Brush() {
const brush = useSelector(({ data }) => data.brush)
if (!brush) return null
return (
<BrushRect
x={brush.minX}
y={brush.minY}
width={brush.width}
height={brush.height}
/>
)
}
const BrushRect = styled("rect", {
fill: "$brushFill",
stroke: "$brushStroke",
2021-05-27 18:51:25 +00:00
zStrokeWidth: 1,
2021-05-10 12:16:57 +00:00
})