interface LabelValueListProps {
    align?: LabelValueListAlign;
    canWrap?: boolean;
    data: LabelValueListItem[];
    hasColon?: boolean;
    isCenterPosition?: boolean;
    isValueItalic?: boolean;
    labelWidth?: number;
    type?: "value" | "info" | "primary";
}

Properties

canWrap?: boolean
hasColon?: boolean
isCenterPosition?: boolean
isValueItalic?: boolean
labelWidth?: number
type?: "value" | "info" | "primary"