UNPKG

hcmstorybook

Version:

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

16 lines (15 loc) 396 B
/// <reference types="react" /> import PropTypes from 'prop-types'; import './NonFloatingButton.css'; export declare const NonFloatingButton: { ({ label, buttonType }: { label: any; buttonType: any; }): JSX.Element; propTypes: { onClick: PropTypes.Requireable<(...args: any[]) => any>; }; defaultProps: { onClick: any; }; };