@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
14 lines (13 loc) • 358 B
TypeScript
import type { FunctionComponent } from 'react';
interface TextInputProps {
defaultValue?: string;
value: string;
onChange: (value: string) => void;
color?: string;
password?: boolean;
focus?: boolean;
placeholder?: string;
noColor?: boolean;
}
declare const TextInput: FunctionComponent<TextInputProps>;
export { TextInput };