import React 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 } = props; return ( <> ); }; ActionButton.propTypes = { open: PropTypes.bool, visibility: PropTypes.bool, }; ActionButton.defaultProps = { open: false, visibility: false, }; export default ActionButton;