@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
13 lines (12 loc) • 381 B
TypeScript
import Card from './CardInner';
import CardAction from './CardAction';
import CardList from './CardList';
import CardListItem from './CardListItem';
export type { CardProps } from './CardInner';
export { Card };
declare const CardCompound: typeof Card & {
Action: typeof CardAction;
List: typeof CardList;
ListItem: typeof CardListItem;
};
export default CardCompound;