Skip to content

Commit 0147b0f

Browse files
authored
Changing the collapsed chevron to match Google Doc design pattern (#2312)
1 parent c08fce6 commit 0147b0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/components/wizard/setup/LinuxSetup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import Input from "../../common/Input";
33
import Select from "../../common/Select";
44
import { useBranding } from "../../../contexts/BrandingContext";
5-
import { ChevronDown, ChevronUp } from "lucide-react";
5+
import { ChevronDown, ChevronRight } from "lucide-react";
66

77
interface LinuxSetupProps {
88
config: {
@@ -125,7 +125,7 @@ const LinuxSetup: React.FC<LinuxSetupProps> = ({
125125
className="flex items-center text-lg font-medium text-gray-900 mb-4"
126126
onClick={() => onShowAdvancedChange(!showAdvanced)}
127127
>
128-
{showAdvanced ? <ChevronDown className="w-4 h-4 mr-1" /> : <ChevronUp className="w-4 h-4 mr-1" />}
128+
{showAdvanced ? <ChevronDown className="w-4 h-4 mr-1" /> : <ChevronRight className="w-4 h-4 mr-1" />}
129129
Advanced Settings
130130
</button>
131131

0 commit comments

Comments
 (0)