Por defecto #
Descripción visual
Tres botones rectangulares dispuestos horizontalmente con bordes azules de 1px, fondo blanco y texto azul en negrita. Los botones tienen esquinas ligeramente redondeadas y espaciado uniforme entre ellos. El conjunto está contenido en un rectángulo con borde gris claro.
Mostrar códigodel ejemplo: Por defecto
Contenido
Nunjucks macro
{% from "components/menu-navigation/_macro.menu-navigation.njk" import componentMenuNavigation %}
{{ componentMenuNavigation({
"idPrefix": "default-example",
"items": [
{
"text": "Item 1",
"id": "default-example-item-1",
"sub": {
"items": [
{
"href": "#",
"text": "Subitem 1"
},
{
"href": "#",
"text": "Subitem 2"
},
{
"href": "#",
"text": "Subitem 3"
}
],
"attributes": {
"aria-labelledby": "default-example-item-1"
}
}
},
{
"text": "Item 2",
"id": "default-example-item-2",
"sub": {
"items": [
{
"href": "#",
"text": "Subitem 1"
},
{
"href": "#",
"text": "Subitem 2"
},
{
"href": "#",
"text": "Subitem 3"
}
],
"attributes": {
"aria-labelledby": "default-example-item-2"
}
}
},
{
"text": "Item 3",
"id": "default-example-item-3",
"sub": {
"items": [
{
"href": "#",
"text": "Subitem 1"
},
{
"href": "#",
"text": "Subitem 2"
},
{
"href": "#",
"text": "Subitem 3"
}
],
"attributes": {
"aria-labelledby": "default-example-item-3"
}
}
}
],
"attributes": {
"aria-label": "Menu navigation"
}
}) }}