UNPKG
@b1dr/xip-ui
Version:
latest (0.2.0-alpha-2)
0.2.0-alpha-2
0.2.0-alpha-1
0.1.4
A UI library for SolidJS with Themescura
github.com/xypnox/xip
xypnox/xip
@b1dr/xip-ui
/
dist
/
source
/
components
/
card
/
index.jsx
5 lines
(4 loc)
•
149 B
JSX
View Raw
1
2
3
4
5
import
styles
from
'./style.module.css'
;
export
const
Card
= (
props
) => {
return
(
<
div
{
...props
}
class
=
{
`${
styles.card
} ${
props.class
}`}/>
); };