@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
16 lines (13 loc) • 476 B
JavaScript
import { jsx } from 'react/jsx-runtime';
// src/components/header/header.tsx
function Header({ children, ...props }) {
return /* @__PURE__ */ jsx(
"header",
{
className: "bg-app-foreground/95 supports-[backdrop-filter]:bg-app-foreground/60 sticky top-0 z-50 w-full border-b border-gray-800 backdrop-blur",
...props,
children: /* @__PURE__ */ jsx("div", { className: "container flex h-16 items-center", children })
}
);
}
export { Header };