ant-design/components/skeleton/Title.tsx

17 lines
438 B
TypeScript
Raw Normal View History

2019-08-05 18:38:10 +08:00
/* eslint-disable jsx-a11y/heading-has-content */
import * as React from 'react';
import classNames from 'classnames';
export interface SkeletonTitleProps {
prefixCls?: string;
className?: string;
style?: object;
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 }} />
);
export default Title;