Add Icons
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import { useState, useEffect, ChangeEvent } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
import Layout from "@/components/layout/layout";
|
||||
import { Edit, Plus, Trash } from "lucide-react";
|
||||
import { Edit, Plus, Trash, Truck } from "lucide-react";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { ShippingModal } from "@/components/modals/shipping-modal";
|
||||
import { Skeleton } from "@/components/ui/skeleton";
|
||||
@@ -174,8 +174,9 @@ export default function ShippingPage() {
|
||||
<Layout>
|
||||
<div className="space-y-6">
|
||||
<div className="flex items-center justify-between">
|
||||
<h1 className="text-2xl font-semibold text-gray-900 dark:text-white">
|
||||
Manage Shipping Options
|
||||
<h1 className="text-2xl font-semibold text-gray-900 dark:text-white flex items-center">
|
||||
<Truck className="mr-2 h-6 w-6" />
|
||||
Shipping Methods
|
||||
</h1>
|
||||
<Button onClick={() => {
|
||||
setNewShipping({ name: "", price: 0 });
|
||||
|
||||
Reference in New Issue
Block a user