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