import classNames from 'classnames'; import omit from 'rc-util/lib/omit'; import * as React from 'react'; import { ConfigContext } from '../config-provider'; import type { SkeletonElementProps } from './Element'; import Element from './Element'; import useStyle from './style'; export interface AvatarProps extends Omit { shape?: 'circle' | 'square'; } const SkeletonAvatar: React.FC = (props) => { const { prefixCls: customizePrefixCls, className, rootClassName, active, shape = 'circle', size = 'default', } = props; const { getPrefixCls } = React.useContext(ConfigContext); const prefixCls = getPrefixCls('skeleton', customizePrefixCls); const [wrapSSR, hashId] = useStyle(prefixCls); const otherProps = omit(props, ['prefixCls', 'className']); const cls = classNames( prefixCls, `${prefixCls}-element`, { [`${prefixCls}-active`]: active, }, className, rootClassName, hashId, ); return wrapSSR(
, ); }; export default SkeletonAvatar;