WordPress Jquery UI Spinner

Just found it here http://codex.wordpress.org/Function_Reference/wp_register_script

Here is an example how to load it on a plugin:

function load_jquey_spinner() {
wp_enqueue_script( 'jquery-ui-spinner' );

}

add_action('wp_enqueue_scripts', 'load_jquey_spinner');