@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
60 lines (59 loc) • 1.24 kB
TypeScript
import { FC } from 'react';
declare const _default: {
title: string;
decorators: ((...args: any) => any)[];
argTypes: {
primary: {
control: {
type: string;
};
};
secondary: {
control: {
type: string;
};
};
dark: {
control: {
type: string;
};
};
light: {
control: {
type: string;
};
};
alert: {
control: {
type: string;
};
};
warning: {
control: {
type: string;
};
};
info: {
control: {
type: string;
};
};
flashy: {
control: {
type: string;
};
};
};
};
export default _default;
interface BaseTheme {
primary: string;
secondary: string;
dark: string;
light: string;
alert: string;
warning: string;
info: string;
flashy: string;
}
export declare const ThemeFactoryViewer: FC<BaseTheme>;