UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

13 lines (12 loc) 500 B
import { ReactNode } from 'react'; import { Theme } from '@emotion/react'; import { AvatarPropsVariantOverrides, SxProps } from '@mui/material'; import { MuiAvatarBaseProps } from '../types'; import { OverridableStringUnion } from '@mui/types'; export interface AvatarBaseProps extends MuiAvatarBaseProps { sx?: SxProps<Theme>; src?: string; children?: ReactNode; variant?: OverridableStringUnion<'circular' | 'rounded' | 'square', AvatarPropsVariantOverrides>; sizes?: string; }