Change icon to drill
This commit is contained in:
parent
ef678ed122
commit
2f32c5b2b4
2 changed files with 3 additions and 3 deletions
|
@ -40,6 +40,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"decky-frontend-lib": "*",
|
||||
"react-icons": "^4.3.1"
|
||||
"react-icons": "^4.4.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ import {
|
|||
joinClassNames,
|
||||
} from "decky-frontend-lib";
|
||||
import { VFC, useState } from "react";
|
||||
import { FaShip } from "react-icons/fa";
|
||||
import { GiDrill } from "react-icons/gi";
|
||||
|
||||
import * as python from "./python";
|
||||
|
||||
|
@ -356,7 +356,7 @@ export default definePlugin((serverApi: ServerAPI) => {
|
|||
return {
|
||||
title: <div className={staticClasses.Title}>PowerTools</div>,
|
||||
content: <Content serverAPI={serverApi} />,
|
||||
icon: <FaShip />,
|
||||
icon: <GiDrill />,
|
||||
onDismount() {
|
||||
console.log("PowerTools shutting down");
|
||||
clearInterval(periodicHook!);
|
||||
|
|
Loading…
Reference in a new issue