mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
1a0a06fca9
Basic support prefixCls.
25 lines
497 B
TypeScript
25 lines
497 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> {
|
|
render() {
|
|
const { prefixCls, className, width, style } = this.props;
|
|
|
|
return (
|
|
<h3
|
|
className={classNames(prefixCls, className)}
|
|
style={{ width, ...style }}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Title;
|