import { splitProps, type Component } from "solid-js"; import { type AnchorProps, A as BaseA } from "@solidjs/router"; import clsx from "clsx"; export const A: Component = (props) => { const [local, other] = splitProps(props, ["class"]); return ; };