react-curse
Version:
A curses-like blazingly fast react renderer
11 lines (10 loc) • 350 B
TypeScript
import { type TextProps } from './Text';
import React from 'react';
interface FrameProps extends TextProps {
children: any;
type?: 'single' | 'double' | 'rounded';
height?: number;
width?: number;
}
export default function Frame({ children, type, height: _height, width: _width, ...props }: FrameProps): React.JSX.Element;
export {};