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 8908ced commit fee5f95Copy full SHA for fee5f95
src/Input.tsx
@@ -74,7 +74,7 @@ export const Input = memo(
74
hintText,
75
hideLabel,
76
disabled = false,
77
- iconId: iconId_props,
+ iconId,
78
classes = {},
79
style,
80
state = "default",
@@ -161,10 +161,6 @@ export const Input = memo(
161
/>
162
);
163
164
- const iconId =
165
- iconId_props ??
166
- (nativeInputProps?.type === "date" ? "ri-calendar-line" : undefined);
167
-
168
return iconId === undefined ? (
169
nativeInputOrTextArea
170
) : (
0 commit comments