mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-11 22:32:32 +08:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import { NormalSizes } from '../utils/prop-types'
|
|
|
|
export const AVATAR_SIZES: Map<NormalSizes, string> = new Map([
|
|
['mini', '1.25rem'],
|
|
['small', '1.875rem'],
|
|
['medium', '3.75rem'],
|
|
['large', '5.625rem'],
|
|
])
|