bylapidist/styles

View on GitHub
tokens/core/border/width.cjs

Summary

Maintainability
Test Coverage
module.exports = {
    border: {
        width: {
            none: {
                value: '0'
            },
            thinnest: {
                value: '1px'
            },
            thinner: {
                value: '2px'
            },
            thicker: {
                value: '3px'
            },
            thickest: {
                value: '4px'
            }
        }
    }
};