tap
Version:
A Test-Anything-Protocol library for JavaScript
15 lines (14 loc) • 312 B
TypeScript
import { FC } from 'react';
export interface Props {
/**
* Number of newlines to insert.
*
* @default 1
*/
readonly count?: number;
}
/**
* Adds one or more newline (\n) characters. Must be used within <Text> components.
*/
declare const Newline: FC<Props>;
export default Newline;