UNPKG

@redocly/theme

Version:

Shared UI components lib

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