@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
8 lines (7 loc) • 339 B
TypeScript
import type { HTMLProps, ReactNode } from 'react';
import type { SpacingProps } from '../space/types';
export type CardListProps = {
children: ReactNode;
} & SpacingProps & Omit<HTMLProps<HTMLUListElement>, 'children'>;
declare function CardList(props: CardListProps): import("react/jsx-runtime").JSX.Element;
export default CardList;