Skip to main content

Getting Started

Install

npm install mui-tel-input --save

or you can use yarn

yarn add mui-tel-input

We have completed installing the package.

Next.js integration

Learn how to use MUI tel input with Next.js

Once you have installed MUI Tel Input in your next.js project, it is important to transpile it as it is an ESM package first.

/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ['mui-tel-input'],
// your config
}

module.exports = nextConfig

Simple usage

Here is a simple usage for using the component:

import React from 'react'
import { MuiTelInput } from 'mui-tel-input'

const MyComponent = () => {
const [phone, setPhone] = React.useState('')

const handleChange = (newPhone) => {
setPhone(newPhone)
}

return (
<MuiTelInput value={phone} onChange={handleChange} />
)
}

Congratulations !

That's all, now let's deep dive into the props.