Provides an Angular wrapper for Button Set.
Provides an Angular wrapper for Button Set.
<div ng-app="TestApp" ng-strict-di>
<rg-button-set>
<rg-button>Button 1</rg-button>
<rg-button>Button 2</rg-button>
<rg-button>Button 3</rg-button>
</rg-button-set>
</div>
import angular from 'angular';
import ButtonSetNG from '@jetbrains/ring-ui/components/button-set-ng/button-set-ng';
import ButtonNG from '@jetbrains/ring-ui/components/button-ng/button-ng';
angular.module('TestApp', [ButtonNG, ButtonSetNG]);