import React from "react"; type Props = { href?: string; children: React.ReactNode; disabled?: boolean; className?: string; } & Omit, "">; export default function Link({ href, children, disabled, ...props }: Props) { return ( // eslint-disable-next-line jsx-a11y/anchor-is-valid {children} ); }