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