@chakra-ui/layout
Version:
Chakra UI layout components that give you massive speed
15 lines (12 loc) • 469 B
text/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 };