import { CSSProp } from 'styled-components'; import { TextAvatar } from '../../molecules/TextAvatar'; import { TBorderRadiusSizes, TComponentSizesExtended, TLayer } from '../../../types'; import { TUiColorsMain } from '../../../types/TUiColorsMain'; type TtextAvatarSettings = React.ComponentProps; export type TFancyProfilePicture = { borderRadius?: TBorderRadiusSizes | 'none'; sizeC?: TComponentSizesExtended | 'fit' | (string & {}); externalStyle?: CSSProp; textAvatarSettings?: Omit; nickname?: string; themeType?: TUiColorsMain; layer?: TLayer; }; export type TFancyProfilePictureWithHTMLAttrs = TFancyProfilePicture & React.HTMLAttributes & { children?: React.ReactNode; }; export {};