import {IconButton, Stack} from '@mui/material' import PropTypes from 'prop-types' export default function Rezo({rezo}) { const {tit, lyen, icon} = rezo return ( window.open(lyen, '_blank')}> {icon} ) } Rezo.propTypes = { rezo: PropTypes.object.isRequired }