From 1c2a2642aaff07293c53965bc85942d3ed2b8644 Mon Sep 17 00:00:00 2001 From: iamkiddy Date: Sun, 27 Apr 2025 12:13:35 +0000 Subject: [PATCH] feat: replace button with Button component for consistency in Frame --- components/custom/Frame.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/components/custom/Frame.tsx b/components/custom/Frame.tsx index 23d4354..ad6b1f6 100644 --- a/components/custom/Frame.tsx +++ b/components/custom/Frame.tsx @@ -3,6 +3,7 @@ import Image from 'next/image'; import { CopyPlus, Trash2, Plus, X } from 'lucide-react'; import { useState } from 'react'; +import { Button } from '@/components/ui/button'; interface Card { id: number; @@ -77,14 +78,15 @@ export default function Frame() {
- +