@mindly/ui-components 3.14.0 → 3.15.1

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.
@@ -1,6 +1,10 @@
1
1
  import { CSSProperties, FC } from 'react';
2
2
  export declare type AvatarProps = {
3
3
  dimensions?: number;
4
+ width?: number;
5
+ height?: number;
6
+ fontSize?: number;
7
+ borderRadius?: string;
4
8
  src?: string;
5
9
  firstName?: string;
6
10
  style?: CSSProperties;
@@ -1,6 +1,9 @@
1
1
  declare type AvatarWrapperProps = {
2
2
  dimensions: number;
3
+ width?: number;
4
+ height?: number;
3
5
  withBorder: boolean;
6
+ borderRadius?: string;
4
7
  };
5
8
  export declare const AvatarWrapper: import("styled-components").StyledComponent<"div", any, AvatarWrapperProps, never>;
6
9
  export {};
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- export declare type ImageWithFallbackProps = JSX.IntrinsicElements["img"] & ({
2
+ export declare type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
3
3
  onErrorContent: React.ReactElement;
4
- });
4
+ };
5
5
  declare const ImageWithFallback: React.FC<ImageWithFallbackProps>;
6
6
  export default ImageWithFallback;
@@ -5,6 +5,10 @@ export declare type LetterAvatarProps = {
5
5
  className?: string;
6
6
  style?: CSSProperties;
7
7
  withBorder?: boolean;
8
+ borderRadius?: string;
9
+ width?: number;
10
+ height?: number;
11
+ fontSize?: number;
8
12
  };
9
13
  declare const _default: React.NamedExoticComponent<LetterAvatarProps>;
10
14
  export default _default;
@@ -1,6 +1,10 @@
1
1
  declare type LetterAvatarStyledProps = {
2
2
  dimensions: number;
3
+ width?: number;
4
+ height?: number;
5
+ fontSize?: number;
3
6
  withBorder: boolean;
7
+ borderRadius?: string;
4
8
  };
5
9
  declare const LetterAvatarStyled: import("styled-components").StyledComponent<"div", any, LetterAvatarStyledProps, never>;
6
10
  export default LetterAvatarStyled;