UNPKG

@wordpress/block-editor

Version:
34 lines (31 loc) 611 B
/** * External dependencies */ import { TextInput } from 'react-native'; /** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; export default function URLInput( { value = '', autoFocus = true, onChange, ...extraProps } ) { /* eslint-disable jsx-a11y/no-autofocus */ return ( <TextInput autoFocus={ autoFocus } editable selectTextOnFocus autoCapitalize="none" autoCorrect={ false } textContentType="URL" value={ value } onChangeText={ onChange } placeholder={ __( 'Paste URL' ) } { ...extraProps } /> ); /* eslint-enable jsx-a11y/no-autofocus */ }