UNPKG

hcmstorybook

Version:

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

19 lines (18 loc) 451 B
/// <reference types="react" /> import PropTypes from 'prop-types'; import './FloatingButton.css'; /** * Floating Button component for user interaction */ export declare const FloatingButton: { ({ label, buttonType }: { label: any; buttonType: any; }): JSX.Element; propTypes: { onClick: PropTypes.Requireable<(...args: any[]) => any>; }; defaultProps: { onClick: any; }; };