UNPKG
ai-react-ui
Version:
latest (0.1.0)
0.1.0
An AI-friendly React UI component library
ai-react-ui
/
dist
/
components
/
Card.d.ts
11 lines
(10 loc)
•
287 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
"react"
;
import
{
Spacing
,
Elevation
}
from
"../theme/types"
;
interface
CardProps
{
children
:
React
.
ReactNode
;
padding
?:
Spacing
;
elevation
?:
Elevation
;
style
?:
React
.
CSSProperties
; }
export
declare
const
Card
:
React
.
FC
<
CardProps
>;
export
{};