@amaui/ui-react
Version:
UI for React
19 lines (18 loc) • 621 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IPropsAny } from '../types';
export interface IPropertiesValue {
name: any;
value: any;
separator?: any;
props?: any;
}
export interface IProperties extends ILine {
version?: 'row' | 'row-20' | 'row-50' | 'row-between' | 'column';
size?: 'small' | 'regular' | 'large';
values?: (boolean | IPropertiesValue)[];
maxWidth?: 'extra_small' | 'small' | 'regular' | 'large' | 'extra_large' | 'extra_extra_large';
PropertyProps?: IPropsAny;
}
declare const Properties: React.FC<IProperties>;
export default Properties;