import { useState } from "react"; import { ExpandOutlined as ExpandOutlinedIcon, MinusOutlined as MinusOutlinedIcon, PlusOutlined as PlusOutlinedIcon } from "@ant-design/icons"; import { Button, Card, Typography } from "antd"; import WorkflowElements from "@/components/workflow/WorkflowElements"; import { mergeCls } from "@/utils/css"; export type WorkflowElementsProps = { className?: string; style?: React.CSSProperties; disabled?: boolean; }; const WorkflowElementsContainer = ({ className, style, disabled }: WorkflowElementsProps) => { const [scale, setScale] = useState(1); return (