import { SVGContainer, TLShapeUtil } from '@tldraw/core' import * as React from 'react' import type { RectShape } from './RectShape' export const RectComponent = TLShapeUtil.Component( ({ shape, events, meta }, ref) => { const color = meta.isDarkMode ? 'white' : 'black' return ( ) } )