ui/components/Card/CardFooter.d.ts

7 lines
157 B
TypeScript

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