svelte-5-ui-lib
Version:
Svelte 5 UI Lib is a UI library built from scratch to leverage Svelte 5's runes system, creating smooth, reactive components.
7 lines (6 loc) • 299 B
TypeScript
import type { InputProps, InputValue } from './type';
import Input from './Input.svelte';
import type { SizeType } from '../../types';
import { input } from './theme';
declare function clampSize(s: SizeType): "sm" | "md" | "lg";
export { Input, input, type InputProps, type InputValue, clampSize };