UNPKG

312 BTypeScriptView Raw
1import { FC } from 'react';
2export interface Props {
3 /**
4 * Number of newlines to insert.
5 *
6 * @default 1
7 */
8 readonly count?: number;
9}
10/**
11 * Adds one or more newline (\n) characters. Must be used within <Text> components.
12 */
13declare const Newline: FC<Props>;
14export default Newline;