You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
797 B
JavaScript
20 lines
797 B
JavaScript
import React from 'react';
|
|
import { Link } from '@inertiajs/react';
|
|
|
|
export default function ResponsiveNavLink({ method = 'get', as = 'a', href, active = false, children }) {
|
|
return (
|
|
<Link
|
|
method={method}
|
|
as={as}
|
|
href={href}
|
|
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:outline-none 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'
|
|
} text-base font-medium focus:outline-none transition duration-150 ease-in-out`}
|
|
>
|
|
{children}
|
|
</Link>
|
|
);
|
|
}
|