Files
ipd-shomalhospital/src/ui/components/global/CustomLink.tsx
2025-11-18 18:45:28 +03:30

15 lines
312 B
TypeScript

import Link from "next/link";
import React from "react";
interface CustomLinkProps {
href: string;
label: string;
className?: string;
}
export default function CustomLink({href, label, className}: CustomLinkProps) {
return (
<Link href={href} className={className }>
{label}
</Link>
);
}