@ctlyst.id/internal-ui 2.0.5 → 2.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -2144,20 +2144,26 @@ const InputAddonLeft = ({
2144
2144
  children
2145
2145
  }) => {
2146
2146
  return /*#__PURE__*/React__default.createElement(InputLeftAddon, {
2147
- borderLeftRadius: "md",
2148
2147
  backgroundColor: "neutral.200",
2149
2148
  px: 3,
2150
- py: 2.5
2149
+ py: 2.5,
2150
+ style: {
2151
+ border: 0,
2152
+ marginInlineEnd: 0
2153
+ }
2151
2154
  }, children);
2152
2155
  };
2153
2156
  const InputAddonRight = ({
2154
2157
  children
2155
2158
  }) => {
2156
2159
  return /*#__PURE__*/React__default.createElement(InputRightAddon, {
2157
- borderRightRadius: "md",
2158
2160
  backgroundColor: "neutral.200",
2159
2161
  px: 3,
2160
- py: 2.5
2162
+ py: 2.5,
2163
+ style: {
2164
+ border: 0,
2165
+ marginInlineStart: 0
2166
+ }
2161
2167
  }, children);
2162
2168
  };
2163
2169
 
@@ -3956,6 +3962,7 @@ const Chips = /*#__PURE__*/defineStyleConfig({
3956
3962
 
3957
3963
  const baseStyle$2 = /*#__PURE__*/defineStyle$1({
3958
3964
  fontSize: 'field.sm',
3965
+ fontWeight: 'normal',
3959
3966
  marginEnd: 1,
3960
3967
  mb: 1
3961
3968
  });