@trail-ui/react
Version:
10 lines (7 loc) • 327 B
TypeScript
import * as react from 'react';
import { HTMLAttributes } from 'react';
interface CardBodyProps extends HTMLAttributes<HTMLDivElement> {
elementType?: string;
}
declare const _CardBody: react.ForwardRefExoticComponent<CardBodyProps & react.RefAttributes<HTMLDivElement>>;
export { _CardBody as CardBody, CardBodyProps };