mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
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;
|