UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 289 B
/// <reference types="react" /> export interface SkeletonTitleProps { prefixCls?: string; className?: string; style?: object; width?: number | string; } declare const Title: ({ prefixCls, className, width, style }: SkeletonTitleProps) => JSX.Element; export default Title;