mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-28 12:22:20 +08:00
10 lines
354 B
JavaScript
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>
|
|
);
|
|
};
|