Replace FlatButton with Button in Retry

This commit is contained in:
Brandon Millman
2018-06-12 14:26:48 -07:00
parent 982391cd7c
commit 084285a760

View File

@@ -1,8 +1,10 @@
import FlatButton from 'material-ui/FlatButton';
import * as React from 'react';
import { Button } from 'ts/components/ui/button';
import { colors } from 'ts/style/colors';
const BUTTON_TEXT = 'reload';
export interface RetryProps {
onRetry: () => void;
}
@@ -13,19 +15,17 @@ export const Retry = (props: RetryProps) => (
Something went wrong.
</div>
<div className="py3">
<FlatButton
label={'reload'}
<Button
type="button"
backgroundColor={colors.black}
labelStyle={{
fontSize: 18,
fontFamily: 'Roboto Mono',
fontWeight: 'lighter',
color: colors.white,
textTransform: 'lowercase',
}}
style={{ width: 280, height: 62, borderRadius: 5 }}
width="290px"
fontColor={colors.white}
fontSize="18px"
fontFamily="Roboto Mono"
onClick={props.onRetry}
/>
>
{BUTTON_TEXT}
</Button>
</div>
</div>
</div>