bold contact options

master
Tudor Stanciu 2023-04-04 00:40:52 +03:00
parent 1d58d0f5e7
commit 6bad079252
1 changed files with 2 additions and 2 deletions

View File

@ -36,11 +36,11 @@ const ContactOption = ({ tooltip, label, link, onClick, ...props }) => {
primary={ primary={
<Tooltip title={tooltip}> <Tooltip title={tooltip}>
{onClick ? ( {onClick ? (
<Link href="#" onClick={onClick}> <Link href="#" onClick={onClick} style={{ fontWeight: "bold" }}>
{linkLabel} {linkLabel}
</Link> </Link>
) : ( ) : (
<Link href={link} target="_blank"> <Link href={link} target="_blank" style={{ fontWeight: "bold" }}>
{linkLabel} {linkLabel}
</Link> </Link>
)} )}