mirror of
https://github.com/idanoo/GoScrobble
synced 2025-06-30 13:12:18 +00:00
11 lines
316 B
TypeScript
11 lines
316 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface CardTitleProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
tag?: React.ElementType;
|
|
cssModule?: CSSModule;
|
|
}
|
|
|
|
declare class CardTitle extends React.Component<CardTitleProps> {}
|
|
export default CardTitle;
|