Files
TestMesa/backend/frontend/node_modules/react-bootstrap/cjs/Badge.d.ts
2024-12-17 13:23:11 -08:00

11 lines
389 B
TypeScript

import * as React from 'react';
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
import { Color, Variant } from './types';
export interface BadgeProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
bg?: Variant;
pill?: boolean;
text?: Color;
}
declare const Badge: BsPrefixRefForwardingComponent<'span', BadgeProps>;
export default Badge;