UNPKG

@redocly/theme

Version:

Shared UI components lib

10 lines (9 loc) 295 B
import type { PropsWithChildren, JSX } from 'react'; export type BadgeProps = PropsWithChildren<{ deprecated?: boolean; color?: string; key?: string; className?: string; icon?: string; }>; export declare function Badge({ icon, children, ...props }: BadgeProps): JSX.Element;