import PropTypes from 'prop-types'; import { useTheme } from '@mui/material/styles'; import { ButtonBase, Link, Tooltip } from '@mui/material'; // project imports import Avatar from '../extended/Avatar'; // ==============================|| CARD SECONDARY ACTION ||============================== // const CardSecondaryAction = ({ title, link, icon }) => { const theme = useTheme(); return ( {!icon && ( )} {icon && ( {icon} )} ); }; CardSecondaryAction.propTypes = { icon: PropTypes.node, link: PropTypes.string, title: PropTypes.string }; export default CardSecondaryAction;