Navbar is a flexible and extensible component that provides a container for navigation elements.
import { DaffNavbarComponent } from '@daffodil/design/navbar'
Navbar is a flexible and extensible component that provides a container for navigation elements.
@Component()
class DaffNavbarComponent {
elevated: InputSignal<boolean> = input(false)
blurred: InputSignal<boolean> = input(false)
}
InputSignal| Default | input(false) |
|---|---|
| Description | Whether the navbar should have an elevated appearance with a shadow effect. |
InputSignal| Default | input(false) |
|---|---|
| Description | Whether the navbar should have a blurred background effect. |
import { DaffNavbarModule } from '@daffodil/design/navbar'
@NgModule()
class DaffNavbarModule {}