Files
wdi-dashboard/node_modules/@chakra-ui/layout/dist/badge.d.ts
2024-08-16 15:06:52 +05:30

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 };