ui/components/Card/CardContent.d.ts

7 lines
160 B
TypeScript
Raw Permalink Normal View History

import React from 'react';
type CardContentProps = {
children: React.ReactNode;
};
export declare const CardContent: React.FC<CardContentProps>;
export {};