blob: f96ce7a59e3dea2bfd30ce7fff64e99963d05794 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/** Biome-ignore-all lint/a11y/noNoninteractiveElementToInteractiveRole: <explanation> */
import type { HTMLAttributes } from "corvos/plugins/jsx.ts";
export type Props = HTMLAttributes<"nav">;
export const SideNav = ({ class: cls, ...props }: Props) => (
<nav
class:list={["o-side-nav", "js-keyboard-nav", cls]}
data-keyboard-nav-item=".o-side-nav__item"
data-keyboard-nav-mode="list"
{...props}
/>
);
|