You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
368 B
TypeScript

import { PolymorphicComponent } from '../utils/PolymorphicComponent';
import { BadgeTypeMap } from './Badge.types';
/**
*
* Demos:
*
* - [Badge](https://mui.com/base-ui/react-badge/)
*
* API:
*
* - [Badge API](https://mui.com/base-ui/react-badge/components-api/#badge)
*/
declare const Badge: PolymorphicComponent<BadgeTypeMap<{}, "span">>;
export { Badge };