@smg-automotive/components 27.2.0 → 27.3.1

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/cjs/index.js CHANGED
@@ -4326,7 +4326,7 @@ const Switch$1 = ({ id, disabled, onCheckedChange, checked, label, ...props }) =
4326
4326
  const recipe = react.useSlotRecipe({ key: 'switch' });
4327
4327
  const [recipeProps] = recipe.splitVariantProps(props);
4328
4328
  const styles = recipe(recipeProps);
4329
- return (jsxRuntime.jsxs(react.Switch.Root, { onCheckedChange: onCheckedChange, checked: checked, disabled: disabled, css: styles.root, children: [jsxRuntime.jsx(react.Switch.HiddenInput, {}), jsxRuntime.jsx(react.Switch.Control, { css: styles.control, children: jsxRuntime.jsx(react.Switch.Thumb, { css: styles.thumb }) }), label ? (jsxRuntime.jsx(react.Switch.Label, { css: styles.label, children: label })) : null] }));
4329
+ return (jsxRuntime.jsxs(react.Switch.Root, { onCheckedChange: onCheckedChange, checked: checked, disabled: disabled, css: styles.root, children: [jsxRuntime.jsx(react.Switch.HiddenInput, {}), jsxRuntime.jsx(react.Switch.Control, { className: "group", css: styles.control, children: jsxRuntime.jsx(react.Switch.Thumb, { css: styles.thumb }) }), label ? (jsxRuntime.jsx(react.Switch.Label, { css: styles.label, children: label })) : null] }));
4330
4330
  };
4331
4331
 
4332
4332
  const Switch = (props) => {