+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "BadgeProps"
keywords = ["grafana","documentation","sdk","@grafana/ui"]
type = "docs"
+++
## BadgeProps interface
Signature
```typescript
export interface BadgeProps
```
Import
```typescript
import { BadgeProps } from '@grafana/ui';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [color](#color-property) | BadgeColor
| |
| [icon](#icon-property) | IconName
| |
| [text](#text-property) | string
| |
| [tooltip](#tooltip-property) | string
| |
### color property
Signature
```typescript
color: BadgeColor;
```
### icon property
Signature
```typescript
icon?: IconName;
```
### text property
Signature
```typescript
text: string;
```
### tooltip property
Signature
```typescript
tooltip?: string;
```