UNPKG
basic-kit-theme
Version:
latest (0.13.0)
0.13.0
0.12.0
0.11.0
0.10.1
0.9.0
0.8.1
0.2.1
0.2.0
0.1.2
0.1.1
The basic theme and theme specification for react-basic-kit
basic-kit-theme
/
src
/
utils.js
11 lines
(7 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ compose,
map
} from
'ramda'
const
toRem = _ =>
`${_}rem`
const
toBase16 = _ => _ /
16
export
const
pxToRem = compose(
map
(toRem),
map
(toBase16) )