Init(Core): add to repo and add seeders
This commit is contained in:
16
resources/js/Components/ResponsiveNavLink.jsx
Normal file
16
resources/js/Components/ResponsiveNavLink.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user