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