Files
pawol.nu/components/rezo.js
T
Cédric FAMIBELLE-PRONZOLA 6046685aad Make button with rezo icons
2022-01-24 06:46:53 +04:00

18 lines
394 B
JavaScript

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