UNPKG

retabler

Version:

React Component library via Tabler

10 lines (9 loc) 304 B
import React from "react"; export interface CardBodyProps { className?: string; children?: React.ReactNode; loading?: boolean; style?: React.CSSProperties; } declare function CardBody({ className, children, style, loading }: CardBodyProps): JSX.Element; export default CardBody;