1/*
2style={{backgroundColor: '#12824C', color: '#FFFFFF'}}
3backgroundColor changes the button color
4color changes the text color
5These examples use Hex to define the color (Green button with white text)
6*/
7
8// Example
9import React from 'react';
10import Button from '@material-ui/core/Button';
11
12const GreenButton = () => {
13 return(
14 <Button
15 style={{backgroundColor: '#12824C', color: '#FFFFFF'}}
16 >Green</Button>
17 )
18}
19
20export default GreenButton;