UNPKG

react-curse

Version:

A curses-like blazingly fast react renderer

11 lines (10 loc) 303 B
import { type TextProps } from './Text'; interface BarProps extends TextProps { type: 'vertical' | 'horizontal'; y?: number; x?: number; height?: number; width?: number; } export default function Bar({ type, y, x, height, width, ...props }: BarProps): JSX.Element | null; export {};