You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/skeleton/Title.tsx

24 lines
684 B

import { defineComponent, ExtractPropTypes } from 'vue';
import PropTypes from '../_util/vue-types';
export const skeletonTitleProps = {
prefixCls: PropTypes.string,
width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
};
export type SkeletonTitleProps = Partial<ExtractPropTypes<typeof skeletonTitleProps>>;
const SkeletonTitle = defineComponent({
name: 'SkeletonTitle',
props: skeletonTitleProps,
setup(props) {
return () => {
const { prefixCls, width } = props;
const zWidth = typeof width === 'number' ? `${width}px` : width;
return <h3 class={prefixCls} style={{ width: zWidth }} />;
};
},
});
export default SkeletonTitle;