mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
14 lines
237 B
JavaScript
14 lines
237 B
JavaScript
require('./stacked-icon.css')
|
|
|
|
module.exports = function clearButtonDirective() {
|
|
return {
|
|
restrict: 'EA',
|
|
replace: true,
|
|
scope: {
|
|
icon: '@',
|
|
color: '@'
|
|
},
|
|
template: require('./stacked-icon.jade')
|
|
}
|
|
}
|