sfgov-design-system
Version:
This is the design system for [SF.gov](https://sf.gov) and the City & County of San Francisco.
27 lines (25 loc) • 329 B
JavaScript
module.exports = {
0: '0',
...pxMap([
2,
4,
8,
16,
20,
24, // TODO: deprecate @3
28,
40,
48, // TODO: deprecate @3
60,
80,
96,
100 // TODO: deprecate @3
])
}
function pxMap (values) {
const map = {}
for (const n of values) {
map[n] = `${n}px`
}
return map
}