File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
apps/electron-client/src/renderer/components/List Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { useRemoteBlastTree } from "../../store";
5
5
import { BlastComponent } from "../../types" ;
6
6
7
7
import { useDefaultAction } from "./hooks" ;
8
- import { RaycastDarkIcon } from "./RaycastDarkIcon" ;
9
8
import { SubCommand } from "./SubCommand" ;
10
9
11
10
import { getListIndexFromValue } from "." ;
@@ -50,7 +49,17 @@ export const ListFooter = ({
50
49
51
50
return (
52
51
< div cmdk-raycast-footer = "" >
53
- < RaycastDarkIcon />
52
+ < svg width = "24" height = "24" viewBox = "0 0 24 24" fill = "none" >
53
+ < path
54
+ d = "M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2Z"
55
+ stroke = "#FF6363"
56
+ strokeWidth = "2"
57
+ strokeLinecap = "round"
58
+ strokeLinejoin = "round"
59
+ />
60
+ < path d = "M12 16V12" stroke = "#FF6363" strokeWidth = "2" strokeLinecap = "round" strokeLinejoin = "round" />
61
+ < path d = "M12 8H12.01" stroke = "#FF6363" strokeWidth = "2" strokeLinecap = "round" strokeLinejoin = "round" />
62
+ </ svg >
54
63
55
64
{ action && (
56
65
< button
You can’t perform that action at this time.
0 commit comments