Skip to content

Commit

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

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

Expand Down

0 comments on commit e764f0e

Please sign in to comment.