blob: b8c6c2c7288fc072375fe63dd257ed980936f652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*
* Copyright (c) 2017 ThoughtWorks, Inc.
*
* Pixelated is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pixelated is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
*/
import React from 'react';
import FlatButton from 'material-ui/FlatButton';
import FontIcon from 'material-ui/FontIcon';
import { grey500 } from 'material-ui/styles/colors';
const labelStyle = {
textTransform: 'none',
verticalAlign: 'middle'
};
const iconStyle = {
marginRight: 0
};
const flatButtonStyle = {
minWidth: 0,
verticalAlign: 'top'
};
const SubmitFlatButton = ({ name, buttonText, fontIconClass }) => (
<FlatButton
name={name}
type='submit'
hoverColor='transparent'
style={flatButtonStyle}
labelPosition='before'
label={buttonText}
labelStyle={labelStyle}
aria-label={buttonText}
title={buttonText}
icon={<FontIcon className={fontIconClass} color={grey500} style={iconStyle} />}
/>
);
SubmitFlatButton.propTypes = {
name: React.PropTypes.string.isRequired,
buttonText: React.PropTypes.string.isRequired,
fontIconClass: React.PropTypes.string.isRequired
};
export default SubmitFlatButton;
|