SemanticButton

This commit is contained in:
oconnorct1 2017-05-09 21:08:05 -04:00
parent f014891288
commit 66843a349d

View File

@ -15,13 +15,13 @@
// along with Parity. If not, see <http://www.gnu.org/licenses/>. // along with Parity. If not, see <http://www.gnu.org/licenses/>.
import React, { PropTypes } from 'react'; import React, { PropTypes } from 'react';
import { Button as ButtonUI } from 'semantic-ui-react'; import { Button as SemanticButton } from 'semantic-ui-react';
import { nodeOrStringProptype } from '@parity/shared/util/proptypes'; import { nodeOrStringProptype } from '@parity/shared/util/proptypes';
export default function Button ({ active, animated, basic, className, color, disabled, fullWidth, icon, label, onClick, primary, size, toggle }) { export default function Button ({ active, animated, basic, className, color, disabled, fullWidth, icon, label, onClick, primary, size, toggle }) {
return ( return (
<ButtonUI <SemanticButton
active={ active } active={ active }
animated={ animated } animated={ animated }
basic={ basic } basic={ basic }