Files
zitadel/apps/login/ui/ExternalLink.tsx

21 lines
447 B
TypeScript
Raw Normal View History

2023-04-28 10:16:04 +02:00
import { ArrowRightIcon } from "@heroicons/react/24/solid";
2023-04-03 13:39:51 +02:00
export const ExternalLink = ({
children,
href,
}: {
children: React.ReactNode;
href: string;
}) => {
return (
<a
href={href}
className="inline-flex space-x-2 rounded-lg bg-gray-700 px-3 py-1 text-sm font-medium text-gray-100 hover:bg-gray-500 hover:text-white"
>
<div>{children}</div>
<ArrowRightIcon className="block w-4" />
</a>
);
};