40 lines
739 B
JavaScript
40 lines
739 B
JavaScript
const pxValues = new Set([
|
|
// Border props
|
|
"borderWidth",
|
|
"borderTopWidth",
|
|
"borderRightWidth",
|
|
"borderBottomWidth",
|
|
"borderLeftWidth",
|
|
"borderRadius",
|
|
"radius",
|
|
"borderTopLeftRadius",
|
|
"borderTopRightRadius",
|
|
"borderBottomRightRadius",
|
|
"borderBottomLeftRadius",
|
|
// Positioning props
|
|
"width",
|
|
"maxWidth",
|
|
"height",
|
|
"maxHeight",
|
|
"top",
|
|
"right",
|
|
"bottom",
|
|
"left",
|
|
// Spacing props
|
|
"padding",
|
|
"paddingTop",
|
|
"paddingRight",
|
|
"paddingBottom",
|
|
"paddingLeft",
|
|
"margin",
|
|
"marginTop",
|
|
"marginRight",
|
|
"marginBottom",
|
|
"marginLeft",
|
|
// Misc
|
|
"backgroundPositionX",
|
|
"backgroundPositionY",
|
|
]);
|
|
|
|
export { pxValues };
|