UNPKG

react-curse

Version:

A curses-like blazingly fast react renderer

10 lines (9 loc) 327 B
import { type TextProps } from './Text'; import React from 'react'; interface SeparatorProps extends TextProps { type?: 'vertical' | 'horizontal'; height?: number; width?: number; } export default function Separator({ type, height: _height, width: _width, ...props }: SeparatorProps): React.JSX.Element; export {};