mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
651b252c23
* chore: svg icons added in plane/ui package * chore: swap priority and state icon with plane/ui icons * chore: replace core folder icons with lucide and plane ui icons * style: priority icon size * chore: replace icons with lucide and plane/ui icons * chore: replace cycle folder icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * fix: build error * fix: build error * fix: build error
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// layouts
|
|
import { WorkspaceAuthorizationLayout } from "layouts/auth-layout-legacy";
|
|
// components
|
|
// import { WorkspaceIssuesViewOptions } from "components/issues/workspace-views/workspace-issue-view-option";
|
|
// import { WorkspaceViewIssues } from "components/issues/workspace-views/workpace-view-issues";
|
|
// ui
|
|
import { PrimaryButton } from "components/ui";
|
|
// icons
|
|
import { CheckCircle, Plus } from "lucide-react";
|
|
|
|
const WorkspaceView = () => (
|
|
<WorkspaceAuthorizationLayout
|
|
breadcrumbs={
|
|
<div className="flex gap-2 items-center">
|
|
<CheckCircle className="h-[18px] w-[18px] stroke-[1.5]" />
|
|
<span className="text-sm font-medium">Workspace issues</span>
|
|
</div>
|
|
}
|
|
right={
|
|
<div className="flex items-center gap-2">
|
|
{/* <WorkspaceIssuesViewOptions /> */}
|
|
<PrimaryButton
|
|
className="flex items-center gap-2"
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", { key: "c" });
|
|
document.dispatchEvent(e);
|
|
}}
|
|
>
|
|
<Plus className="h-4 w-4" />
|
|
Add Issue
|
|
</PrimaryButton>
|
|
</div>
|
|
}
|
|
>
|
|
{/* <WorkspaceViewIssues /> */}
|
|
</WorkspaceAuthorizationLayout>
|
|
);
|
|
|
|
export default WorkspaceView;
|