Files
pawol.nu/components/rezo.js
T
Cédric FAMIBELLE-PRONZOLA 58b46f4eac Create rezo component
2022-01-23 21:46:44 +04:00

16 lines
352 B
JavaScript

import {Box} from '@mui/material'
import PropTypes from 'prop-types'
export default function Rezo({rezo}) {
const {tit, lyen, icon} = rezo
return (
<Box title={tit} sx={{cursor: 'pointer', marginLeft: '20px'}} onClick={() => window.open(lyen, '_blank')}>
{icon}
</Box>
)
}
Rezo.propTypes = {
rezo: PropTypes.object.isRequired
}