From d2124638ba4e999858a45940e59cf566253c058c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Wed, 26 Oct 2016 12:42:59 +0100 Subject: [PATCH] s/secundary/secondary --- ui/src/components/button/index.js | 6 +++--- ui/src/components/button/readme.md | 2 +- ui/src/components/button/style.css | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/src/components/button/index.js b/ui/src/components/button/index.js index 31c33597..60b6ff70 100644 --- a/ui/src/components/button/index.js +++ b/ui/src/components/button/index.js @@ -4,7 +4,7 @@ const styles = require('./style.css'); const Button = ({ disabled = false, - secundary = false, + secondary = false, className, style, children @@ -12,7 +12,7 @@ const Button = ({ const cn = classNames( className, styles.button, - secundary ? styles.secundary : styles.primary, + secondary ? styles.secondary : styles.primary, disabled ? styles.inactive : '', ); @@ -31,7 +31,7 @@ Button.propTypes = { children: React.PropTypes.node, className: React.PropTypes.string, disabled: React.PropTypes.bool, - secundary: React.PropTypes.bool, + secondary: React.PropTypes.bool, style: React.PropTypes.object }; diff --git a/ui/src/components/button/readme.md b/ui/src/components/button/readme.md index 5a7d6610..c004d9c4 100644 --- a/ui/src/components/button/readme.md +++ b/ui/src/components/button/readme.md @@ -22,7 +22,7 @@ nmodule.exports = ReactDOM.renderToString( - diff --git a/ui/src/components/button/style.css b/ui/src/components/button/style.css index 1ccdca91..7f33cafe 100644 --- a/ui/src/components/button/style.css +++ b/ui/src/components/button/style.css @@ -11,7 +11,7 @@ color: #FFFFFF; } - &.secundary { + &.secondary { background: #FFFFFF; border: 1px solid #D8D8D8; color: #646464;