UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

20 lines (19 loc) 770 B
import { ForwardRefExoticComponent } from 'react'; import { ListProps } from './list'; import ListItem, { ListItemProps } from './item'; import ListItemCaption from './item/caption'; import ListItemContent from './item/content'; import { ListItemAction, ListItemMedia } from './item/media'; import ListItemTitle from './item/title'; import './styles/index.scss'; export interface ListComponent extends ForwardRefExoticComponent<ListProps> { Item: typeof ListItem; ItemMedia: typeof ListItemMedia; ItemContent: typeof ListItemContent; ItemTitle: typeof ListItemTitle; ItemCaption: typeof ListItemCaption; ItemAction: typeof ListItemAction; } declare const ExportList: ListComponent; export { ListProps, ListItemProps }; export default ExportList;