├── .babel.config.js ├── .babelrc ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── reactnativetypescriptstylesexample │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativetypescriptstylesexample │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── docs ├── base_example.png ├── colors_1.png ├── colors_2.png └── typography.png ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── RNStylingTemplate.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ReactNativeTypescriptStylesExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ReactNativeTypescriptStylesExample.xcscheme ├── ReactNativeTypescriptStylesExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ReactNativeTypescriptStylesExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── ReactNativeTypescriptStylesExampleTests │ ├── Info.plist │ └── ReactNativeTypescriptStylesExampleTests.m ├── metro.config.js ├── package.json ├── src ├── BaseExample.tsx ├── ColorExample.tsx ├── TypographyExample.tsx ├── assets │ └── thoughtbot-assets-pack │ │ ├── README.md │ │ ├── circle │ │ └── png │ │ │ ├── robot_only_alternative.png │ │ │ └── robot_only_default.png │ │ ├── horizontal │ │ └── png │ │ │ ├── horizontal_alternative.png │ │ │ └── horizontal_default.png │ │ └── vertical │ │ └── png │ │ ├── vertical_alternative.png │ │ └── vertical_default.png ├── index.tsx └── styles │ ├── buttons.ts │ ├── colors.ts │ ├── forms.ts │ ├── index.ts │ ├── outlines.ts │ ├── sizing.ts │ └── typography.ts ├── tsconfig.json └── yarn.lock /.babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.babel.config.js -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/reactnativetypescriptstylesexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/debug/java/com/reactnativetypescriptstylesexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativetypescriptstylesexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/java/com/reactnativetypescriptstylesexample/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativetypescriptstylesexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/java/com/reactnativetypescriptstylesexample/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/base_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/docs/base_example.png -------------------------------------------------------------------------------- /docs/colors_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/docs/colors_1.png -------------------------------------------------------------------------------- /docs/colors_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/docs/colors_2.png -------------------------------------------------------------------------------- /docs/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/docs/typography.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RNStylingTemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/RNStylingTemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample.xcodeproj/xcshareddata/xcschemes/ReactNativeTypescriptStylesExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample.xcodeproj/xcshareddata/xcschemes/ReactNativeTypescriptStylesExample.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExample/main.m -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExampleTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTypescriptStylesExampleTests/ReactNativeTypescriptStylesExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/ios/ReactNativeTypescriptStylesExampleTests/ReactNativeTypescriptStylesExampleTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/package.json -------------------------------------------------------------------------------- /src/BaseExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/BaseExample.tsx -------------------------------------------------------------------------------- /src/ColorExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/ColorExample.tsx -------------------------------------------------------------------------------- /src/TypographyExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/TypographyExample.tsx -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/README.md -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/circle/png/robot_only_alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/circle/png/robot_only_alternative.png -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/circle/png/robot_only_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/circle/png/robot_only_default.png -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/horizontal/png/horizontal_alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/horizontal/png/horizontal_alternative.png -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/horizontal/png/horizontal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/horizontal/png/horizontal_default.png -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/vertical/png/vertical_alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/vertical/png/vertical_alternative.png -------------------------------------------------------------------------------- /src/assets/thoughtbot-assets-pack/vertical/png/vertical_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/assets/thoughtbot-assets-pack/vertical/png/vertical_default.png -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/styles/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/buttons.ts -------------------------------------------------------------------------------- /src/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/colors.ts -------------------------------------------------------------------------------- /src/styles/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/forms.ts -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/outlines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/outlines.ts -------------------------------------------------------------------------------- /src/styles/sizing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/sizing.ts -------------------------------------------------------------------------------- /src/styles/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/src/styles/typography.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/react-native-typescript-styles-example/HEAD/yarn.lock --------------------------------------------------------------------------------