hello-theme/modules/admin-home/assets/js/components/top-bar/top-bar.js
2025-05-19 21:15:59 +03:00

10 lines
354 B
JavaScript

import AppBar from '@elementor/ui/AppBar';
import { TopBarContent } from './top-bar-content';
export const TopBar = () => {
return (
<AppBar position="absolute" sx={ { width: 'calc(100% - 160px)', top: 0, right: 'unset', insetInlineEnd: 0, height: 50, minHeight: 50, backgroundColor: 'background.default' } }>
<TopBarContent />
</AppBar>
);
};