Badge from @kibrisyazilim/design-system. Use via `window.KibrisDS.Badge` (bundle loaded from the root `_ds_bundle.js`).

Compact status or category label. Not interactive.

## Props

```ts
interface BadgeProps {
  /** Semantic color. Match the meaning, not the look. */
  tone?: "success" | "warning" | "danger" | "neutral" | "accent";
  variant?: "subtle" | "solid" | "outline";
  size?: "sm" | "md";
  /** Renders a small filled dot before the label. */
  dot?: boolean;
  children?: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}
```
