Phone Input

Country Code

A phone field with the country code in a native list and an emoji flag: the code and the number are two inputs fused into one border.

  • phone
  • input
  • country
  • select

Preview

1440pxHost theme

Use it with AI

  1. 1. Copy the link.
  2. 2. Write to your agent in your own words and drop the link into the sentence.
  3. 3. The agent opens the link and installs the component from the registry.

put this in the header: https://vibeui.ru/c/phoneinput-001?lang=en

Номер можно вставить из буфера в любом виде — разберём сами.

Show the full instructions

What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.

# Install and place "phoneinput-001" (Country Code) from VibeUI

## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/phoneinput-001.json

Registry item: https://vibeui.ru/r/phoneinput-001.json
Installs to: components/vibeui/phoneinput-001.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.

Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.

## 2. What it is
A phone field with the country code in a native list and an emoji flag: the code and the number are two inputs fused into one border.

A phone field with country-code selection: a native select with a flag on the left and the number on the right inside a shared border. Zero dependencies, one file, no client JS.

## 3. How to use it
import { Phoneinput001 } from "@/components/vibeui/phoneinput-001"

<Phoneinput001
  label="Phone"
  placeholder="999 123-45-67"
  countries={[{ flag: "🇬🇧", code: "+44", name: "United Kingdom" }]}
/>

Read the installed file for the full prop list.

## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.

Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)

## 5. Keep exactly as installed
- the local --vibeui-phoneinput-001-* palette — do not swap it for your theme tokens
- the native <select> for the code: a hand-built country list does not fit a phone screen and needs its own scrolling
- the inputMode="tel" and autoComplete="tel-national" pair: the first opens the numeric keypad, the second stops autofill from doubling the country code
- the shared border lit through :has(): separate borders light up half-and-half on focus
- the aria-label on the select: without a "country code" caption the field is nameless to speech
- the block's own light surface: without it the dark label disappears on a dark background

## 6. You may change
- the field name through label, the stub text through placeholder and the country set through countries
- the focus color through accent
- the country order: the most common ones usually go first
- the block width through max-width in the palette

## 7. Rules
- Emoji flags do not render on Windows: a two-letter code shows instead — that is fine, do not swap in images for one platform.
- +7 covers two countries, so the option key is the country name rather than the code.
- Do not force a mask on top of this field: a pasted number must land in any shape and be parsed on submit.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.

## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.

For developers

npx shadcn@latest add https://vibeui.ru/r/phoneinput-001.json
https://vibeui.ru/r/phoneinput-001.json

Компонент самодостаточен: один файл, без зависимостей, палитра в локальных переменных --vibeui-phoneinput-001-*. Серверный: из хуков только useId, состояния нет. Код страны — нативный <select>: на телефоне открывается системное колесо, а не самодельный список, который не помещается на экран. Флаг — эмодзи в тексте пункта, поэтому не нужны ни спрайты, ни иконочный пакет. Рамка одна на два поля: у select и input её нет, рисует обёртка [data-part="group"], а фокус подсвечивает всю пару через :has(:focus-visible) — иначе светилась бы половина рамки. Поле номера объявлено type="tel" с inputMode="tel" и autoComplete="tel-national": на телефоне открывается цифровая клавиатура, а автозаполнение подставляет номер без кода страны.

Component source

The same file your agent installs. Here in case you would rather copy it by hand.

import { useId } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"

export type Phoneinput001Country = {
  flag: string
  code: string
  name: string
}

export type Phoneinput001Props = Omit<
  ComponentPropsWithoutRef<"div">,
  "children"
> & {
  label?: string
  placeholder?: string
  countries?: Phoneinput001Country[]
  accent?: string
}

