import { Link, styled } from '@mui/material' import type React from 'react' export const ExternalLink: React.FC> = styled( Link )(({ theme }) => ({ display: 'flex', alignItems: 'center', justifyContent: 'center', width: 24, height: 24, borderRadius: '50%', textDecoration: 'none', color: theme.vars.palette.text.primary, '&:hover': { backgroundColor: `color-mix(in srgb, ${theme.vars.palette.common.onBackground} 4%, transparent)`, }, }))