UNPKG
@frontend-kasplo/kasplo-ui-components
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
UI Components Library
github.com/Kasplo-dev/kasplo-ui-components
Kasplo-dev/kasplo-ui-components
@frontend-kasplo/kasplo-ui-components
/
dist
/
types
/
components
/
Counter
/
Counter.d.ts
12 lines
(11 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
;