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.

8 lines (7 loc) 287 B
import type { NumberInputRootBaseProps } from '@ark-ui/svelte/number-input'; export interface NumberInputProps extends Omit<NumberInputRootBaseProps, 'value' | 'readOnly'> { value?: number | null; readonly?: boolean; label?: string; layout?: 'vertical' | 'horizontal'; }