Skip to content

Commit

Permalink
remove unused export
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker committed Jun 3, 2024
1 parent 450316e commit dc7f400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Form/FormFields/SelectFormField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FormFieldBaseProps, useFormFieldPropsResolver } from "./Utils";

type OptionCallback<T, R> = (option: T) => R;

export type SelectFormFieldProps<T, V = T> = FormFieldBaseProps<V> & {
type SelectFormFieldProps<T, V = T> = FormFieldBaseProps<V> & {
placeholder?: React.ReactNode;
options: readonly T[];
position?: "above" | "below";
Expand Down

0 comments on commit dc7f400

Please sign in to comment.