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.
17 lines
439 B
17 lines
439 B
3 years ago
|
import type * as React from 'react';
|
||
5 years ago
|
|
||
|
export interface DescriptionsItemProps {
|
||
|
prefixCls?: string;
|
||
|
className?: string;
|
||
|
style?: React.CSSProperties;
|
||
|
label?: React.ReactNode;
|
||
4 years ago
|
labelStyle?: React.CSSProperties;
|
||
|
contentStyle?: React.CSSProperties;
|
||
5 years ago
|
children: React.ReactNode;
|
||
|
span?: number;
|
||
|
}
|
||
|
|
||
5 years ago
|
const DescriptionsItem: React.FC<DescriptionsItemProps> = ({ children }) => children as JSX.Element;
|
||
5 years ago
|
|
||
|
export default DescriptionsItem;
|