"use client"; import type { FC } from "react"; import { Crown } from "lucide-react"; // helpers import { cn } from "@plane/utils"; type TProIcon = { className?: string; }; export const ProIcon: FC = (props) => { const { className } = props; return ; };