beta-parity-react
Version:
Beta Parity React Components
15 lines • 620 B
TypeScript
import React from 'react';
import './index.css';
import './variables.css';
export interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
children?: string | React.ReactNode;
className?: string;
label?: string;
icon?: React.ReactNode;
color?: 'gray' | 'orange' | 'violet' | 'green' | 'red' | 'yellow' | 'blue' | 'lime' | 'cyan' | '';
size?: 'md' | 'sm' | 'xs';
dot?: boolean;
variant?: 'filled' | 'outlined' | 'glass' | '';
}
export declare const Popover: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
//# sourceMappingURL=index.d.ts.map