UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

19 lines (18 loc) 674 B
import type { SliderSingleProps } from 'antd'; import type { CSSProperties } from 'react'; import type { FlexboxProps } from 'react-layout-kit'; import type { InputNumberProps } from "../Input"; export interface SliderWithInputProps extends Omit<SliderSingleProps, 'classNames' | 'styles'> { classNames?: { input?: string; slider?: string; } & SliderSingleProps['classNames']; controls?: InputNumberProps['controls']; gap?: FlexboxProps['gap']; size?: InputNumberProps['size']; styles?: { input?: CSSProperties; slider?: CSSProperties; } & SliderSingleProps['styles']; variant?: InputNumberProps['variant']; }