@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
15 lines (14 loc) • 537 B
TypeScript
import { Descriptions as AntdDescriptions, type DescriptionsProps as AntdDescriptionsProps } from 'antd';
import React from 'react';
export interface CustomDescriptionsProps {
borderedBottom?: boolean;
borderedBottomDashed?: boolean;
borderedTop?: boolean;
borderedTopDashed?: boolean;
}
export interface DescriptionsProps extends AntdDescriptionsProps, CustomDescriptionsProps {
}
export declare const Descriptions: React.FC<DescriptionsProps> & {
Item: typeof AntdDescriptions.Item;
};
export default Descriptions;