fix: style and bugs (#644)

* fix: style and bugs

* fix: removed unnecessary classes
This commit is contained in:
Kunal Vishwakarma 2023-03-31 16:03:25 +05:30 committed by GitHub
parent 09d73c5e04
commit 4ab82b9616
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 13 deletions

View file

@ -16,6 +16,9 @@ import AppLayout from "layouts/app-layout";
// ui
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
//icons
import { PlusIcon } from "components/icons";
// image
import emptyView from "public/empty-state/empty-view.svg";
// fetching keys
@ -64,7 +67,8 @@ const ProjectViews: NextPage<UserAuth> = (props) => {
}
right={
<div className="flex items-center gap-2">
<PrimaryButton type="button" onClick={() => setIsCreateViewModalOpen(true)}>
<PrimaryButton type="button" className="flex items-center gap-2" onClick={() => setIsCreateViewModalOpen(true)}>
<PlusIcon className="w-4 h-4" />
Create View
</PrimaryButton>
</div>