fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
10 lines (9 loc) • 331 B
TypeScript
import React from 'react';
import { PlaceholderLineProps } from './type';
declare const PlaceholderLine: {
({ as, className, length, ...props }: PlaceholderLineProps): React.ReactElement<{
className: string;
}, string | React.JSXElementConstructor<any>>;
displayName: string;
};
export default PlaceholderLine;