├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .storybook-native ├── addons.js ├── index.js ├── rn-addons.js └── stories │ ├── Button │ ├── index.android.js │ └── index.ios.js │ ├── CenterView │ ├── index.js │ └── style.js │ ├── Welcome │ └── index.js │ └── index.js ├── .storybook ├── addons.js ├── config.js └── webpack.config.js ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── SFProDisplay Bold.ttf │ │ │ ├── SFProDisplay Regular.ttf │ │ │ ├── SFProDisplay Semibold.ttf │ │ │ └── SFProText Bold.ttf │ │ ├── java │ │ └── com │ │ │ └── primerdemo │ │ │ ├── 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 ├── assets └── fonts │ ├── SFProDisplay Bold.ttf │ ├── SFProDisplay Regular.ttf │ ├── SFProDisplay Semibold.ttf │ └── SFProText Bold.ttf ├── babel.config.js ├── figma.d.ts ├── figma.webpack.config.js ├── figma.webpack.ui.config.js ├── images.d.ts ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── PrimerDemo-tvOS │ └── Info.plist ├── PrimerDemo-tvOSTests │ └── Info.plist ├── PrimerDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── PrimerDemo-tvOS.xcscheme │ │ └── PrimerDemo.xcscheme ├── PrimerDemo.xcworkspace │ └── contents.xcworkspacedata ├── PrimerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── PrimerDemoTests │ ├── Info.plist │ └── PrimerDemoTests.m ├── manifest.json ├── metro.config.js ├── now.json ├── package.json ├── src ├── App.tsx ├── code.tsx ├── components │ ├── buttons │ │ └── index.stories.tsx │ ├── common-button │ │ └── CommonButton.ts │ ├── danger-button │ │ └── DangerButton.tsx │ ├── default-button │ │ └── DefaultButton.tsx │ ├── flash │ │ ├── Flash.tsx │ │ ├── FlashText.tsx │ │ ├── FlashType.ts │ │ └── index.stories.tsx │ ├── icons │ │ ├── Broadcast.tsx │ │ ├── Browser.tsx │ │ ├── CircuitBoard.tsx │ │ ├── Code.tsx │ │ ├── Database.tsx │ │ ├── Dependent.tsx │ │ ├── Diff.tsx │ │ ├── DiffAdded.tsx │ │ ├── DiffIgnored.tsx │ │ ├── DiffModified.tsx │ │ ├── DiffRemoved.tsx │ │ ├── DiffRenamed.tsx │ │ ├── Eye.tsx │ │ ├── EyeClosed.tsx │ │ ├── File.tsx │ │ ├── FileBinary.tsx │ │ ├── FileCode.tsx │ │ ├── FileDirectory.tsx │ │ ├── FileMedia.tsx │ │ ├── FilePdf.tsx │ │ ├── FileSubmodule.tsx │ │ ├── FileSymlinkDirectory.tsx │ │ ├── FileSymlinkFile.tsx │ │ ├── FileZip.tsx │ │ ├── Gist.tsx │ │ ├── GistLogo.tsx │ │ ├── GistSecret.tsx │ │ ├── GitBranch.tsx │ │ ├── GitCommit.tsx │ │ ├── GitCompare.tsx │ │ ├── GitHubLogo.tsx │ │ ├── GitHubMark.tsx │ │ ├── GitMerge.tsx │ │ ├── GitPullRequest.tsx │ │ ├── Hubot.tsx │ │ ├── Icon.figma.tsx │ │ ├── Icon.tsx │ │ ├── Icon.web.tsx │ │ ├── IssueClosed.tsx │ │ ├── IssueOpened.tsx │ │ ├── IssueReopened.tsx │ │ ├── Jersey.tsx │ │ ├── Keyboard.tsx │ │ ├── Markdown.tsx │ │ ├── Mirror.tsx │ │ ├── NoNewLine.tsx │ │ ├── Octoface.tsx │ │ ├── Organization.tsx │ │ ├── Paintcan.tsx │ │ ├── Person.tsx │ │ ├── RadioTower.tsx │ │ ├── Repo.tsx │ │ ├── RepoClone.tsx │ │ ├── RepoForcePush.tsx │ │ ├── RepoForked.tsx │ │ ├── RepoPull.tsx │ │ ├── RepoPush.tsx │ │ ├── RepoTemplate.tsx │ │ ├── RepoTemplatePrivate.tsx │ │ ├── RequestChanges.tsx │ │ ├── Rss.tsx │ │ ├── Ruby.tsx │ │ ├── Server.tsx │ │ ├── Smiley.tsx │ │ ├── Terminal.tsx │ │ ├── Thumbsdown.tsx │ │ ├── Thumbsup.tsx │ │ ├── Versions.tsx │ │ ├── Workflow.tsx │ │ ├── WorkflowAll.tsx │ │ ├── icons │ │ │ ├── broadcast.svg │ │ │ ├── browser.svg │ │ │ ├── circuit-board.svg │ │ │ ├── code.svg │ │ │ ├── database.svg │ │ │ ├── dependent.svg │ │ │ ├── diff-added.svg │ │ │ ├── diff-ignored.svg │ │ │ ├── diff-modified.svg │ │ │ ├── diff-removed.svg │ │ │ ├── diff-renamed.svg │ │ │ ├── diff.svg │ │ │ ├── eye-closed.svg │ │ │ ├── eye.svg │ │ │ ├── file-binary.svg │ │ │ ├── file-code.svg │ │ │ ├── file-directory.svg │ │ │ ├── file-media.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-submodule.svg │ │ │ ├── file-symlink-directory.svg │ │ │ ├── file-symlink-file.svg │ │ │ ├── file-zip.svg │ │ │ ├── file.svg │ │ │ ├── gist-secret.svg │ │ │ ├── gist.svg │ │ │ ├── git-branch.svg │ │ │ ├── git-commit.svg │ │ │ ├── git-compare.svg │ │ │ ├── git-merge.svg │ │ │ ├── git-pull-request.svg │ │ │ ├── hubot.svg │ │ │ ├── issue-closed.svg │ │ │ ├── issue-opened.svg │ │ │ ├── issue-reopened.svg │ │ │ ├── jersey.svg │ │ │ ├── keyboard.svg │ │ │ ├── logo-gist.svg │ │ │ ├── logo-github.svg │ │ │ ├── mark-github.svg │ │ │ ├── markdown.svg │ │ │ ├── mirror.svg │ │ │ ├── no-newline.svg │ │ │ ├── octoface.svg │ │ │ ├── organization.svg │ │ │ ├── paintcan.svg │ │ │ ├── person.svg │ │ │ ├── radio-tower.svg │ │ │ ├── repo-clone.svg │ │ │ ├── repo-force-push.svg │ │ │ ├── repo-forked.svg │ │ │ ├── repo-pull.svg │ │ │ ├── repo-push.svg │ │ │ ├── repo-template-private.svg │ │ │ ├── repo-template.svg │ │ │ ├── repo.svg │ │ │ ├── request-changes.svg │ │ │ ├── rss.svg │ │ │ ├── ruby.svg │ │ │ ├── server.svg │ │ │ ├── smiley.svg │ │ │ ├── terminal.svg │ │ │ ├── thumbsdown.svg │ │ │ ├── thumbsup.svg │ │ │ ├── versions.svg │ │ │ ├── workflow-all.svg │ │ │ └── workflow.svg │ │ └── index.stories.tsx │ ├── outline-button │ │ └── OutlineButton.tsx │ ├── primary-button │ │ └── PrimaryButton.tsx │ ├── storybook-decorators │ │ └── DefaultBackground.tsx │ ├── styleguide-color │ │ └── StyleguideColor.tsx │ ├── styleguide-font │ │ └── StyleguideFont.tsx │ ├── styleguide-label │ │ └── StyleguideLabel.tsx │ ├── styleguide-separator │ │ ├── StyleguideSeparatorWrapper.tsx │ │ └── StyleguideSeperator.tsx │ ├── styleguide-spacer │ │ └── StyleguideSpacer.tsx │ └── styleguide-typography │ │ ├── TypographyContainer.tsx │ │ └── styleguideTypography.ts ├── fonts │ ├── SFProDisplay-Bold.eot │ ├── SFProDisplay-Bold.ttf │ ├── SFProDisplay-Bold.woff │ ├── SFProDisplay-Bold.woff2 │ ├── SFProDisplay-Regular.eot │ ├── SFProDisplay-Regular.ttf │ ├── SFProDisplay-Regular.woff │ ├── SFProDisplay-Regular.woff2 │ ├── SFProDisplay-Semibold.eot │ ├── SFProDisplay-Semibold.ttf │ ├── SFProDisplay-Semibold.woff │ ├── SFProDisplay-Semibold.woff2 │ └── SFProText-Bold.ttf ├── frames │ ├── styleguide-1-0 │ │ └── Styleguide10.tsx │ ├── styleguide-2-0 │ │ └── Styleguide20.tsx │ └── styleguide-3-0 │ │ └── Styleguide30.tsx ├── helpers │ ├── WrapToWebButton.tsx │ └── button.css ├── hooks │ ├── useFocus.ts │ └── useHover.ts ├── styles │ ├── fonts.css │ └── reset.css ├── tokens │ ├── colors.ts │ ├── spacingScale.ts │ └── typography.ts ├── ui.html ├── ui.tsx └── wrappers │ └── button │ ├── Button.android.tsx │ ├── Button.ios.tsx │ ├── Button.tsx │ ├── Button.web.tsx │ └── ButtonProps.ts ├── tsconfig.json ├── ui.html └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.storybook-native/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/addons.js -------------------------------------------------------------------------------- /.storybook-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/index.js -------------------------------------------------------------------------------- /.storybook-native/rn-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/rn-addons.js -------------------------------------------------------------------------------- /.storybook-native/stories/Button/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/stories/Button/index.android.js -------------------------------------------------------------------------------- /.storybook-native/stories/Button/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/stories/Button/index.ios.js -------------------------------------------------------------------------------- /.storybook-native/stories/CenterView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/stories/CenterView/index.js -------------------------------------------------------------------------------- /.storybook-native/stories/CenterView/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/stories/CenterView/style.js -------------------------------------------------------------------------------- /.storybook-native/stories/Welcome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/stories/Welcome/index.js -------------------------------------------------------------------------------- /.storybook-native/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook-native/stories/index.js -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFProDisplay Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/assets/fonts/SFProDisplay Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFProDisplay Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/assets/fonts/SFProDisplay Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFProDisplay Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/assets/fonts/SFProDisplay Semibold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFProText Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/assets/fonts/SFProText Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/primerdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/java/com/primerdemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/primerdemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/java/com/primerdemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/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/react-figma/PrimerDemo/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/SFProDisplay Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/assets/fonts/SFProDisplay Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/SFProDisplay Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/assets/fonts/SFProDisplay Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/SFProDisplay Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/assets/fonts/SFProDisplay Semibold.ttf -------------------------------------------------------------------------------- /assets/fonts/SFProText Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/assets/fonts/SFProText Bold.ttf -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/babel.config.js -------------------------------------------------------------------------------- /figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/figma.d.ts -------------------------------------------------------------------------------- /figma.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/figma.webpack.config.js -------------------------------------------------------------------------------- /figma.webpack.ui.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/figma.webpack.ui.config.js -------------------------------------------------------------------------------- /images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/images.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | export default from './.storybook-native'; 3 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/PrimerDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/PrimerDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/PrimerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/PrimerDemo.xcodeproj/xcshareddata/xcschemes/PrimerDemo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo.xcodeproj/xcshareddata/xcschemes/PrimerDemo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/PrimerDemo.xcodeproj/xcshareddata/xcschemes/PrimerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo.xcodeproj/xcshareddata/xcschemes/PrimerDemo.xcscheme -------------------------------------------------------------------------------- /ios/PrimerDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/PrimerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/PrimerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/PrimerDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/PrimerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/PrimerDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/PrimerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/Info.plist -------------------------------------------------------------------------------- /ios/PrimerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemo/main.m -------------------------------------------------------------------------------- /ios/PrimerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemoTests/Info.plist -------------------------------------------------------------------------------- /ios/PrimerDemoTests/PrimerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ios/PrimerDemoTests/PrimerDemoTests.m -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/manifest.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/metro.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/code.tsx -------------------------------------------------------------------------------- /src/components/buttons/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/buttons/index.stories.tsx -------------------------------------------------------------------------------- /src/components/common-button/CommonButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/common-button/CommonButton.ts -------------------------------------------------------------------------------- /src/components/danger-button/DangerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/danger-button/DangerButton.tsx -------------------------------------------------------------------------------- /src/components/default-button/DefaultButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/default-button/DefaultButton.tsx -------------------------------------------------------------------------------- /src/components/flash/Flash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/flash/Flash.tsx -------------------------------------------------------------------------------- /src/components/flash/FlashText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/flash/FlashText.tsx -------------------------------------------------------------------------------- /src/components/flash/FlashType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/flash/FlashType.ts -------------------------------------------------------------------------------- /src/components/flash/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/flash/index.stories.tsx -------------------------------------------------------------------------------- /src/components/icons/Broadcast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Broadcast.tsx -------------------------------------------------------------------------------- /src/components/icons/Browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Browser.tsx -------------------------------------------------------------------------------- /src/components/icons/CircuitBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/CircuitBoard.tsx -------------------------------------------------------------------------------- /src/components/icons/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Code.tsx -------------------------------------------------------------------------------- /src/components/icons/Database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Database.tsx -------------------------------------------------------------------------------- /src/components/icons/Dependent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Dependent.tsx -------------------------------------------------------------------------------- /src/components/icons/Diff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Diff.tsx -------------------------------------------------------------------------------- /src/components/icons/DiffAdded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/DiffAdded.tsx -------------------------------------------------------------------------------- /src/components/icons/DiffIgnored.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/DiffIgnored.tsx -------------------------------------------------------------------------------- /src/components/icons/DiffModified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/DiffModified.tsx -------------------------------------------------------------------------------- /src/components/icons/DiffRemoved.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/DiffRemoved.tsx -------------------------------------------------------------------------------- /src/components/icons/DiffRenamed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/DiffRenamed.tsx -------------------------------------------------------------------------------- /src/components/icons/Eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Eye.tsx -------------------------------------------------------------------------------- /src/components/icons/EyeClosed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/EyeClosed.tsx -------------------------------------------------------------------------------- /src/components/icons/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/File.tsx -------------------------------------------------------------------------------- /src/components/icons/FileBinary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileBinary.tsx -------------------------------------------------------------------------------- /src/components/icons/FileCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileCode.tsx -------------------------------------------------------------------------------- /src/components/icons/FileDirectory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileDirectory.tsx -------------------------------------------------------------------------------- /src/components/icons/FileMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileMedia.tsx -------------------------------------------------------------------------------- /src/components/icons/FilePdf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FilePdf.tsx -------------------------------------------------------------------------------- /src/components/icons/FileSubmodule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileSubmodule.tsx -------------------------------------------------------------------------------- /src/components/icons/FileSymlinkDirectory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileSymlinkDirectory.tsx -------------------------------------------------------------------------------- /src/components/icons/FileSymlinkFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileSymlinkFile.tsx -------------------------------------------------------------------------------- /src/components/icons/FileZip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/FileZip.tsx -------------------------------------------------------------------------------- /src/components/icons/Gist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Gist.tsx -------------------------------------------------------------------------------- /src/components/icons/GistLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GistLogo.tsx -------------------------------------------------------------------------------- /src/components/icons/GistSecret.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GistSecret.tsx -------------------------------------------------------------------------------- /src/components/icons/GitBranch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitBranch.tsx -------------------------------------------------------------------------------- /src/components/icons/GitCommit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitCommit.tsx -------------------------------------------------------------------------------- /src/components/icons/GitCompare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitCompare.tsx -------------------------------------------------------------------------------- /src/components/icons/GitHubLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitHubLogo.tsx -------------------------------------------------------------------------------- /src/components/icons/GitHubMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitHubMark.tsx -------------------------------------------------------------------------------- /src/components/icons/GitMerge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitMerge.tsx -------------------------------------------------------------------------------- /src/components/icons/GitPullRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/GitPullRequest.tsx -------------------------------------------------------------------------------- /src/components/icons/Hubot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Hubot.tsx -------------------------------------------------------------------------------- /src/components/icons/Icon.figma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Icon.figma.tsx -------------------------------------------------------------------------------- /src/components/icons/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Icon.tsx -------------------------------------------------------------------------------- /src/components/icons/Icon.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Icon.web.tsx -------------------------------------------------------------------------------- /src/components/icons/IssueClosed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/IssueClosed.tsx -------------------------------------------------------------------------------- /src/components/icons/IssueOpened.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/IssueOpened.tsx -------------------------------------------------------------------------------- /src/components/icons/IssueReopened.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/IssueReopened.tsx -------------------------------------------------------------------------------- /src/components/icons/Jersey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Jersey.tsx -------------------------------------------------------------------------------- /src/components/icons/Keyboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Keyboard.tsx -------------------------------------------------------------------------------- /src/components/icons/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Markdown.tsx -------------------------------------------------------------------------------- /src/components/icons/Mirror.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Mirror.tsx -------------------------------------------------------------------------------- /src/components/icons/NoNewLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/NoNewLine.tsx -------------------------------------------------------------------------------- /src/components/icons/Octoface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Octoface.tsx -------------------------------------------------------------------------------- /src/components/icons/Organization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Organization.tsx -------------------------------------------------------------------------------- /src/components/icons/Paintcan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Paintcan.tsx -------------------------------------------------------------------------------- /src/components/icons/Person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Person.tsx -------------------------------------------------------------------------------- /src/components/icons/RadioTower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RadioTower.tsx -------------------------------------------------------------------------------- /src/components/icons/Repo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Repo.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoClone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoClone.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoForcePush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoForcePush.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoForked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoForked.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoPull.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoPull.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoPush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoPush.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoTemplate.tsx -------------------------------------------------------------------------------- /src/components/icons/RepoTemplatePrivate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RepoTemplatePrivate.tsx -------------------------------------------------------------------------------- /src/components/icons/RequestChanges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/RequestChanges.tsx -------------------------------------------------------------------------------- /src/components/icons/Rss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Rss.tsx -------------------------------------------------------------------------------- /src/components/icons/Ruby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Ruby.tsx -------------------------------------------------------------------------------- /src/components/icons/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Server.tsx -------------------------------------------------------------------------------- /src/components/icons/Smiley.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Smiley.tsx -------------------------------------------------------------------------------- /src/components/icons/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Terminal.tsx -------------------------------------------------------------------------------- /src/components/icons/Thumbsdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Thumbsdown.tsx -------------------------------------------------------------------------------- /src/components/icons/Thumbsup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Thumbsup.tsx -------------------------------------------------------------------------------- /src/components/icons/Versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Versions.tsx -------------------------------------------------------------------------------- /src/components/icons/Workflow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/Workflow.tsx -------------------------------------------------------------------------------- /src/components/icons/WorkflowAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/WorkflowAll.tsx -------------------------------------------------------------------------------- /src/components/icons/icons/broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/broadcast.svg -------------------------------------------------------------------------------- /src/components/icons/icons/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/browser.svg -------------------------------------------------------------------------------- /src/components/icons/icons/circuit-board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/circuit-board.svg -------------------------------------------------------------------------------- /src/components/icons/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/code.svg -------------------------------------------------------------------------------- /src/components/icons/icons/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/database.svg -------------------------------------------------------------------------------- /src/components/icons/icons/dependent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/dependent.svg -------------------------------------------------------------------------------- /src/components/icons/icons/diff-added.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/diff-added.svg -------------------------------------------------------------------------------- /src/components/icons/icons/diff-ignored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/diff-ignored.svg -------------------------------------------------------------------------------- /src/components/icons/icons/diff-modified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/diff-modified.svg -------------------------------------------------------------------------------- /src/components/icons/icons/diff-removed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/diff-removed.svg -------------------------------------------------------------------------------- /src/components/icons/icons/diff-renamed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/diff-renamed.svg -------------------------------------------------------------------------------- /src/components/icons/icons/diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/diff.svg -------------------------------------------------------------------------------- /src/components/icons/icons/eye-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/eye-closed.svg -------------------------------------------------------------------------------- /src/components/icons/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/eye.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-binary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-binary.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-code.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-directory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-directory.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-media.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-pdf.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-submodule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-submodule.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-symlink-directory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-symlink-directory.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-symlink-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-symlink-file.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file-zip.svg -------------------------------------------------------------------------------- /src/components/icons/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/file.svg -------------------------------------------------------------------------------- /src/components/icons/icons/gist-secret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/gist-secret.svg -------------------------------------------------------------------------------- /src/components/icons/icons/gist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/gist.svg -------------------------------------------------------------------------------- /src/components/icons/icons/git-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/git-branch.svg -------------------------------------------------------------------------------- /src/components/icons/icons/git-commit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/git-commit.svg -------------------------------------------------------------------------------- /src/components/icons/icons/git-compare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/git-compare.svg -------------------------------------------------------------------------------- /src/components/icons/icons/git-merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/git-merge.svg -------------------------------------------------------------------------------- /src/components/icons/icons/git-pull-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/git-pull-request.svg -------------------------------------------------------------------------------- /src/components/icons/icons/hubot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/hubot.svg -------------------------------------------------------------------------------- /src/components/icons/icons/issue-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/issue-closed.svg -------------------------------------------------------------------------------- /src/components/icons/icons/issue-opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/issue-opened.svg -------------------------------------------------------------------------------- /src/components/icons/icons/issue-reopened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/issue-reopened.svg -------------------------------------------------------------------------------- /src/components/icons/icons/jersey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/jersey.svg -------------------------------------------------------------------------------- /src/components/icons/icons/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/keyboard.svg -------------------------------------------------------------------------------- /src/components/icons/icons/logo-gist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/logo-gist.svg -------------------------------------------------------------------------------- /src/components/icons/icons/logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/logo-github.svg -------------------------------------------------------------------------------- /src/components/icons/icons/mark-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/mark-github.svg -------------------------------------------------------------------------------- /src/components/icons/icons/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/markdown.svg -------------------------------------------------------------------------------- /src/components/icons/icons/mirror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/mirror.svg -------------------------------------------------------------------------------- /src/components/icons/icons/no-newline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/no-newline.svg -------------------------------------------------------------------------------- /src/components/icons/icons/octoface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/octoface.svg -------------------------------------------------------------------------------- /src/components/icons/icons/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/organization.svg -------------------------------------------------------------------------------- /src/components/icons/icons/paintcan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/paintcan.svg -------------------------------------------------------------------------------- /src/components/icons/icons/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/person.svg -------------------------------------------------------------------------------- /src/components/icons/icons/radio-tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/radio-tower.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-clone.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-force-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-force-push.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-forked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-forked.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-pull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-pull.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-push.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-template-private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-template-private.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo-template.svg -------------------------------------------------------------------------------- /src/components/icons/icons/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/repo.svg -------------------------------------------------------------------------------- /src/components/icons/icons/request-changes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/request-changes.svg -------------------------------------------------------------------------------- /src/components/icons/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/rss.svg -------------------------------------------------------------------------------- /src/components/icons/icons/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/ruby.svg -------------------------------------------------------------------------------- /src/components/icons/icons/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/server.svg -------------------------------------------------------------------------------- /src/components/icons/icons/smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/smiley.svg -------------------------------------------------------------------------------- /src/components/icons/icons/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/terminal.svg -------------------------------------------------------------------------------- /src/components/icons/icons/thumbsdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/thumbsdown.svg -------------------------------------------------------------------------------- /src/components/icons/icons/thumbsup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/thumbsup.svg -------------------------------------------------------------------------------- /src/components/icons/icons/versions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/versions.svg -------------------------------------------------------------------------------- /src/components/icons/icons/workflow-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/workflow-all.svg -------------------------------------------------------------------------------- /src/components/icons/icons/workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/icons/workflow.svg -------------------------------------------------------------------------------- /src/components/icons/index.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/icons/index.stories.tsx -------------------------------------------------------------------------------- /src/components/outline-button/OutlineButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/outline-button/OutlineButton.tsx -------------------------------------------------------------------------------- /src/components/primary-button/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/primary-button/PrimaryButton.tsx -------------------------------------------------------------------------------- /src/components/storybook-decorators/DefaultBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/storybook-decorators/DefaultBackground.tsx -------------------------------------------------------------------------------- /src/components/styleguide-color/StyleguideColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-color/StyleguideColor.tsx -------------------------------------------------------------------------------- /src/components/styleguide-font/StyleguideFont.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-font/StyleguideFont.tsx -------------------------------------------------------------------------------- /src/components/styleguide-label/StyleguideLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-label/StyleguideLabel.tsx -------------------------------------------------------------------------------- /src/components/styleguide-separator/StyleguideSeparatorWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-separator/StyleguideSeparatorWrapper.tsx -------------------------------------------------------------------------------- /src/components/styleguide-separator/StyleguideSeperator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-separator/StyleguideSeperator.tsx -------------------------------------------------------------------------------- /src/components/styleguide-spacer/StyleguideSpacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-spacer/StyleguideSpacer.tsx -------------------------------------------------------------------------------- /src/components/styleguide-typography/TypographyContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-typography/TypographyContainer.tsx -------------------------------------------------------------------------------- /src/components/styleguide-typography/styleguideTypography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/components/styleguide-typography/styleguideTypography.ts -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Bold.eot -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Bold.woff -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Regular.eot -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Regular.woff -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Semibold.eot -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Semibold.ttf -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Semibold.woff -------------------------------------------------------------------------------- /src/fonts/SFProDisplay-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProDisplay-Semibold.woff2 -------------------------------------------------------------------------------- /src/fonts/SFProText-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/fonts/SFProText-Bold.ttf -------------------------------------------------------------------------------- /src/frames/styleguide-1-0/Styleguide10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/frames/styleguide-1-0/Styleguide10.tsx -------------------------------------------------------------------------------- /src/frames/styleguide-2-0/Styleguide20.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/frames/styleguide-2-0/Styleguide20.tsx -------------------------------------------------------------------------------- /src/frames/styleguide-3-0/Styleguide30.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/frames/styleguide-3-0/Styleguide30.tsx -------------------------------------------------------------------------------- /src/helpers/WrapToWebButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/helpers/WrapToWebButton.tsx -------------------------------------------------------------------------------- /src/helpers/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/helpers/button.css -------------------------------------------------------------------------------- /src/hooks/useFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/hooks/useFocus.ts -------------------------------------------------------------------------------- /src/hooks/useHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/hooks/useHover.ts -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/styles/reset.css -------------------------------------------------------------------------------- /src/tokens/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/tokens/colors.ts -------------------------------------------------------------------------------- /src/tokens/spacingScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/tokens/spacingScale.ts -------------------------------------------------------------------------------- /src/tokens/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/tokens/typography.ts -------------------------------------------------------------------------------- /src/ui.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /src/wrappers/button/Button.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/wrappers/button/Button.android.tsx -------------------------------------------------------------------------------- /src/wrappers/button/Button.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/wrappers/button/Button.ios.tsx -------------------------------------------------------------------------------- /src/wrappers/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/wrappers/button/Button.tsx -------------------------------------------------------------------------------- /src/wrappers/button/Button.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/wrappers/button/Button.web.tsx -------------------------------------------------------------------------------- /src/wrappers/button/ButtonProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/src/wrappers/button/ButtonProps.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/ui.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/PrimerDemo/HEAD/yarn.lock --------------------------------------------------------------------------------