import type { ComponentProps } from "react" import { cn } from "~/lib/utils" function Appbar({ className, ...props }: ComponentProps<"header">) { return (
) } function AppbarTitle({ className, ...props }: ComponentProps<"span">) { return ( ) } function AppbarSpacer({ className, ...props }: ComponentProps<"div">) { return (
) } function AppbarActions({ className, ...props }: ComponentProps<"div">) { return (
) } export { Appbar, AppbarTitle, AppbarSpacer, AppbarActions }