UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

32 lines (31 loc) 1.54 kB
import React from 'react'; import { ListProps } from './type'; declare const List: { ({ as, className, items, relaxed, divided, bulleted, horizontal, ordered, suffixed, link, content, children, ...props }: ListProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; Item: { ({ as, href, active, className, content, children, ...props }: import("./type").ListItemProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Content: { ({ as, className, content, children, ...props }: import("./type").ListContentProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Description: { ({ as, className, content, children, ...props }: import("./type").ListDescriptionProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Header: { ({ as, className, content, children, ...props }: import("./type").ListHeaderProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; Icon: { ({ verticalAlign, ...props }: import("./type").ListIconProps): JSX.Element; displayName: string; }; List: { ({ as, className, content, children, ...props }: import("./type").ListListProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>; displayName: string; }; }; export default List;