ant-design/components/skeleton/Title.tsx
2018-12-07 18:27:30 +08:00

24 lines
559 B
TypeScript

import * as React from 'react';
import classNames from 'classnames';
export interface SkeletonTitleProps {
prefixCls?: string;
className?: string;
style?: object;
width?: number | string;
}
class Title extends React.Component<SkeletonTitleProps, any> {
static defaultProps: Partial<SkeletonTitleProps> = {
prefixCls: 'ant-skeleton-title',
};
render() {
const { prefixCls, className, width, style } = this.props;
return <h3 className={classNames(prefixCls, className)} style={{ width, ...style }} />;
}
}
export default Title;