import type { FC } from "react"; import React from "react"; import { Search } from "lucide-react"; import { cn } from "@plane/utils"; type Props = { isActive?: boolean; }; export const SidebarSearchButton: FC = (props) => { const { isActive } = props; return (
); };