UNPKG

react-formian

Version:

A React framework for easily creating and handling controlled forms

21 lines (16 loc) 410 B
import React from 'react'; import PropTypes from 'prop-types'; import Input from '../../common/Input'; const Url = props => ( <Input type="url" {...props} className={props.className} /> ); Url.defaultProps = { type: "url", name: "url", defaultValue: "", className: "", autoComplete: "url", placeholder: "http://www.example.com", errorText: "Please enter a valid web address" }; export default Url;