{% from "components/button/_macro.njk" import onsButton %}

<div class="ons-btn-group">
    {{
        onsButton({
            "text": 'Continue'
        })
    }}
    {{
        onsButton({
            "type": 'button',
            "text": 'Cancel',
            "name": 'example',
            "variants": 'secondary'
        })
    }}
</div>
