UNPKG

@eureca/eureca-ui

Version:

UI component library of Eureca's user and admin apps

12 lines (8 loc) 296 B
import React from 'react'; import { TextInput } from './text-input'; function PhoneInput(props) { // adicionar formatação de telefone (via input adornment start?) e formatação do valor // no onChange e no display. return <TextInput {...props} type="tel" />; } export { PhoneInput };