mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 20:07:56 +01:00
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import React from "react";
|
||
|
|
// icons
|
||
|
|
import { SquareArrowOutUpRight } from "lucide-react";
|
||
|
|
// ui
|
||
|
|
import { getButtonStyling } from "@plane/ui";
|
||
|
|
// helpers
|
||
|
|
import { cn } from "@/helpers/common.helper";
|
||
|
|
|
||
|
|
export const UpgradeButton: React.FC = () => (
|
||
|
|
<a href="https://plane.so/one" target="_blank" className={cn(getButtonStyling("primary", "sm"))}>
|
||
|
|
Available on One
|
||
|
|
<SquareArrowOutUpRight className="h-3.5 w-3.5 p-0.5" />
|
||
|
|
</a>
|
||
|
|
);
|