UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

8 lines (7 loc) 193 B
import React from 'react'; interface CounterProps { count: number; maxLength?: number; } declare const Counter: React.FC<React.PropsWithChildren<CounterProps>>; export default Counter;