@appbuckets/react-ui
Version:
Just Another React UI Framework
17 lines (16 loc) • 516 B
TypeScript
import * as React from 'react';
import { Creatable } from '../generic';
import Avatar from '../Avatar';
import { ItemProps } from './Item.types';
import ItemContent from './ItemContent';
import ItemGroup from './ItemGroup';
import ItemTools from './ItemTools';
export declare type ItemChildren = {
Avatar: typeof Avatar;
Content: typeof ItemContent;
Group: typeof ItemGroup;
Tools: typeof ItemTools;
};
declare const Item: Creatable<React.FunctionComponent<ItemProps>> &
ItemChildren;
export default Item;