Louis authored on25/08/2018 23:51:28
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+'use strict';
2
+
3
+module.exports = {
4
+  name: 'button',
5
+  template: require('../../templates/components/button.tpl'),
6
+  style: require('../../styles/clay/components/button.scss'),
7
+  manipulator: 'button',
8
+  defaults: {
9
+    primary: false,
10
+    attributes: {},
11
+    description: ''
12
+  }
13
+};