UNPKG

@appbuckets/react-ui

Version:
17 lines (16 loc) 493 B
import * as React from 'react'; import { Creatable } from '../generic'; import { ItemContentProps } from './ItemContent.types'; import ItemHeader from './ItemHeader'; import ItemMeta from './ItemMeta'; import ItemText from './ItemText'; declare type ItemContentChildren = { Header: typeof ItemHeader; Meta: typeof ItemMeta; Text: typeof ItemText; }; declare const ItemContent: Creatable< React.FunctionComponent<ItemContentProps> > & ItemContentChildren; export default ItemContent;