UNPKG

@cainthus/alex-library

Version:

Component React library for Cainthus - Alex Dashboard.

12 lines (11 loc) 370 B
import React from 'react'; import './Badge.scss'; import { Props } from './Badge.types'; export default class Badge extends React.Component<Props> { static defaultProps: { theme: "primary" | "secondary" | "success" | "error" | "default"; weight: "light" | "lighter" | "bold" | "normal"; className: string; }; render(): JSX.Element; }