2024-07-02 12:58:45 +05:30
|
|
|
import React from "react";
|
|
|
|
|
// icons
|
|
|
|
|
import { SquareArrowOutUpRight } from "lucide-react";
|
2024-12-20 20:44:46 +05:30
|
|
|
// plane internal packages
|
2025-09-30 15:31:00 +05:30
|
|
|
import { getButtonStyling } from "@plane/propel/button";
|
2024-12-20 20:44:46 +05:30
|
|
|
import { cn } from "@plane/utils";
|
2024-07-02 12:58:45 +05:30
|
|
|
|
2025-11-20 19:09:40 +07:00
|
|
|
export function UpgradeButton() {
|
|
|
|
|
return (
|
|
|
|
|
<a
|
|
|
|
|
href="https://plane.so/pricing?mode=self-hosted"
|
|
|
|
|
target="_blank"
|
2025-12-12 20:50:14 +05:30
|
|
|
className={cn(getButtonStyling("primary", "base"))}
|
2025-12-08 23:56:50 +07:00
|
|
|
rel="noreferrer"
|
2025-11-20 19:09:40 +07:00
|
|
|
>
|
|
|
|
|
Upgrade
|
|
|
|
|
<SquareArrowOutUpRight className="h-3.5 w-3.5 p-0.5" />
|
|
|
|
|
</a>
|
|
|
|
|
);
|
|
|
|
|
}
|