UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

20 lines (15 loc) 433 B
const AVATAR_SMALL_SIZE = "small"; const AVATAR_MEDIUM_SIZE = "medium"; const AVATAR_LARGE_SIZE = "large"; export const AVATAR_TYPES = { IMG: "img", ICON: "icon", TEXT: "text" }; export const AVATAR_ALLOWED_TYPES = Object.keys(AVATAR_TYPES); export const AVATAR_SIZES = { SMALL: AVATAR_SMALL_SIZE, MEDIUM: AVATAR_MEDIUM_SIZE, LARGE: AVATAR_LARGE_SIZE }; export const AVATAR_ALLOWED_SIZES = Object.keys(AVATAR_SIZES);