7 lines
329 B
TypeScript
7 lines
329 B
TypeScript
import * as React from 'react';
|
|
import { BoxProps } from '../../primitives/Box';
|
|
export interface CardContentProps extends BoxProps {
|
|
children: React.ReactNode;
|
|
}
|
|
export declare const CardContent: ({ children, ...props }: CardContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=CardContent.d.ts.map
|