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.
1 parent 853d5c9 commit c6cbd1aCopy full SHA for c6cbd1a
apps/webapp/app/components/runs/v3/EnabledStatus.tsx
@@ -1,4 +1,4 @@
1
-import { BoltSlashIcon, CheckCircleIcon } from "@heroicons/react/20/solid";
+import { NoSymbolIcon, CheckIcon } from "@heroicons/react/20/solid";
2
3
type EnabledStatusProps = {
4
enabled: boolean;
@@ -8,8 +8,8 @@ type EnabledStatusProps = {
8
9
export function EnabledStatus({
10
enabled,
11
- enabledIcon = CheckCircleIcon,
12
- disabledIcon = BoltSlashIcon,
+ enabledIcon = CheckIcon,
+ disabledIcon = NoSymbolIcon,
13
}: EnabledStatusProps) {
14
const EnabledIcon = enabledIcon;
15
const DisabledIcon = disabledIcon;
0 commit comments