css-in-props
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -6,3 +6,3 @@ { | ||
"author": "symbo.ls", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"repository": "https://github.com/symbo-ls/smbls", | ||
@@ -9,0 +9,0 @@ "main": "src/index.js", |
@@ -85,4 +85,4 @@ 'use strict' | ||
export const block = { | ||
round: ({ props, key }) => props.round ? (mapSpacing(props.round, 'borderRadius') || ({ borderRadius: props.round })) : null, | ||
borderRadius: ({ props, key }) => props.borderRadius ? (mapSpacing(props.borderRadius, 'borderRadius') || ({ borderRadius: props.borderRadius })) : null, | ||
round: props => props.round ? (mapSpacing(props.round, 'borderRadius') || ({ borderRadius: props.round })) : null, | ||
borderRadius: props => props.borderRadius ? (mapSpacing(props.borderRadius, 'borderRadius') || ({ borderRadius: props.borderRadius })) : null, | ||
@@ -89,0 +89,0 @@ transition: props => props.transition && ({ transition: props.transition }), |
@@ -19,4 +19,3 @@ 'use strict' | ||
return CLASS_NAMES | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15051