You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
827 B

  1. import { Link, InertiaLinkProps } from '@inertiajs/react';
  2. export default function ResponsiveNavLink({ active = false, className = '', children, ...props }: InertiaLinkProps & { active?: boolean }) {
  3. return (
  4. <Link
  5. {...props}
  6. className={`w-full flex items-start ps-3 pe-4 py-2 border-l-4 ${
  7. active
  8. ? 'border-indigo-400 text-indigo-700 bg-indigo-50 focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700'
  9. : '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'
  10. } text-base font-medium focus:outline-none transition duration-150 ease-in-out ${className}`}
  11. >
  12. {children}
  13. </Link>
  14. );
  15. }