UNPKG

react-curse

Version:

A curses-like blazingly fast react renderer

7 lines (6 loc) 207 B
import { type TextProps } from './Text'; interface BannerProps extends TextProps { children: string; } export default function Banner({ children, ...props }: BannerProps): JSX.Element | null; export {};