UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

28 lines (27 loc) 1.22 kB
import React from 'react'; import { PlaceholderProps } from './type'; declare const Placeholder: { ({ as, className, content, children, ...props }: PlaceholderProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; Line: { ({ as, className, length, ...props }: import("./type").PlaceholderLineProps): React.ReactElement<{ className: string; }, string | React.JSXElementConstructor<any>>; displayName: string; }; Header: { ({ as, className, image, content, children, ...props }: import("./type").PlaceholderHeaderProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Image: { ({ as, className, ...props }: import("./type").PlaceholderImageProps): React.ReactElement<{ className: string; }, string | React.JSXElementConstructor<any>>; displayName: string; }; Paragraph: { ({ as, className, content, children, ...props }: import("./type").PlaceholderParagraphProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; }; export default Placeholder;