Preview: ResponsiveNavLink.jsx
Size: 766 B
//proc/thread-self/root/home/byroehnu/easetack.com/resources/js/Components/ResponsiveNavLink.jsx
import { Link } from "@inertiajs/react"
export default function ResponsiveNavLink({ active = false, className = "", children, ...props }) {
return (
<Link
{...props}
className={`w-full flex items-start pl-3 pr-4 py-2 border-l-4 ${
active
? "border-indigo-400 text-indigo-700 bg-indigo-50 focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700"
: "border-transparent text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300"
} text-base font-medium focus:outline-none transition duration-150 ease-in-out ${className}`}
>
{children}
</Link>
)
}
Directory Contents
Dirs: 0 × Files: 14