UNPKG

@frontend-kasplo/kasplo-ui-components

Version:
12 lines (11 loc) 258 B
import React from 'react'; export interface CounterProps { initialValue?: number; min?: number; max?: number; step?: number; label?: string; className?: string; } declare const Counter: React.FC<CounterProps>; export default Counter;