[WEB-4748] chore: propel utils (#7662)

* chore: tailwind merge added to propel

* chore: classname utils updated

* chore: utils import alias added

* chore: code refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor

* chore: code refactor
This commit is contained in:
Anmol Singh Bhatia 2025-08-28 18:39:27 +05:30 committed by GitHub
parent 3b3bd3e54e
commit aef465415b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 29 additions and 28 deletions

View file

@ -1,7 +1,7 @@
import * as React from "react";
import { Command as CommandPrimitive } from "cmdk";
import { SearchIcon } from "lucide-react";
import { cn } from "@plane/utils";
import { cn } from "../utils/classname";
function CommandComponent({ className, ...props }: React.ComponentProps<typeof CommandPrimitive>) {
return <CommandPrimitive data-slot="command" className={cn("", className)} {...props} />;