mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-27 05:51:57 +07:00
22 lines
784 B
TypeScript
22 lines
784 B
TypeScript
import { InertiaLinkProps, Link } from '@inertiajs/react';
|
|
|
|
export default function ResponsiveNavLink({
|
|
active = false,
|
|
className = '',
|
|
children,
|
|
...props
|
|
}: InertiaLinkProps & { active?: boolean }) {
|
|
return (
|
|
<Link
|
|
{...props}
|
|
className={`flex w-full items-start border-l-4 py-2 pe-4 ps-3 ${
|
|
active
|
|
? 'border-nihonbuzz-red bg-nihonbuzz-red/10 text-nihonbuzz-red focus:border-nihonbuzz-red focus:bg-nihonbuzz-red/20'
|
|
: 'border-transparent text-gray-600 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-800'
|
|
} text-base font-medium transition duration-150 ease-in-out focus:outline-none ${className}`}
|
|
>
|
|
{children}
|
|
</Link>
|
|
);
|
|
}
|