[](https://github.com/viclafouch/mui-tel-input/blob/master/LICENSE)

[](https://www.npmjs.com/package/mui-tel-input)
[](https://circleci.com/gh/viclafouch/mui-tel-input/tree/master)
## Installation
```
// with npm
npm install mui-tel-input
// with yarn
yarn add mui-tel-input
```
The component uses [libphonenumber-js](https://www.npmjs.com/package/libphonenumber-js) for phone number parsing and formatting.
## Usage
```jsx
import React from 'react'
import { MuiTelInput } from 'mui-tel-input'
const MyComponent = () => {
const [value, setValue] = React.useState('')
const handleChange = (newValue) => {
setValue(newValue)
}
return