UNPKG

@naturacosmeticos/natds-web

Version:

A collection of components from Natura Design System for React websites and webapps

21 lines (20 loc) 699 B
import { ListItemSecondaryActionProps } from '@material-ui/core/ListItemSecondaryAction'; export interface IListItemSecondaryActionProps extends ListItemSecondaryActionProps { /** * The content of the component, normally an IconButton or selection control. * * @optional * @type element */ children?: ListItemSecondaryActionProps['children']; /** * Override or extend the styles applied to the component. * * Check [CSS API](https://material-ui.com/api/list/#css) below for more details. * * @optional * @see https://material-ui.com/api/list/#css * @type object */ classes?: ListItemSecondaryActionProps['classes']; }