UNPKG

v-phone-input

Version:

International phone field for Vuetify 3 and Vue 3.

18 lines (17 loc) 414 B
import { VPhoneCountryDisplayProps, VPhoneInputCountryObject } from '../types'; /** * Get country icon attributes. * * @param props * * @internal */ export default function getPhoneCountryIconAttrs(props: VPhoneCountryDisplayProps<VPhoneInputCountryObject>): { role?: undefined; title?: undefined; "aria-label"?: undefined; } | { role: string; title: string; "aria-label": string; };