/** * Size options for the button component. */ export type VegaButtonSize = 'default' | 'small' | 'large'; /** * Visual variant options for the button component. */ export type VegaButtonVariant = 'primary' | 'secondary'; /** * Icon alignment options for button icons. */ export type VegaButtonIconAlign = 'left' | 'right'; /** * HTML button `type` attribute values. */ export type VegaButtonType = 'submit' | 'button' | 'reset';