UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 302 B
import * as React from 'react'; export interface SkeletonTitleProps { prefixCls?: string; className?: string; style?: React.CSSProperties; width?: number | string; } declare const Title: ({ prefixCls, className, width, style }: SkeletonTitleProps) => JSX.Element; export default Title;