Home > @uniformdev/design-system > DetailsProps

DetailsProps type

Signature:

type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
    summary: React$1.ReactNode;
    children: React$1.ReactNode;
    isOpen?: boolean | undefined;
    onChange?: (isOpen: boolean) => void;
    isOpenByDefault?: boolean;
    isIndented?: boolean;
    isCompact?: boolean;
};