Home > @uniformdev/design-system > DescriptionListProps

DescriptionListProps type

Signature:

type DescriptionListProps = {
    items: {
        label: string;
        value: string | number | boolean | React__default.ReactNode;
    }[];
    variant?: 'horizontal' | 'vertical';
} & React__default.HTMLAttributes<HTMLDListElement>;