UNPKG

and-design-components-library

Version:

Library of reusable React components based on AND Digital design system.

13 lines (12 loc) 323 B
import { HTMLAttributes } from 'react'; import { SizeProps } from 'styled-system'; export interface AvatarProps extends HTMLAttributes<HTMLDivElement>, SizeProps { /** * Wheather the avatar image is round */ round?: boolean; /** * Path to the image source */ src?: string; }