#1
3471
<!-- Hamburger menu -->
<div class='hamburger-section container'>
<b:include data='{ button: true, iconClass: "hamburger-menu flat-icon-button ripple" }' name='menuIcon'/>
</div>
<!-- End hamburger menu -->
replace👆 with 👇 this
<button class="svg-icon-24-button hamburger-menu flat-icon-button ripple" aria-label="Hamburger Menu">
<!-- Sample SVG Icon -->
<svg focusable="false" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" fill="currentColor"/>
</svg>
</button>
#2
4687
<div class='navigation container'>
<b:include data='{ button: true, iconClass: "sidebar-back flat-icon-button ripple" }' name='forwardArrowIcon'/>
</div>
replace👆 with 👇 this
<button class="svg-icon-24-button sidebar-back flat-icon-button ripple" aria-label="Accessible Label">
<!-- Sample SVG Icon -->
<svg focusable="false" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" fill="currentColor"/>
</svg>
</button>
Comments
Post a Comment