mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
// icons
|
|
import { SquareArrowOutUpRight } from "lucide-react";
|
|
// plane internal packages
|
|
import { getButtonStyling } from "@plane/ui";
|
|
import { cn } from "@plane/utils";
|
|
|
|
export const UpgradeButton: React.FC = () => (
|
|
<a href="https://plane.so/pricing?mode=self-hosted" target="_blank" className={cn(getButtonStyling("primary", "sm"))}>
|
|
Upgrade
|
|
<SquareArrowOutUpRight className="h-3.5 w-3.5 p-0.5" />
|
|
</a>
|
|
);
|