UNPKG
reflex-motion-test
Version:
latest (1.0.0)
1.0.0
Simple, elegant animations library
github.com/gracesnoh/reflex-motion
gracesnoh/reflex-motion
reflex-motion-test
/
animations
/
Checkbox
/
index.js
15 lines
(11 loc)
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
styled
from
'styled-components'
;
import
Input
from
'./Input.js'
;
import
Label
from
'./Label.js'
;
const
Checkbox
= styled.
div
` position: relative; width: 36px; height: 36px; `
;
Checkbox
.
Input
=
Input
;
Checkbox
.
Label
=
Label
;
export
default
Checkbox
;