Skip to content

Commit c6cbd1a

Browse files
committed
Nicer icons
1 parent 853d5c9 commit c6cbd1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/webapp/app/components/runs/v3/EnabledStatus.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BoltSlashIcon, CheckCircleIcon } from "@heroicons/react/20/solid";
1+
import { NoSymbolIcon, CheckIcon } from "@heroicons/react/20/solid";
22

33
type EnabledStatusProps = {
44
enabled: boolean;
@@ -8,8 +8,8 @@ type EnabledStatusProps = {
88

99
export function EnabledStatus({
1010
enabled,
11-
enabledIcon = CheckCircleIcon,
12-
disabledIcon = BoltSlashIcon,
11+
enabledIcon = CheckIcon,
12+
disabledIcon = NoSymbolIcon,
1313
}: EnabledStatusProps) {
1414
const EnabledIcon = enabledIcon;
1515
const DisabledIcon = disabledIcon;

0 commit comments

Comments
 (0)