size String (default: 'medium')

Controls the overall physical size of a button. Valid values are: "small", "medium", "large", and "none". Default value is "medium".

Example

<button id="button" type="button">Cancel</button>
<script>
    $("#button").kendoButton({
        size: "large"
    });
</script>
In this article