kilyakus/yii2-widget-button

Installs: 17

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:CSS

Type:yii2-extension

dev-master 2021-04-01 16:43 UTC

This package is auto-updated.

Last update: 2024-04-29 04:20:56 UTC


README

use kilyalus\button\Button;
echo Button::widget([
	'title' => 'label',
	'icon' => 'fa fa-cog',
	'iconPosition' => Button::ICON_POSITION_LEFT,
	'type' => Button::TYPE_PRIMARY,
	'size' => Button::SIZE_MINI,
	'disabled' => false,
	'block' => false,
	'outline' => true,
	'hover' => true,
	'circle' => true,
	'options' => [
		'type' => 'submit'
	],
])