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