Skip to content

Commit a7c4471

Browse files
author
teycir
committed
feat(components): update CreateSealForm template icons for better representation
- Replace ShieldAlert with Megaphone for Whistleblower template - Replace ShieldAlert with LifeBuoy for Emergency Backup template - Replace ShieldAlert with KeyRound for Shared Secret template These changes improve UI intuitiveness by using icons that more accurately reflect the purpose of each template.
1 parent dddad18 commit a7c4471

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

app/components/CreateSealForm.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ import {
2828
Trash2,
2929
AlertTriangle,
3030
Calendar,
31+
Megaphone,
32+
LifeBuoy,
33+
KeyRound,
3134
} from "lucide-react";
3235
import { triggerHaptic } from "@/lib/mobile";
3336

@@ -81,7 +84,7 @@ const TEMPLATES: Template[] = [
8184
{
8285
name: "Whistleblower",
8386
icon: (
84-
<ShieldAlert className="w-6 h-6 text-neon-green drop-shadow-[0_0_5px_rgba(0,255,65,0.5)]" />
87+
<Megaphone className="w-6 h-6 text-neon-green drop-shadow-[0_0_5px_rgba(0,255,65,0.5)]" />
8588
),
8689
type: "deadman",
8790
placeholder:
@@ -143,7 +146,7 @@ const TEMPLATES: Template[] = [
143146
{
144147
name: "Emergency Backup",
145148
icon: (
146-
<ShieldAlert className="w-6 h-6 text-neon-green drop-shadow-[0_0_5px_rgba(0,255,65,0.5)]" />
149+
<LifeBuoy className="w-6 h-6 text-neon-green drop-shadow-[0_0_5px_rgba(0,255,65,0.5)]" />
147150
),
148151
type: "deadman",
149152
placeholder: "Emergency contacts: ...\nAccount recovery codes: ...\nImportant instructions: ...",
@@ -154,7 +157,7 @@ const TEMPLATES: Template[] = [
154157
{
155158
name: "Shared Secret",
156159
icon: (
157-
<ShieldAlert className="w-6 h-6 text-neon-green drop-shadow-[0_0_5px_rgba(0,255,65,0.5)]" />
160+
<KeyRound className="w-6 h-6 text-neon-green drop-shadow-[0_0_5px_rgba(0,255,65,0.5)]" />
158161
),
159162
type: "ephemeral",
160163
placeholder: "API Key: ...\nValid until: ...\nUse immediately and securely",

0 commit comments

Comments
 (0)