mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
27 lines
693 B
TypeScript
27 lines
693 B
TypeScript
import type { JSX } from 'react'
|
|
import { AppShell, Burger, Button, Flex } from '@mantine/core'
|
|
import { Link } from 'tuono'
|
|
|
|
import Actions from './actions'
|
|
|
|
interface NavbarProps {
|
|
opened: boolean
|
|
toggle: () => void
|
|
}
|
|
|
|
export default function Navbar({ opened, toggle }: NavbarProps): JSX.Element {
|
|
return (
|
|
<AppShell.Header p="sm">
|
|
<Flex justify="space-between">
|
|
<Button component={Link} href="/" variant="transparent" p={0} fz={28}>
|
|
Tuono
|
|
</Button>
|
|
<Flex align="center" gap={8}>
|
|
<Actions />
|
|
<Burger opened={opened} onClick={toggle} hiddenFrom="sm" size="sm" />
|
|
</Flex>
|
|
</Flex>
|
|
</AppShell.Header>
|
|
)
|
|
}
|