2024-07-02 12:58:45 +05:30
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
// icons
|
|
|
|
|
import { SquareArrowOutUpRight } from "lucide-react";
|
2024-12-20 20:44:46 +05:30
|
|
|
// plane internal packages
|
2024-07-02 12:58:45 +05:30
|
|
|
import { getButtonStyling } from "@plane/ui";
|
2024-12-20 20:44:46 +05:30
|
|
|
import { cn } from "@plane/utils";
|
2024-07-02 12:58:45 +05:30
|
|
|
|
|
|
|
|
export const UpgradeButton: React.FC = () => (
|
2024-11-26 23:57:41 +05:30
|
|
|
<a href="https://plane.so/pricing?mode=self-hosted" target="_blank" className={cn(getButtonStyling("primary", "sm"))}>
|
|
|
|
|
Upgrade
|
2024-07-02 12:58:45 +05:30
|
|
|
<SquareArrowOutUpRight className="h-3.5 w-3.5 p-0.5" />
|
|
|
|
|
</a>
|
|
|
|
|
);
|