/* 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; } const Title = ({ prefixCls, className, width, style }: SkeletonTitleProps) => (
); export default Title;