Migrate tensamin/ui to methanium/ui
All checks were successful
/ package (push) Successful in 57s

This commit is contained in:
Alois 2026-07-25 13:09:54 +02:00
commit 7bc6d002a9
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
90 changed files with 13401 additions and 1 deletions

18
src/link.tsx Normal file
View file

@ -0,0 +1,18 @@
import { ExternalLink } from "lucide-react";
/**
* Executes Link.
* @param props Parameter props.
* @returns unknown.
*/
export default function Link(props: { link: string; label: string }) {
return (
<a
target="_blank"
href={props.link}
className="flex gap-1.5 items-center justify-center text-primary border-b hover:border-primary border-transparent"
>
<ExternalLink size={17} /> {props.label}
</a>
);
}