import React from 'react'; import classNames from 'classnames'; import { EmailInput as CoreEmailInput } from '@shoptet/ui-core-web'; import type { SafeOmit } from '@shoptet/utils'; import type { Exact, SafeExtract, Size } from '../../../types'; import type { CommonInputProps, PlaceholderProps } from '../types'; /** @inheritdoc */ export interface EmailInputProps extends CommonInputProps, PlaceholderProps { value?: string; defaultValue?: string; width?: SafeExtract; } export const EmailInput = React.forwardRef( ({ width = 'md', error, warning, label, ...rest }, ref) => { rest satisfies Exact, typeof rest>; return ( ); } ); EmailInput.displayName = 'EmailInput';