@tracktor/design-system 3.3.0 → 3.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@ import { AvatarProps as MuiAvatarProps } from '@mui/material';
2
2
  export interface AvatarProps extends MuiAvatarProps {
3
3
  secondarySrc?: string;
4
4
  secondaryAvatarProps?: Omit<MuiAvatarProps, "src">;
5
+ size?: "small" | "medium" | "large";
5
6
  }
6
- declare const Avatar: ({ secondarySrc, secondaryAvatarProps, ...props }: AvatarProps) => import("@emotion/react/jsx-runtime").JSX.Element;
7
+ declare const Avatar: ({ secondarySrc, secondaryAvatarProps, size, ...props }: AvatarProps) => import("@emotion/react/jsx-runtime").JSX.Element;
7
8
  export default Avatar;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "3.3.0",
5
+ "version": "3.3.2",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",