23 lines
443 B
JavaScript
23 lines
443 B
JavaScript
import { token } from '..';
|
|
import x from './modules/x';
|
|
import y from './modules/y';
|
|
import bottom from './properties/bottom';
|
|
import left from './properties/left';
|
|
import right from './properties/right';
|
|
import top from './properties/top';
|
|
|
|
export default {
|
|
padding: token.spacing('padding'),
|
|
p: token.spacing('padding'),
|
|
|
|
// properties
|
|
...bottom,
|
|
...left,
|
|
...right,
|
|
...top,
|
|
|
|
// modules
|
|
...x,
|
|
...y
|
|
};
|