@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
29 lines (28 loc) • 851 B
TypeScript
import { AccordionActionsProps } from '@material-ui/core/AccordionActions';
export interface IExpansionPanelActionsProps extends AccordionActionsProps {
/**
* The content of the component.
*
* @optional
* @type node
*/
children?: AccordionActionsProps['children'];
/**
* Override or extend the styles applied to the component.
*
* See the [CSS API](https://material-ui.com/api/expansion-panel-actions/#css) for more details.
*
* @optional
* @see https://material-ui.com/api/expansion-panel-actions/#css
* @type object
*/
classes?: AccordionActionsProps['classes'];
/**
* If `true`, the actions do not have additional margin.
*
* @optional
* @default false
* @type bool
*/
disableSpacing?: AccordionActionsProps['disableSpacing'];
}