UNPKG
@crossed/demo
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0
A universal & performant styling library for React Native, Next.js & React
@crossed/demo
/
lib
/
module
/
ui
/
layout
/
Box.js
10 lines
(9 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ jsx }
from
"react/jsx-runtime"
;
import
{
Box
}
from
"@crossed/ui"
;
const
BoxDemo
= (
) => {
return
/* @__PURE__ */
jsx
(
Box
, {
className
:
"w-5 h-5 bg-blue-500"
}); };
export
{
BoxDemo
};
//# sourceMappingURL=Box.js.map