@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
16 lines (15 loc) • 438 B
TypeScript
import * as React from 'react';
export interface DabIpsumProps {
/**
* Set the component to render a different element type.
* @default "'p'"
*/
component?: 'ul' | 'ol' | 'p' | 'text';
/**
* The number of elements (e.g. paragraphs) to render.
* @default 5
*/
count?: number;
}
declare const _default: React.MemoExoticComponent<(props: DabIpsumProps) => JSX.Element>;
export default _default;