15 lines
469 B
TypeScript
15 lines
469 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps, ThemingProps } from '@chakra-ui/system';
|
|
|
|
interface BadgeProps extends HTMLChakraProps<"span">, ThemingProps<"Badge"> {
|
|
}
|
|
/**
|
|
* React component used to display notifications, messages, or
|
|
* statuses in different shapes and sizes.
|
|
*
|
|
* @see Docs https://chakra-ui.com/badge
|
|
*/
|
|
declare const Badge: _chakra_ui_system.ComponentWithAs<"span", BadgeProps>;
|
|
|
|
export { Badge, BadgeProps };
|