Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo committed Dec 4, 2024
1 parent 0978fed commit 99ea7b5
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,15 @@ const Order = ({data}: {data: Swap.Order}) => {
)}
</React.Fragment>
)}

{data.status === 'open' && (
<Button
style={styles.cancelButton}
type={ButtonType.SecondaryText}
title={strings.listOrdersSheetButtonText}
onPress={() => null}
/>
)}
</View>
</View>
)
Expand Down Expand Up @@ -348,6 +357,9 @@ const useStyles = () => {
padding: 0,
justifyContent: 'flex-end',
},
cancelButton: {
...atoms.self_start,
},
})
return {styles, color}
}

0 comments on commit 99ea7b5

Please sign in to comment.