@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
16 lines (15 loc) • 354 B
TypeScript
export declare type DividerVariants = 'full-bleed' | 'inset' | 'middle';
export interface DividerProps {
/**
* Specify an optional className to be added to your Divider
*/
className?: string;
/**
* Optional ID for testing
*/
testID?: string;
/**
* The variant to use.
*/
variant?: DividerVariants;
}