UNPKG
@bottledbrains/ui
Version:
latest (0.23.0)
0.23.0
0.22.5
0.22.3
0.22.2
0.22.0
0.21.0
0.20.5
0.20.4
0.20.3
0.20.2
0.20.1
0.20.0
0.19.1
0.18.5
0.18.4
0.18.3
0.18.2
0.18.1
0.18.0
0.17.3
0.17.2
0.17.1
0.16.1
0.15.4
0.15.3
0.15.2
0.15.1
0.14.4
0.14.3
0.14.2
0.14.1
0.0.14
A React UI library based on Tailwind CSS
bottledbrains-ui.vercel.app
SouthpawGoblin/bottledbrains-ui
@bottledbrains/ui
/
lib
/
components
/
Card
/
index.d.ts
7 lines
(6 loc)
•
178 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
FC
}
from
"react"
;
import
{
CommonProps
}
from
"../../types"
;
export
interface
CardProps
extends
CommonProps
{ }
declare
const
Card
:
FC
<
CardProps
>;
export
default
Card
;