16 lines
339 B
TypeScript
16 lines
339 B
TypeScript
import * as React from 'react';
|
|
import { StandardProps } from '..';
|
|
|
|
export interface CardContentProps extends StandardProps<
|
|
React.HTMLAttributes<HTMLDivElement>,
|
|
CardContentClassKey
|
|
> {}
|
|
|
|
export type CardContentClassKey =
|
|
| 'root'
|
|
;
|
|
|
|
declare const CardContent: React.ComponentType<CardContentProps>;
|
|
|
|
export default CardContent;
|