Files
openpanel/website/src/refine-theme/common-home-button.tsx
Stefan Pejcic b8c5011b76 pakcages
2024-09-18 16:30:56 +02:00

28 lines
625 B
TypeScript

import React from "react";
import Link from "@docusaurus/Link";
import clsx from "clsx";
type Props = {
className?: string;
};
export const CommonHomeButton = ({ className }: Props) => {
return (
<Link
href="/"
className={clsx(
"text-base",
"text-gray-500 dark:text-gray-400",
"no-underline",
"transition-colors",
"duration-200",
"ease-in-out",
"whitespace-nowrap",
className,
)}
>
OpenPanel Home
</Link>
);
};