@procore/core-react
Version:
React library of Procore Design Guidelines
38 lines (30 loc) • 450 B
JavaScript
/** Number values for padding, margin, etc.
* Intended to be used as pixels.
none: 0,
xxs: 2,
xs: 4,
sm: 8,
md: 12,
lg: 16,
xl: 24,
xxl: 32,
*/
export var spacing = {
/** value 0 */
none: 0,
/** value 2 */
xxs: 2,
/** value 4 */
xs: 4,
/** value 8 */
sm: 8,
/** value 12 */
md: 12,
/** value 16 */
lg: 16,
/** value 24 */
xl: 24,
/** value 32 */
xxl: 32
};
//# sourceMappingURL=spacing.js.map