mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface CardProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
tag?: React.ElementType;
|
|
inverse?: boolean;
|
|
color?: string;
|
|
body?: boolean;
|
|
outline?: boolean;
|
|
cssModule?: CSSModule;
|
|
innerRef?: React.Ref<HTMLElement>;
|
|
}
|
|
|
|
declare class Card extends React.Component<CardProps> {}
|
|
export default Card;
|