We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6dfbff commit 09ce496Copy full SHA for 09ce496
1 file changed
src/elements/Divider/Divider.js
@@ -0,0 +1,35 @@
1
+import React, {Component, PropTypes} from 'react';
2
+import classNames from 'classnames';
3
+import META from 'src/utils/Meta';
4
+
5
+// export default class Button extends Component {
6
+// static propTypes = {
7
+// children: PropTypes.node,
8
+// className: PropTypes.string,
9
+// };
10
11
+// static defaultProps = {
12
+// children: 'Click Here',
13
+// type: 'button'
14
+// };s
15
16
+// static _meta = {
17
+// library: META.library.semanticUI,
18
+// name: 'Button',
19
+// type: META.type.element,
20
21
22
+// render() {
23
+// const classes = classNames(
24
+// 'sd-button',
25
+// 'ui',
26
+// this.props.className,
27
+// 'button'
28
+// );
29
+// return (
30
+// <button {...this.props} className={classes}>
31
+// {this.props.children}
32
+// </button>
33
34
+// }
35
0 commit comments