interface DescriptionsProps {
    bordered?: boolean;
    children?: ReactNode;
    className?: string;
    colon?: boolean;
    column?: number | Partial<Record<Breakpoint, number>>;
    contentStyle?: CSSProperties;
    extra?: ReactNode;
    id?: string;
    items?: DescriptionsItemType[];
    labelStyle?: CSSProperties;
    layout?: "horizontal" | "vertical";
    prefixCls?: string;
    rootClassName?: string;
    size?: "default" | "small" | "middle";
    style?: CSSProperties;
    title?: ReactNode;
}

Properties

bordered?: boolean
children?: ReactNode

Deprecated

use items instead

className?: string
colon?: boolean
column?: number | Partial<Record<Breakpoint, number>>
contentStyle?: CSSProperties
extra?: ReactNode
id?: string
items?: DescriptionsItemType[]
labelStyle?: CSSProperties
layout?: "horizontal" | "vertical"
prefixCls?: string
rootClassName?: string
size?: "default" | "small" | "middle"
style?: CSSProperties
title?: ReactNode

Generated using TypeDoc