You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/skeleton/Avatar.jsx

38 lines
965 B

import classNames from 'classnames'
import PropTypes from '../_util/vue-types'
import { initDefaultProps } from '../_util/props-util'
const skeletonAvatarProps = {
prefixCls: PropTypes.string,
size: PropTypes.oneOf(['large', 'small', 'default']),
shape: PropTypes.oneOf(['circle', 'square']),
}
export const SkeletonAvatarProps = PropTypes.shape(skeletonAvatarProps).loose
const Avatar = {
props: initDefaultProps(skeletonAvatarProps, {
prefixCls: 'ant-skeleton-avatar',
size: 'large',
}),
render () {
const { prefixCls, size, shape } = this.$props
const sizeCls = classNames({
[`${prefixCls}-lg`]: size === 'large',
[`${prefixCls}-sm`]: size === 'small',
})
const shapeCls = classNames({
[`${prefixCls}-circle`]: shape === 'circle',
[`${prefixCls}-square`]: shape === 'square',
})
return (
<span class={classNames(prefixCls, sizeCls, shapeCls)} />
)
},
}
export default Avatar