UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

54 lines (51 loc) 1.61 kB
'use client'; import React from 'react'; import 'clsx'; import '@mantine/hooks'; import '../../../core/MantineProvider/Mantine.context.mjs'; import '../../../core/MantineProvider/default-theme.mjs'; import '../../../core/MantineProvider/MantineProvider.mjs'; import '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs'; import { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs'; import { Box } from '../../../core/Box/Box.mjs'; import { factory } from '../../../core/factory/factory.mjs'; import '../../../core/DirectionProvider/DirectionProvider.mjs'; import { useAppShellContext } from '../AppShell.context.mjs'; import classes from '../AppShell.module.css.mjs'; const defaultProps = {}; const AppShellAside = factory((_props, ref) => { const props = useProps("AppShellAside", defaultProps, _props); const { classNames, className, style, styles, unstyled, vars, withBorder, zIndex, mod, ...others } = props; const ctx = useAppShellContext(); if (ctx.disabled) { return null; } return /* @__PURE__ */ React.createElement( Box, { component: "aside", ref, mod: [{ "with-border": withBorder ?? ctx.withBorder }, mod], ...ctx.getStyles("aside", { className, classNames, styles, style }), ...others, __vars: { "--app-shell-aside-z-index": `calc(${zIndex ?? ctx.zIndex} + 1)` } } ); }); AppShellAside.classes = classes; AppShellAside.displayName = "@mantine/core/AppShellAside"; export { AppShellAside }; //# sourceMappingURL=AppShellAside.mjs.map