save button
parent
c7b8324ef0
commit
204461543f
|
@ -6,6 +6,7 @@ import PageTitle from "../../../../components/PageTitle";
|
|||
import LanguageContainer from "./LanguageContainer";
|
||||
import TextField from "@material-ui/core/TextField";
|
||||
import Autocomplete from "@material-ui/lab/Autocomplete";
|
||||
import SaveIcon from "@material-ui/icons/Save";
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
root: {
|
||||
|
@ -49,7 +50,14 @@ const AppearancePage = () => {
|
|||
/>
|
||||
</CardContent>
|
||||
<CardActions>
|
||||
<Button size="small">Save</Button>
|
||||
<Button
|
||||
variant="contained"
|
||||
color="primary"
|
||||
size="small"
|
||||
startIcon={<SaveIcon />}
|
||||
>
|
||||
Save
|
||||
</Button>
|
||||
</CardActions>
|
||||
</Card>
|
||||
</>
|
||||
|
|
Loading…
Reference in New Issue