import { Navbar } from 'elementique';
function App() {
return (
<>
<Navbar
title='Navbar'
bg='royalblue'
color='#000'
fontsProperty={{size: "14px", weight: 600}}
links={[
{
label: "Home", href: "/",
},
{
label: "About", href: "/about",
},
]}
/>
</>
)
}
export default App;