UNPKG
@fag-bundle/react-glass-components
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.0
1.0.0
Draggable glassmorphic components for React Applications.
@fag-bundle/react-glass-components
/
dist
/
components
/
GlassCard.d.ts
10 lines
(9 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
"react"
;
type
GlassCardProps
= {
children
?:
React
.
ReactNode
;
className
?:
string
;
type
?:
"light"
|
"dark"
;
varient
?:
"fixed"
|
"dragable"
; };
export
declare
const
GlassCard
:
React
.
FC
<
GlassCardProps
>;
export
{};