From f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Mon, 19 Jul 2021 20:06:08 +0300 Subject: Apply Prettier --- app/theme/typography.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/theme/typography.ts') 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' }), } -- cgit v1.2.3