2023-09-29 16:01:27 +02:00
|
|
|
// __SDEFILE__ - This file is a dependency for the stand-alone environment
|
2023-09-09 17:58:44 +02:00
|
|
|
export const HeaderWrapper = ({ children }) => (
|
2023-09-04 11:56:20 +02:00
|
|
|
<header
|
|
|
|
className={`
|
2023-09-09 17:58:44 +02:00
|
|
|
fixed bottom-0 left-0 md:relative
|
|
|
|
bg-neutral drop-shadow-xl w-full
|
|
|
|
border-t border-solid border-base-300 z-20
|
2023-09-04 11:56:20 +02:00
|
|
|
`}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</header>
|
|
|
|
)
|