UNPKG

@dvcol/neo-svelte

Version:

Neomorphic ui library for svelte 5

13 lines (12 loc) 360 B
import type { NeoButtonProps } from './neo-button.model.js'; import type { NeoIconArrowProps } from '../icons/neo-icon.model.js'; export type NeoArrowButtonProps = NeoButtonProps & { /** * Optional arrow properties. */ arrowProps?: NeoIconArrowProps; /** * Arrow direction. */ direction?: NeoIconArrowProps['direction']; };