mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
17 lines
438 B
TypeScript
17 lines
438 B
TypeScript
/* 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) => (
|
|
<h3 className={classNames(prefixCls, className)} style={{ width, ...style }} />
|
|
);
|
|
|
|
export default Title;
|