UNPKG

@naturacosmeticos/natds-react

Version:
21 lines (20 loc) 435 B
/// <reference types="react" /> export declare type CollapseProps = { /** * Override or extend the styles applied to the component */ className?: string; /** * Controls when the content should be show or hide * @default false */ open?: boolean; /** * Optional ID for testing */ testID?: string; /** * The content of collapse */ children: React.ReactNode; };