diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/filter-format/components/empty-state.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/filter-format/components/empty-state.tsx new file mode 100644 index 000000000..5c229ce5b --- /dev/null +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/filter-format/components/empty-state.tsx @@ -0,0 +1,19 @@ +import { Plus } from 'lucide-react' +import { Button } from '@/components/emcn' + +interface EmptyStateProps { + onAdd: () => void + disabled: boolean + label: string +} + +export function EmptyState({ onAdd, disabled, label }: EmptyStateProps) { + return ( +