[WEB-2413] chore: admin application restructuring. (#5557)

This commit is contained in:
Prateek Shourya 2024-09-09 17:43:56 +05:30 committed by GitHub
parent fe280b2beb
commit 8cf1c2d136
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 52 additions and 29 deletions

View file

@ -1,16 +0,0 @@
"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>
);