soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
12 lines (11 loc) • 366 B
TypeScript
/// <reference types="react" />
export declare function Details({ summary, children, open, onChange, sd: initSd, ...props }: {
summary?: React.ReactNode;
children?: React.ReactNode;
open?: boolean;
onChange?: (open: boolean) => void;
/**
* @default filled
*/
sd?: 'outlined' | 'filled';
}): import("react/jsx-runtime").JSX.Element;