@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
21 lines (20 loc) • 435 B
TypeScript
/// <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;
};