import React from 'react' import type { UtopiaComponentProps } from './common' import { addEventHandlersToDivProps } from './common' export interface RectangleProps extends React.DetailedHTMLProps, HTMLDivElement>, UtopiaComponentProps {} export const Rectangle: React.FunctionComponent = (props: RectangleProps) => { let { 'data-uid': dataUid, 'data-label': dataLabel, ...divProps } = props const propsWithEventHandlers = addEventHandlersToDivProps(divProps) const propsWithoutChildren = { ...propsWithEventHandlers, children: undefined } return
} Rectangle.displayName = 'Rectangle'