@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
21 lines (20 loc) • 558 B
TypeScript
/// <reference types="react" />
export declare type DialogFooterAccessibilityProps = {
role?: 'group';
'aria-describedby'?: string;
};
export interface DialogFooterProps {
accessibility?: DialogFooterAccessibilityProps;
/**
* Specify an optional className to be added to your DialogFooter
*/
className?: string;
/**
* Specify the main button into Footer area
*/
primaryButton: React.ReactElement;
/**
* Specify the secondary button into Footer area
*/
secondaryButton?: React.ReactElement;
}