v0 pencil icon

This commit is contained in:
Ishaan Jaff 2024-04-02 09:07:37 -07:00
parent 71db88115d
commit 22799b8890

View file

@ -1,7 +1,7 @@
"use client"; "use client";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { keyDeleteCall } from "./networking"; import { keyDeleteCall } from "./networking";
import { InformationCircleIcon, StatusOnlineIcon, TrashIcon } from "@heroicons/react/outline"; import { InformationCircleIcon, StatusOnlineIcon, TrashIcon, PencilAltIcon } from "@heroicons/react/outline";
import { keySpendLogsCall, PredictedSpendLogsCall } from "./networking"; import { keySpendLogsCall, PredictedSpendLogsCall } from "./networking";
import { import {
Badge, Badge,
@ -383,7 +383,11 @@ const ViewKeyTable: React.FC<ViewKeyTableProps> = ({
)} )}
</DialogPanel> </DialogPanel>
</Dialog> </Dialog>
<Icon
icon={PencilAltIcon}
size="sm"
// onClick={() => handleEditClick(team)}
/>
<Icon <Icon
onClick={() => handleDelete(item.token)} onClick={() => handleDelete(item.token)}
icon={TrashIcon} icon={TrashIcon}