material-ui-cordova
Version:
React components that implement Google's Material Design.
19 lines (14 loc) • 387 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface CardActionsProps extends StandardProps<
React.HTMLAttributes<HTMLDivElement>,
CardActionsClassKey
> {
disableActionSpacing?: boolean;
}
export type CardActionsClassKey =
| 'root'
| 'action'
;
declare const CardActions: React.ComponentType<CardActionsProps>;
export default CardActions;