Skip to content

Commit 07aeab3

Browse files
authored
Added buttons for 'Star' and 'Fork' (#1320)
* Added buttons for 'Star' and 'Fork' * Linting
1 parent 39a242d commit 07aeab3

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

docs/app.tsx

+24-3
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,30 @@ class App extends Component<
529529
}}
530530
>
531531
<h1>Runtype Benchmarks</h1>
532-
<a href="https://github.com/moltar/typescript-runtime-type-benchmarks/">
533-
Github Repository
534-
</a>
532+
<div>
533+
<a
534+
class="github-button"
535+
href="https://github.com/moltar/typescript-runtime-type-benchmarks"
536+
data-color-scheme="no-preference: dark; light: dark_dimmed; dark: dark;"
537+
data-icon="octicon-star"
538+
data-size="large"
539+
data-show-count="true"
540+
aria-label="Star moltar/typescript-runtime-type-benchmarks on GitHub"
541+
>
542+
Star
543+
</a>
544+
<a
545+
class="github-button"
546+
href="https://github.com/moltar/typescript-runtime-type-benchmarks/fork"
547+
data-color-scheme="no-preference: dark; light: dark_dimmed; dark: dark;"
548+
data-icon="octicon-repo-forked"
549+
data-size="large"
550+
data-show-count="true"
551+
aria-label="Fork moltar/typescript-runtime-type-benchmarks on GitHub"
552+
>
553+
Fork
554+
</a>
555+
</div>
535556
</div>
536557
<p>
537558
Benchmark Comparison of Packages with Runtime Validation and

docs/dist/app.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<script src="https://unpkg.com/[email protected]" crossorigin></script>
2424
<script src="https://unpkg.com/[email protected]" crossorigin></script>
2525
<script src="https://unpkg.com/preact@10" crossorigin></script>
26+
<script async defer src="https://buttons.github.io/buttons.js"></script>
2627
<script src="dist/app.js"></script>
2728
<script>
2829
define('preact', () => preact)

0 commit comments

Comments
 (0)