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.

10 lines (9 loc) 321 B
import type { Props as TelInputProps } from 'svelte-tel-input/types'; export interface PhoneInputProps extends Omit<TelInputProps, 'value' | 'class' | 'id' | 'readonly'> { value?: string; label?: string; layout?: 'vertical' | 'horizontal'; readonly?: boolean; invalid?: boolean; class?: string; }