UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

32 lines (31 loc) 1.67 kB
/// <reference types="react" /> import { ItemProps } from './type'; declare const Item: { ({ as, className, children, ...props }: ItemProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; Group: { ({ as, divided, className, children, ...props }: import("./type").ItemGroupProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; Content: { ({ as, verticalAlign, className, children, ...props }: import("./type").ItemContentProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; Header: { ({ as, className, content, children, ...props }: import("./type").ItemHeaderProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; Description: { ({ as, className, content, children, ...props }: import("./type").ItemDescriptionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; Meta: { ({ as, className, content, children, ...props }: import("./type").ItemMetaProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; Extra: { ({ as, className, content, children, ...props }: import("./type").ItemExtraProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; }; export default Item;