import { Plus, StickyNote as StickyIcon } from "lucide-react"; import { Button } from "@plane/ui"; type TProps = { handleCreate: () => void; creatingSticky?: boolean; }; export const EmptyState = (props: TProps) => { const { handleCreate, creatingSticky } = props; return (