feature: add owner's _pending_ bullet icon
This commit is contained in:
parent
92ad62800e
commit
165d0ff0d6
|
@ -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 |
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue