@hoddy-ui/next 2.0.25 → 2.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1481,7 +1481,7 @@ var TextField = ({
|
|
|
1481
1481
|
{
|
|
1482
1482
|
style: {
|
|
1483
1483
|
marginRight: 20,
|
|
1484
|
-
paddingTop: variant
|
|
1484
|
+
paddingTop: variant === "text" ? ms(13) : 0
|
|
1485
1485
|
}
|
|
1486
1486
|
},
|
|
1487
1487
|
end
|
|
@@ -1490,8 +1490,8 @@ var TextField = ({
|
|
|
1490
1490
|
View10,
|
|
1491
1491
|
{
|
|
1492
1492
|
style: {
|
|
1493
|
-
marginRight: 20,
|
|
1494
|
-
paddingTop: variant
|
|
1493
|
+
marginRight: variant === "text" ? 0 : 20,
|
|
1494
|
+
paddingTop: variant === "text" ? ms(13) : 0
|
|
1495
1495
|
}
|
|
1496
1496
|
},
|
|
1497
1497
|
/* @__PURE__ */ React15.createElement(
|