UNPKG

react-curse

Version:

A curses-like blazingly fast react renderer

9 lines (8 loc) 273 B
import { type TextProps } from './Text'; interface BlockProps extends TextProps { width?: number | undefined; align?: 'left' | 'center' | 'right'; children: any; } export default function Block({ width, align, children, ...props }: BlockProps): any; export {};