import React, { useState } from 'react'; import PropTypes from 'prop-types'; import { PropsActionButton } from '../../interface'; import { Button, DropdownPicture } from './styledComponents'; const ActionButton = (props: PropsActionButton): JSX.Element => { const { open, visibility, isLoading, theme, isDisabled } = props; const [isButtonHovered, setIsButtonHovered] = useState(false); return (
); }; ActionButton.propTypes = { open: PropTypes.bool, visibility: PropTypes.bool, isLoading: PropTypes.bool, }; ActionButton.defaultProps = { open: false, visibility: false, isLoading: false, }; export default ActionButton;