soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
9 lines (8 loc) • 388 B
TypeScript
/// <reference types="react" />
/**
* Low level component, use `<Details>` component if possiable
*/
export declare const Collapsible: import("react").ForwardRefExoticComponent<{
expanded?: boolean | undefined;
children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "expanded"> & import("react").RefAttributes<HTMLDivElement>>;