import { ReactNode } from 'react' /** @public */ export interface TLUiButtonLabelProps { children?: ReactNode } /** @public @react */ export function TldrawUiButtonLabel({ children }: TLUiButtonLabelProps) { return {children} }