summaryrefslogtreecommitdiff
path: root/app/components/text/text.presets.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/components/text/text.presets.ts
parent67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff)
Apply Prettier
Diffstat (limited to 'app/components/text/text.presets.ts')
-rw-r--r--app/components/text/text.presets.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/components/text/text.presets.ts b/app/components/text/text.presets.ts
index 9622268..4693417 100644
--- a/app/components/text/text.presets.ts
+++ b/app/components/text/text.presets.ts
@@ -1,5 +1,5 @@
-import { TextStyle } from "react-native"
-import { color, typography } from "../../theme"
+import { TextStyle } from 'react-native'
+import { color, typography } from '../../theme'
/**
* All text will start off looking like this.
@@ -24,12 +24,12 @@ export const presets = {
/**
* A bold version of the default text.
*/
- bold: { ...BASE, fontWeight: "bold" } as TextStyle,
+ bold: { ...BASE, fontWeight: 'bold' } as TextStyle,
/**
* Large headers.
*/
- header: { ...BASE, fontSize: 24, fontWeight: "bold" } as TextStyle,
+ header: { ...BASE, fontSize: 24, fontWeight: 'bold' } as TextStyle,
/**
* Field labels that appear on forms above the inputs.