summaryrefslogtreecommitdiff
path: root/app/theme/typography.ts
diff options
context:
space:
mode:
authorKirill Rogovoy <[email protected]>2021-07-19 20:06:08 +0300
committerKirill Rogovoy <[email protected]>2021-07-19 20:06:08 +0300
commitf0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch)
tree575c0ff2cbb846252bd2e494c81c396846aab2f6 /app/theme/typography.ts
parent67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff)
Apply Prettier
Diffstat (limited to 'app/theme/typography.ts')
-rw-r--r--app/theme/typography.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/theme/typography.ts b/app/theme/typography.ts
index 5f7de85..1695777 100644
--- a/app/theme/typography.ts
+++ b/app/theme/typography.ts
@@ -1,4 +1,4 @@
-import { Platform } from "react-native"
+import { Platform } from 'react-native'
/**
* You can find a list of available fonts on both iOS and Android here:
@@ -17,15 +17,15 @@ export const typography = {
/**
* The primary font. Used in most places.
*/
- primary: Platform.select({ ios: "Helvetica", android: "normal" }),
+ primary: Platform.select({ ios: 'Helvetica', android: 'normal' }),
/**
* An alternate font used for perhaps titles and stuff.
*/
- secondary: Platform.select({ ios: "Arial", android: "sans-serif" }),
+ secondary: Platform.select({ ios: 'Arial', android: 'sans-serif' }),
/**
* Lets get fancy with a monospace font!
*/
- code: Platform.select({ ios: "Courier", android: "monospace" }),
+ code: Platform.select({ ios: 'Courier', android: 'monospace' }),
}