UNPKG

@hhgtech/hhg-components

Version:
8 lines (7 loc) 286 B
import React from 'react'; import { BadgeProps as MantineBadgeProps } from '@mantine/core'; export type BadgeProps = { color?: string; } & Omit<MantineBadgeProps, 'color'>; declare const Badge: ({ color, styles, ...rest }: BadgeProps) => React.JSX.Element; export { Badge };