UNPKG
tailwindui-mza
Version:
latest (0.2.0)
0.2.0
0.1.2
0.1.1
0.1.0
A package for some base ui component ( **not have ui just logic** ).
tailwindui-mza
/
dist
/
components
/
Collapse
/
index.d.ts
8 lines
(7 loc)
•
188 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
FC
,
PropsWithChildren
}
from
"react"
;
interface
PropsI
{
in
:
boolean
;
duration
?:
number
; }
export
declare
const
Collapse
:
FC
<
PropsWithChildren
<
PropsI
>>;
export
{};