UNPKG

@dvcol/neo-svelte

Version:

Neomorphic ui library for svelte 5

13 lines (12 loc) 397 B
import type { NeoButtonProps } from '../buttons/neo-button.model.js'; import type { NeoInputProps } from './common/neo-input.model.js'; export type NeoDateTimeProps = { /** * Custom icon for the picker. */ icon?: NeoButtonProps['icon']; /** * Button properties to pass to the increment and decrement buttons. */ buttonProps?: NeoButtonProps; } & NeoInputProps;