UNPKG

@tldraw/core

Version:

The tldraw core renderer and utilities.

15 lines 582 B
import * as React from 'react'; import type { HTMLProps } from 'react'; import type { TLBounds } from '../../types'; export interface ContainerProps extends HTMLProps<HTMLDivElement> { id?: string; bounds: TLBounds; rotation?: number; isGhost?: boolean; isSelected?: boolean; children: React.ReactNode; } declare function _Container({ id, bounds, rotation, isGhost, isSelected, children, ...props }: ContainerProps): JSX.Element; export declare const Container: React.MemoExoticComponent<typeof _Container>; export {}; //# sourceMappingURL=Container.d.ts.map