UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

29 lines (25 loc) 641 B
import * as React from 'react'; import { StandardProps } from '..'; export interface CardActionsProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, CardActionsClassKey> { /** * The content of the component. */ children?: React.ReactNode; /** * If `true`, the actions do not have additional margin. */ disableSpacing?: boolean; } export type CardActionsClassKey = 'root' | 'spacing'; /** * * Demos: * * - [Cards](https://mui.com/components/cards/) * * API: * * - [CardActions API](https://mui.com/api/card-actions/) */ export default function CardActions(props: CardActionsProps): JSX.Element;