mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
1bad6dee4e
no-issue
19 lines
439 B
JavaScript
19 lines
439 B
JavaScript
import FormInput from './FormInput';
|
|
import {IconEmail} from './icons';
|
|
|
|
export default ({value, error, children, onInput, className}) => (
|
|
<FormInput
|
|
type="email"
|
|
name="email"
|
|
label="Email"
|
|
value={value}
|
|
error={error}
|
|
icon={IconEmail}
|
|
placeholder="Email..."
|
|
required={true}
|
|
className={className}
|
|
onInput={onInput}>
|
|
{children}
|
|
</FormInput>
|
|
);
|