bootstrap white icon

Hello

I have this button :


$this->beginWidget('bootstrap.widgets.TbButton', array(

        'buttonType' => 'Submit',

        //'url' =>...,

        'label' => '..',

        'icon' => 'icon-lock',

     

        'size' => 'normal', // null, 'large', 'small' or 'mini

        'htmlOptions' => array('class'=>'btn btn-primary','submit' => array('lock', 'id' => $model->id),'params'=> array('YII_CSRF_TOKEN' => $token))

    ));


    $this->endWidget();

Hoe I can use the icon ‘icon-lock’ but the “white” version??

Done!


'icon' => 'icon-lock icon-white',

thanks