@itwin/core-react
Version:
A react component library of iTwin.js UI general purpose components
17 lines • 494 B
TypeScript
/** @packageDocumentation
* @module Utilities
*/
import * as React from "react";
import type { BadgeKind } from "./BadgeType.js";
import { BadgeType } from "./BadgeType.js";
/** Properties for the {@link Badge} component.
* @internal
*/
export interface BadgeProps {
type?: BadgeType | BadgeKind;
}
/** Badge component that renders based on a badge type.
* @internal
*/
export declare function Badge({ type }: BadgeProps): React.JSX.Element | null;
//# sourceMappingURL=Badge.d.ts.map