Navbar10

Navbar10 is a responsive navigation bar component built with MUI's AppBar and Toolbar, designed to render customizable content through the children prop, featuring adaptive height and padding based on screen size.

All available props for the Navbar10 component are defined and handled within Component usage path file. This allows for easy modifications to the content of the Navbar section.

Component path: src/blocks/navbar/Navbar10.tsx

Component usage path: src/app/blocks/navbar/navbar10/page.tsx

Preview link: https://www.saasable.io/blocks/navbar/navbar10

Props Details

Prop
Type
Description
Display as

children

ReactElement

A single React element or component that will be rendered inside the StyledToolbar of the AppBar. This prop allows for custom content such as logos, navigation links, or any other elements to be displayed in the navbar.

Elements that will be displayed inside the navigation bar

isFixed

boolean

Determines if the navbar stays fixed at the top when scrolling. true = fixed, false = static position.

If true: position: fixed with spacing offset below it. If false: position: static, no offset added.

...props

object

Additional props passed down to ElevationScroll and AppBar.

Any valid props like id, className, sx, etc., are spread to internal components.

Last updated