Init(Core): add to repo and add seeders
This commit is contained in:
18
resources/js/Components/NavLink.jsx
Normal file
18
resources/js/Components/NavLink.jsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Link } from '@inertiajs/react';
|
||||
|
||||
export default function NavLink({ active = false, className = '', children, ...props }) {
|
||||
return (
|
||||
<Link
|
||||
{...props}
|
||||
className={
|
||||
'inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium leading-5 transition duration-150 ease-in-out focus:outline-none ' +
|
||||
(active
|
||||
? 'border-indigo-400 text-gray-900 focus:border-indigo-700 '
|
||||
: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:text-gray-700 focus:border-gray-300 ') +
|
||||
className
|
||||
}
|
||||
>
|
||||
{children}
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user