@nation-a/ui 0.15.1 → 0.15.2
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -19240,9 +19240,9 @@ const Header = React.forwardRef(
|
|
|
19240
19240
|
Header.displayName = "BottomSheet.Header";
|
|
19241
19241
|
const Content$3 = React.forwardRef(
|
|
19242
19242
|
({ className, children, css: cssProp, ...props }, ref) => {
|
|
19243
|
-
const styles2 = bottomSheetRecipe();
|
|
19243
|
+
const styles2 = bottomSheetRecipe.raw();
|
|
19244
19244
|
const { rounded } = React.useContext(BottomSheetContext);
|
|
19245
|
-
const contentClass = cx(styles2.content,
|
|
19245
|
+
const contentClass = cx(css$1(styles2.content, cssProp), className);
|
|
19246
19246
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
19247
19247
|
Sheet.Container,
|
|
19248
19248
|
{
|