UNPKG

572 BTypeScriptView Raw
1import * as React from 'react';
2export interface CardBodyProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered inside the Card Body */
4 children?: React.ReactNode;
5 /** Additional classes added to the Card Body */
6 className?: string;
7 /** Sets the base component to render. defaults to div */
8 component?: keyof JSX.IntrinsicElements;
9 /** Enables the body Content to fill the height of the card */
10 isFilled?: boolean;
11}
12export declare const CardBody: React.FunctionComponent<CardBodyProps>;
13//# sourceMappingURL=CardBody.d.ts.map
\No newline at end of file