@amaui/ui-react
Version:
UI for React
27 lines (26 loc) • 943 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IColor, ISize, ITonal, IValueBreakpoints, IVersion } from '../types';
export declare const IconMaterialDone: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
export declare const IconDoneAnimated: (props: any) => JSX.Element;
export interface IButtons extends ILine {
tonal?: ITonal;
color?: IColor;
version?: IVersion;
colorSelected?: IColor;
size?: ISize;
value?: any;
valueDefault?: any;
onChange?: (value: any) => any;
select?: 'single' | 'multiple';
unselect?: boolean;
orientation?: 'vertical' | 'horizontal' | Partial<Record<IValueBreakpoints, 'vertical' | 'horizontal'>>;
noCheckIcon?: boolean;
elevation?: boolean;
border?: boolean;
chip?: boolean;
fullWidth?: boolean;
disabled?: boolean;
}
declare const Buttons: React.FC<IButtons>;
export default Buttons;