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

Small image or initials representing a person or entity.

## Props

```ts
interface AvatarProps {
  /** Image URL. Falls back to initials if it fails to load or is omitted. */
  src?: string;
  /** Person or entity name. Drives the initials and the accessible name. */
  name?: string;
  size?: "xs" | "sm" | "md" | "lg" | "xl";
  shape?: "circle" | "square";
  className?: string;
  id?: string;
  style?: CSSProperties;
}
```
