The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package FBP::SpinButton;

use Mouse;

our $VERSION = '0.41';

extends 'FBP::Control';

has style => (
	is  => 'ro',
	isa => 'Str',
);

has OnSpin => (
	is  => 'ro',
	isa => 'Str',
);

has OnSpinUp => (
	is  => 'ro',
	isa => 'Str',
);

has OnSpinDown => (
	is  => 'ro',
	isa => 'Str',
);

no Mouse;
__PACKAGE__->meta->make_immutable;

1;