feature: add owner's _pending_ bullet icon

This commit is contained in:
fernandomg 2020-05-22 23:49:22 -03:00
parent 92ad62800e
commit 165d0ff0d6
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10">
<circle cx="5" cy="5" r="5" fill="#C97C05" fill-rule="evenodd" />
</svg>

After

Width:  |  Height:  |  Size: 161 B

View File

@ -1,4 +1,4 @@
import { boldFont, border, error, primary, secondary, secondaryText, sm } from 'src/theme/variables' import { boldFont, border, error, primary, secondary, secondaryText, sm, warning } from 'src/theme/variables'
export const styles = () => ({ export const styles = () => ({
ownersList: { ownersList: {
@ -29,6 +29,9 @@ export const styles = () => ({
verticalLineCancel: { verticalLineCancel: {
backgroundColor: error, backgroundColor: error,
}, },
verticalPendingAction: {
backgroundColor: warning,
},
icon: { icon: {
marginRight: sm, marginRight: sm,
}, },