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": {
|
"dependencies": {
|
||||||
"decky-frontend-lib": "*",
|
"decky-frontend-lib": "*",
|
||||||
"react-icons": "^4.3.1"
|
"react-icons": "^4.4.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ import {
|
||||||
joinClassNames,
|
joinClassNames,
|
||||||
} from "decky-frontend-lib";
|
} from "decky-frontend-lib";
|
||||||
import { VFC, useState } from "react";
|
import { VFC, useState } from "react";
|
||||||
import { FaShip } from "react-icons/fa";
|
import { GiDrill } from "react-icons/gi";
|
||||||
|
|
||||||
import * as python from "./python";
|
import * as python from "./python";
|
||||||
|
|
||||||
|
@ -356,7 +356,7 @@ export default definePlugin((serverApi: ServerAPI) => {
|
||||||
return {
|
return {
|
||||||
title: <div className={staticClasses.Title}>PowerTools</div>,
|
title: <div className={staticClasses.Title}>PowerTools</div>,
|
||||||
content: <Content serverAPI={serverApi} />,
|
content: <Content serverAPI={serverApi} />,
|
||||||
icon: <FaShip />,
|
icon: <GiDrill />,
|
||||||
onDismount() {
|
onDismount() {
|
||||||
console.log("PowerTools shutting down");
|
console.log("PowerTools shutting down");
|
||||||
clearInterval(periodicHook!);
|
clearInterval(periodicHook!);
|
||||||
|
|
Loading…
Reference in a new issue