style: set IconButton stroke colors to comet

fix: replaced edit buttons of the BooleanPropertiesTable component and
Contact Info and Terms & Conditions pages
This commit is contained in:
Liordino Neto 2020-10-28 00:36:54 -03:00 committed by Josh Harvey
parent a1cc7cad13
commit fbd075723a
5 changed files with 40 additions and 27 deletions

View file

@ -6,7 +6,7 @@ import React, { useState, memo } from 'react'
import * as Yup from 'yup'
import PromptWhenDirty from 'src/components/PromptWhenDirty'
import { Link } from 'src/components/buttons'
import { Link, IconButton } from 'src/components/buttons'
import { RadioGroup } from 'src/components/inputs/formik'
import { Table, TableBody, TableRow, TableCell } from 'src/components/table'
import { H4 } from 'src/components/typography'
@ -70,11 +70,11 @@ const BooleanPropertiesTable = memo(
</Link>
</div>
) : (
<div className={classes.transparentButton}>
<button disabled={disabled} onClick={() => setEditing(true)}>
{disabled ? <EditIconDisabled /> : <EditIcon />}
</button>
</div>
<IconButton
className={classes.transparentButton}
onClick={() => setEditing(true)}>
{disabled ? <EditIconDisabled /> : <EditIcon />}
</IconButton>
)}
</div>
<PromptWhenDirty />