import type { FC } from "react"; import React from "react"; import { cn } from "@plane/utils"; type Props = React.ComponentProps<"button"> & { label: React.ReactNode; onClick: () => void; }; export const SidebarAddButton: FC = (props) => { const { label, onClick, disabled, ...rest } = props; return ( ); };