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) 273 B
import { NumberInput } from '@ark-ui/svelte/number-input'; import type { NumberInputProps } from './types'; declare const NumberInput: import("svelte").Component<NumberInputProps, {}, "value">; type NumberInput = ReturnType<typeof NumberInput>; export default NumberInput;