Skip to content

Commit

Permalink
fix dark mode styles
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBacon committed Jul 22, 2020
1 parent 3b25279 commit 7977adb
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/Emoji.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ export default React.forwardRef(({ navigation, theme, isDark }, ref) => {
/>

<DownloadButton
color={theme.colors.text}
style={{ marginTop: 12 }}
onPress={() => {
generateImagesAsync({ emojiId, image, color });
Expand Down Expand Up @@ -265,13 +266,7 @@ export default React.forwardRef(({ navigation, theme, isDark }, ref) => {

function DownloadButton(props: React.ComponentProps<typeof Button>) {
return (
<Button
{...props}
mode="outlined"
uppercase={false}
color={"#000000"}
icon="download"
>
<Button {...props} mode="outlined" uppercase={false} icon="download">
Download Icon
</Button>
);
Expand Down

0 comments on commit 7977adb

Please sign in to comment.