Tldraw/examples/core-example-advanced/src/shapes/box/BoxIndicator.tsx

18 wiersze
400 B
TypeScript

import { TLShapeUtil } from '@tldraw/core'
import * as React from 'react'
import type { BoxShape } from './BoxShape'
export const BoxIndicator = TLShapeUtil.Indicator<BoxShape>(({ shape }) => {
return (
<rect
pointerEvents="none"
width={shape.size[0]}
height={shape.size[1]}
fill="none"
stroke="tl-selectedStroke"
strokeWidth={1}
rx={4}
/>
)
})