UNPKG

@ntragas/pouncejstest

Version:

A collection of UI components from Panther labs

13 lines (12 loc) 445 B
import React from 'react'; import { Theme } from '../../theme'; export interface BadgeProps { /** The color theme of the badge */ color: keyof Theme['colors']; /** The style of the badge */ variant?: 'solid' | 'outline'; /** @ignore */ children: React.ReactNode; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLElement>>>; export default _default;