switch to monorepo structure
This commit is contained in:
10
packages/web/src/components/link.tsx
Normal file
10
packages/web/src/components/link.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import clsx from "clsx"
|
||||
|
||||
function Link({
|
||||
className,
|
||||
...props
|
||||
}: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>) {
|
||||
return <a className={clsx("underline active:bg-stone-700 active:text-stone-200", className)} {...props} />
|
||||
}
|
||||
|
||||
export { Link }
|
Reference in New Issue
Block a user