// Идея компонента: код страны и номер — два разных значения, поэтому это
// два поля, сросшихся в одну рамку. Код выбирается нативным select: на
// телефоне откроется системное колесо, а не самодельный список, который
// не помещается на экран. Флаг — эмодзи в тексте пункта: ни спрайтов,
// ни картинок, ни зависимости от иконочного пакета.
const STYLES = `
:where([data-vibeui-block="phoneinput-001"]){
--vibeui-phoneinput-001-surface:oklch(1 0 0);
--vibeui-phoneinput-001-surface-border:oklch(0.91 0.006 265);
--vibeui-phoneinput-001-fg:oklch(0.24 0.016 265);
--vibeui-phoneinput-001-muted:oklch(0.54 0.014 265);
--vibeui-phoneinput-001-field-border:oklch(0.85 0.01 265);
--vibeui-phoneinput-001-accent:oklch(0.55 0.2 262);
--vibeui-phoneinput-001-radius:0.625rem;
--vibeui-phoneinput-001-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="phoneinput-001"]{
box-sizing:border-box;width:100%;max-width:22rem;
padding:1rem;border-radius:0.875rem;
background:var(--vibeui-phoneinput-001-surface);
border:1px solid var(--vibeui-phoneinput-001-surface-border);
font-family:var(--vibeui-phoneinput-001-font);color:var(--vibeui-phoneinput-001-fg);
display:flex;flex-direction:column;gap:0.375rem;
}
[data-vibeui-block="phoneinput-001"] label{
font-size:0.875rem;font-weight:600;line-height:1.3;cursor:pointer;
}
/* Рамка одна на два поля: у самих полей её нет, а фокус подсвечивает
   всю пару через :has() — иначе половина рамки светится, половина нет. */
[data-vibeui-block="phoneinput-001"] [data-part="group"]{
display:flex;align-items:stretch;
border:1px solid var(--vibeui-phoneinput-001-field-border);
border-radius:var(--vibeui-phoneinput-001-radius);
background:var(--vibeui-phoneinput-001-surface);overflow:hidden;
transition:border-color .16s ease,box-shadow .16s ease;
}
[data-vibeui-block="phoneinput-001"] [data-part="group"]:has(:focus-visible){
border-color:var(--vibeui-phoneinput-001-accent);
box-shadow:0 0 0 3px color-mix(in oklab,var(--vibeui-phoneinput-001-accent) 22%,transparent);
}
[data-vibeui-block="phoneinput-001"] [data-part="code"]{position:relative;display:flex;flex:none}
[data-vibeui-block="phoneinput-001"] select{
appearance:none;-webkit-appearance:none;
box-sizing:border-box;height:2.5rem;
padding:0 1.5rem 0 0.75rem;
font:inherit;font-size:0.9375rem;line-height:1.2;
color:var(--vibeui-phoneinput-001-fg);background:transparent;
border:0;border-right:1px solid var(--vibeui-phoneinput-001-field-border);
cursor:pointer;outline:none;
}
[data-vibeui-block="phoneinput-001"] [data-part="arrow"]{
position:absolute;right:0.5rem;top:50%;pointer-events:none;
width:0.3125rem;height:0.3125rem;
border-right:1.5px solid var(--vibeui-phoneinput-001-muted);
border-bottom:1.5px solid var(--vibeui-phoneinput-001-muted);
translate:0 -0.1875rem;rotate:45deg;
}
[data-vibeui-block="phoneinput-001"] input{
box-sizing:border-box;width:100%;height:2.5rem;
padding:0 0.75rem;min-width:0;
font:inherit;font-size:0.9375rem;letter-spacing:0.01em;
color:var(--vibeui-phoneinput-001-fg);background:transparent;
border:0;outline:none;
}
[data-vibeui-block="phoneinput-001"] input::placeholder{color:var(--vibeui-phoneinput-001-muted)}
[data-vibeui-block="phoneinput-001"] [data-part="hint"]{
margin:0;font-size:0.8125rem;line-height:1.45;
color:var(--vibeui-phoneinput-001-muted);
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="phoneinput-001"] *{animation:none!important;transition:none!important}}
`

/**
 * Телефон с кодом страны в нативном списке и флагом-эмодзи: код и номер —
 * два поля в одной рамке. Один файл, ноль зависимостей.
 */
export function Phoneinput001({
  label = "Телефон",
  placeholder = "999 123-45-67",
  countries = [
    { flag: "🇷🇺", code: "+7", name: "Россия" },
    { flag: "🇰🇿", code: "+7", name: "Казахстан" },
    { flag: "🇧🇾", code: "+375", name: "Беларусь" },
    { flag: "🇬🇪", code: "+995", name: "Грузия" },
    { flag: "🇷🇸", code: "+381", name: "Сербия" },
  ],
  accent,
  className,
  style,
  ...props
}: Phoneinput001Props) {
  const id = useId()
  const codeId = `${id}-code`
  const hintId = `${id}-hint`
  const palette = {
    ...(accent ? { "--vibeui-phoneinput-001-accent": accent } : null),
    ...style,
  } as CSSProperties

  return (
    <>
      <style href="vibeui-phoneinput-001" precedence="medium">
        {STYLES}
      </style>
      <div
        {...props}
        data-vibeui-block="phoneinput-001"
        className={className}
        style={palette}
      >
        <label htmlFor={id}>{label}</label>
        <div data-part="group">
          <span data-part="code">
            <select
              id={codeId}
              name="country"
              aria-label="Код страны"
              defaultValue={countries[0]?.name}
            >
              {countries.map((country) => (
                <option key={country.name} value={country.name}>
                  {country.flag} {country.code}
                </option>
              ))}
            </select>
            <span data-part="arrow" aria-hidden="true" />
          </span>
          <input
            id={id}
            name="phone"
            type="tel"
            inputMode="tel"
            autoComplete="tel-national"
            placeholder={placeholder}
            aria-describedby={hintId}
          />
        </div>
        <p data-part="hint" id={hintId}>
          Номер можно вставить из буфера в любом виде — разберём сами.
        </p>
      </div>
    </>
  )
}