UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

6 lines (5 loc) 274 B
import type { PhoneInputProps } from './types'; import 'svelte-tel-input/styles/flags.css'; declare const PhoneInput: import("svelte").Component<PhoneInputProps, {}, "value" | "country" | "valid">; type PhoneInput = ReturnType<typeof PhoneInput>; export default PhoneInput;