- Add jscodeshift-based codemod to convert arrow function components to function declarations - Support React.FC, observer-wrapped, and forwardRef components - Include comprehensive test suite covering edge cases - Add npm script to run transformer across codebase - Target only .tsx files in source directories, excluding node_modules and declaration files * [WEB-5459] chore: updates after running codemod --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
30 lines
680 B
TypeScript
30 lines
680 B
TypeScript
import type { FC } from "react";
|
|
// helpers
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { cn } from "@plane/utils";
|
|
|
|
type TUpgradeBadge = {
|
|
className?: string;
|
|
size?: "sm" | "md";
|
|
};
|
|
|
|
export function UpgradeBadge(props: TUpgradeBadge) {
|
|
const { className, size = "sm" } = props;
|
|
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"w-fit cursor-pointer rounded-2xl text-custom-primary-200 bg-custom-primary-100/20 text-center font-medium outline-none",
|
|
{
|
|
"text-sm px-3": size === "md",
|
|
"text-xs px-2": size === "sm",
|
|
},
|
|
className
|
|
)}
|
|
>
|
|
{t("sidebar.pro")}
|
|
</div>
|
|
);
|
|
}
|