25 lines
554 B
JavaScript
25 lines
554 B
JavaScript
export const style = {
|
|
icon: {
|
|
startPaying: '',
|
|
succeedPaying: '',
|
|
close: '',
|
|
startRefunding: '',
|
|
refundAll: '',
|
|
refundPartially: '',
|
|
closeRefund: '',
|
|
stopRefunding: '',
|
|
continuePaying: '',
|
|
},
|
|
color: {
|
|
iState: {
|
|
unpaid: '#48C9B0',
|
|
paid: '#3498DB',
|
|
paying: '#D6EAF8',
|
|
closed: '#5D6D7E',
|
|
refunded: '#FAE5D3',
|
|
partiallyRefunded: '#F0B27A',
|
|
refunding: '#CA6F1E'
|
|
},
|
|
}
|
|
};
|