hcmstorybook
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
36 lines (35 loc) • 870 B
TypeScript
/// <reference types="react" />
declare const _default: {
title: string;
component: {
({ label, buttonType }: {
label: any;
buttonType: any;
}): JSX.Element;
propTypes: {
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
};
defaultProps: {
onClick: any;
};
};
argTypes: {
label: {
name: string;
defaultValue: string;
control: {
type: string;
};
};
buttonType: {
name: string;
control: {
type: string;
options: string[];
};
defaultValue: string;
};
};
};
export default _default;
export declare const NonFloatingButtons: any;