UNPKG
liquid-glass-react-ui
Version:
latest (0.1.0)
0.1.0
Missing React, typescript NPM library creation template
morewings.github.io/react-library-template/
liquid-glass-react-ui
/
dist
/
index.d.ts
11 lines
(7 loc)
•
175 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
FC
}
from
'react'
;
export
declare
const
Counter
:
FC
<
Props
>;
declare
type
Props
= {
/** Set initial value */
initialValue
?:
number
; };
export
{ }