Seth commited on
Commit ·
dca1812
1
Parent(s): e76cac2
update
Browse files
frontend/src/components/campaigns/CreateCampaignWizard.jsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import React, { useCallback, useEffect, useState } from 'react';
|
| 2 |
import { createPortal } from 'react-dom';
|
| 3 |
-
import { X,
|
| 4 |
import { Button } from '@/components/ui/button';
|
| 5 |
import { Input } from '@/components/ui/input';
|
| 6 |
import { cn } from '@/lib/utils';
|
|
@@ -217,7 +217,7 @@ export default function CreateCampaignWizard({ open, onOpenChange, onComplete })
|
|
| 217 |
onChange={(e) => pickFile(e.target.files?.[0])}
|
| 218 |
/>
|
| 219 |
<div className="flex h-12 w-12 items-center justify-center rounded-full bg-violet-100 text-violet-600">
|
| 220 |
-
<
|
| 221 |
</div>
|
| 222 |
<p className="mt-3 text-center text-sm font-semibold text-slate-800">
|
| 223 |
Drag and drop your CSV here
|
|
|
|
| 1 |
import React, { useCallback, useEffect, useState } from 'react';
|
| 2 |
import { createPortal } from 'react-dom';
|
| 3 |
+
import { X, Upload, ArrowRight, ArrowLeft } from 'lucide-react';
|
| 4 |
import { Button } from '@/components/ui/button';
|
| 5 |
import { Input } from '@/components/ui/input';
|
| 6 |
import { cn } from '@/lib/utils';
|
|
|
|
| 217 |
onChange={(e) => pickFile(e.target.files?.[0])}
|
| 218 |
/>
|
| 219 |
<div className="flex h-12 w-12 items-center justify-center rounded-full bg-violet-100 text-violet-600">
|
| 220 |
+
<Upload className="h-6 w-6" />
|
| 221 |
</div>
|
| 222 |
<p className="mt-3 text-center text-sm font-semibold text-slate-800">
|
| 223 |
Drag and drop your CSV here
|