CardSubmitButton
This component allows you to create a card submit button.
Example

<card-submit-button
label="Submit button"
button-text="Submit"
size="is-medium"
/>
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| label | The card button label | String | false | "" |
| buttonText | The card button text | String | false | "" |
| horizontal | Define if it aligns label and control in horizontal forms | Boolean | false | true |
| customClass | CSS classes to be applied on field label | String | false | "" |
| type | Type (color) of the control | 'is-white', 'is-black', 'is-light', 'is-dark', 'is-primary', 'is-info', 'is-success', 'is-warning', 'is-danger' , and any other colors you've set in the $colors list on Sass | false | "is-primary" |
| size | Vertical size of button, optional | 'is-small', 'is-medium', 'is-large' | false | null |
| isRounded | Rounded style | Boolean | false | true |
| icon | Icon name to show on the left | String | false | null |
| isDisabled | Show button disabled | Boolean | false | false |
Events
| Event Name | Description | Parameters |
|---|---|---|
| buttonClicked | Fire an event to the parent | - |
Methods
| Method | Description | Parameters |
|---|---|---|
| buttonClicked | It fires when the button is clicked | - |