We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2056622 + 1e1b9e3 commit bce61b2Copy full SHA for bce61b2
client/src/components/IconDisplay.tsx
@@ -3,6 +3,7 @@ interface Icon {
3
src: string;
4
mimeType?: string;
5
sizes?: string[];
6
+ theme?: "light" | "dark";
7
}
8
9
// Helper type for objects that may have icons
client/src/components/PromptsTab.tsx
@@ -24,7 +24,12 @@ export type Prompt = {
24
description?: string;
25
required?: boolean;
26
}[];
27
- icons?: { src: string; mimeType?: string; sizes?: string[] }[];
+ icons?: {
28
+ src: string;
29
+ mimeType?: string;
30
+ sizes?: string[];
31
32
+ }[];
33
};
34
35
const PromptsTab = ({
0 commit comments