mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
15 lines
373 B
TypeScript
15 lines
373 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
|
||
|
export interface BadgeProps extends React.HTMLAttributes<HTMLElement> {
|
||
|
[key: string]: any;
|
||
|
color?: string;
|
||
|
pill?: boolean;
|
||
|
tag?: React.ElementType;
|
||
|
innerRef?: React.Ref<HTMLElement>;
|
||
|
cssModule?: CSSModule;
|
||
|
}
|
||
|
|
||
|
declare class Badge extends React.Component<BadgeProps> {}
|
||
|
export default Badge;
|