import { PlusIcon } from "@radix-ui/react-icons"; import { cn } from "@/util/utils"; import { Input } from "./ui/input"; type Props = React.ComponentProps & { onIconClick: () => void; }; function WorkflowBlockInput(props: Props) { return (
); } export { WorkflowBlockInput };