@arche-mc2/arche-controls
Version:
We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get
32 lines (31 loc) • 971 B
TypeScript
/// <reference types="react" />
import { UpCheckbox as UpCheckboxComponent } from './UpCheckBox';
declare const _default: {
title: string;
decorators: ((...args: any) => any)[];
component: typeof UpCheckboxComponent;
};
export default _default;
export declare const General: {
(props: {
text: string;
label: string;
inline: boolean;
textAlign: "left" | "right";
className?: string;
}): JSX.Element;
args: {
label: string;
text: string;
inline: boolean;
textAlign: string;
className: string;
};
};
export declare const MultipleCheckboxes: () => JSX.Element;
export declare const MultipleCheckboxesWithSomeDisabled: () => JSX.Element;
export declare const DynamicCheckBoxesOptions: {
(): JSX.Element;
decorators: ((DynamicCheckBoxesOptions: any) => JSX.Element)[];
};
export declare const ReadOnlyCheckBox: () => JSX.Element;