@sjsf-lab/shadcn-extras-theme
Version:
The shadcn-svelte-extras based theme for svelte-jsonschema-form
8 lines (7 loc) • 361 B
TypeScript
import { type PhoneInputProps } from './index.js';
import 'svelte-tel-input/styles/flags.css';
declare const PhoneInput: import("svelte").Component<PhoneInputProps, {
focus: () => void;
}, "disabled" | "placeholder" | "readonly" | "value" | "country" | "valid" | "detailedValue">;
type PhoneInput = ReturnType<typeof PhoneInput>;
export default PhoneInput;