@sanity/default-layout
Version:
The default layout components for Sanity
8 lines • 397 B
TypeScript
import { TextInput } from '@sanity/ui';
import React, { ComponentProps } from 'react';
interface CustomTextInputProps extends ComponentProps<typeof TextInput> {
smallClearButton?: boolean;
}
export declare const CustomTextInput: React.ForwardRefExoticComponent<Omit<CustomTextInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export {};
//# sourceMappingURL=CustomTextInput.d.ts.map