@trellixio/roaster-coffee
Version:
Beans' product component library
13 lines • 655 B
TypeScript
import * as React from 'react';
import { ForwardRefWithStaticComponents } from '@/types';
import { DescriptiveListItem } from './DescriptiveListItem';
export interface DescriptiveListProps extends React.ComponentProps<'dl'> {
/** Child elements to be rendered within the descriptive list. Typically, these child elements are DescriptiveList.Item components. */
children: React.ReactNode;
}
declare type DescriptiveListComponent = ForwardRefWithStaticComponents<DescriptiveListProps, {
Item: typeof DescriptiveListItem;
}>;
export declare const DescriptiveList: DescriptiveListComponent;
export {};
//# sourceMappingURL=DescriptiveList.d.ts.map