semantic-ui-react
Version:
The official Semantic-UI-React integration.
23 lines (15 loc) • 627 B
TypeScript
import * as React from 'react'
export interface PlaceholderLineProps extends StrictPlaceholderLineProps {
[key: string]: any
}
export interface StrictPlaceholderLineProps {
/** An element type to render as (string or function). */
as?: any
/** Additional classes. */
className?: string
/** A line can specify how long its contents should appear. */
length?: 'full' | 'very long' | 'long' | 'medium' | 'short' | 'very short'
}
interface PlaceholderLineComponent extends React.StatelessComponent<PlaceholderLineProps> {}
declare const PlaceholderLine: PlaceholderLineComponent
export default PlaceholderLine