primereact
Version:
PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime
57 lines (54 loc) • 1.51 kB
TypeScript
/**
*
* Badge represents people using icons, labels and images.
*
* [Live Demo](https://www.primereact.org/badge)
*
* @module badge
*
*/
import * as React from 'react';
/**
* Defines valid properties in Badge component. In addition to these, all properties of HTMLSpanElement can be used in this component.
* @group Properties
*/
export interface BadgeProps extends Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, 'ref'> {
/**
* Value to display inside the badge.
*
*/
value?: any | null | undefined;
/**
* Severity type of the badge.
* @defaultValue null
*/
severity?: 'success' | 'info' | 'warning' | 'danger' | null | undefined;
/**
* Size of the badge, valid options are "large" and "xlarge".
* @defaultValue null
*/
size?: 'normal' | 'large' | 'xlarge' | null | undefined;
/**
* Used to get the child elements of the component.
* @readonly
*/
children?: React.ReactNode | undefined;
}
/**
* **PrimeReact - Badge**
*
* _Badge represents people using icons, labels and images._
*
* [Live Demo](https://www.primereact.org/badge/)
* --- ---
* 
*
* @group Component
*/
export declare class Badge extends React.Component<BadgeProps, any> {
/**
* Used to get container element.
* @return {HTMLSpanElement} Container element
*/
public getElement(): HTMLSpanElement;
}