{
registerOptions?: RegisterOptions
diff --git a/components/TempDesignSystem/Select/index.tsx b/components/TempDesignSystem/Select/index.tsx
index 3a162e012..ef287d4cc 100644
--- a/components/TempDesignSystem/Select/index.tsx
+++ b/components/TempDesignSystem/Select/index.tsx
@@ -32,7 +32,7 @@ export default function Select({
label,
name,
onSelect,
- placeholder,
+ disabled,
required = false,
tabIndex,
value,
@@ -54,45 +54,46 @@ export default function Select({
onSelect(key)
}
+ let chevronProps = {}
+
+ if (discreet) {
+ chevronProps = { color: "baseButtonTextOnFillNormal" }
+ } else if (disabled) {
+ chevronProps = { color: "disabled" }
+ }
+
return (
-