mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import { formatPhoneNumber } from '@/utils/Telephone';
|
|
|
|
export function PhoneLabel({ phoneNumber }) {
|
|
return (
|
|
<a
|
|
className="text-sm font-semibold text-gray-800"
|
|
href={'tel:' + phoneNumber}
|
|
>
|
|
{formatPhoneNumber(phoneNumber)}
|
|
</a>
|
|
);
|
|
}
|