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