GoScrobble/web/node_modules/reactstrap/lib/CardFooter.d.ts

12 lines
320 B
TypeScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
import * as React from 'react';
import { CSSModule } from './index';
export interface CardFooterProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
tag?: React.ElementType;
cssModule?: CSSModule;
}
declare class CardFooter extends React.Component<CardFooterProps> {}
export default CardFooter;