With image icon:
<div> <p>With image icon:</p> <div> <ch5-button type="text" shape="rectangle" label="PNG Icon Button" iconUrl="https://img.icons8.com/material/24/000000/search.png" ></ch5-button> <ch5-button type="text" shape="rectangle" label="SVG Icon Button" customClass="svg-btn-color" iconUrl="./img/nav_icon.svg" ></ch5-button> </div> </div>
.svg-icon { background-image: url('https://upload.wikimedia.org/wikipedia/en/9/9f/Twitter_bird_logo_2012.svg'); background-size:contain; background-repeat:no-repeat; width: 20px; height: 20px; display:inline-block; } .svg-btn-color .ch5-button--img { fill: orange; } .svg-btn-color.ch5-button--pressed .ch5-button--img { fill: red; }
<ch5-button type="text" shape="rectangle" label="Icon First" iconUrl="https://img.icons8.com/material/24/000000/chevron-left--v1.png" iconPosition="first"></ch5-button> <ch5-button type="text" shape="rectangle" label="Icon Last" iconUrl="https://img.icons8.com/material/24/000000/chevron-right--v1.png" iconPosition="last"></ch5-button> <ch5-button type="success" shape="rectangle" label="Icon Top" iconUrl="./img/volume_unmute.svg" iconPosition="top"></ch5-button> <ch5-button type="success" shape="rectangle" label="Icon Bottom" iconUrl="./img/volume_unmute.svg" iconPosition="bottom"></ch5-button>
<div> <h3>The icon for the bellow button will be changed</h3> <ch5-button type="success" shape="rectangle" label="SVG Icon" receivestateiconurl="current_svg"></ch5-button> <ch5-button type="text" shape="rectangle" label="PNG Icon" receivestateiconurl="current_png"></ch5-button> </div> <br /> <div> <h5>Click on the button bellow in order to change the icon</h5> <ch5-button type="success" shape="rectangle" label="Mute SVG" iconurl="./img/volume_mute.svg" sendeventonclick="trigger_icon_change_mute"></ch5-button> <ch5-button type="success" shape="rectangle" label="Unmute SVG" iconurl="./img/volume_unmute.svg" sendeventonclick="trigger_icon_change_unmute"></ch5-button> <ch5-button type="text" shape="rectangle" label="User PNG" iconurl="https://img.icons8.com/material/24/000000/user--v1.png" sendeventonclick="trigger_icon_change_user"></ch5-button> <ch5-button type="text" shape="rectangle" label="Connect PNG" iconurl="https://img.icons8.com/material/24/000000/share-2.png" sendeventonclick="trigger_icon_change_connect"></ch5-button> </div>
.ch5-button--img { fill: white; }