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