Skip to content

Commit

Permalink
chore(ui): minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gajendra-singh-r committed Jun 12, 2024
1 parent e764f0e commit f9394c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/ui/src/search-field/SearchField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ export const searchFieldIconClasses = cva(
},
);

export type SearchField = Omit<InputField, "type" | "onChange" | "type"> & {
export type SearchField = Omit<
InputField,
"type" | "onChange" | "type" | "defaultValue"
> & {
value?: string;
defaultValue?: string;
onValueChange?: (value: string) => void;
};

Expand Down

0 comments on commit f9394c9

Please sign in to comment.