2019-08-05 18:38:10 +08:00
|
|
|
/* eslint-disable jsx-a11y/heading-has-content */
|
2018-08-22 23:34:36 +08:00
|
|
|
import * as React from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
|
|
export interface SkeletonTitleProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
className?: string;
|
2021-01-21 17:16:51 +08:00
|
|
|
style?: React.CSSProperties;
|
2018-08-22 23:34:36 +08:00
|
|
|
width?: number | string;
|
|
|
|
}
|
|
|
|
|
2019-08-05 18:38:10 +08:00
|
|
|
const Title = ({ prefixCls, className, width, style }: SkeletonTitleProps) => (
|
|
|
|
<h3 className={classNames(prefixCls, className)} style={{ width, ...style }} />
|
|
|
|
);
|
2018-08-22 23:34:36 +08:00
|
|
|
|
|
|
|
export default Title;
|