Skip to content

Commit

Permalink
Emojis as images
Browse files Browse the repository at this point in the history
  • Loading branch information
nacmartin committed Mar 12, 2023
1 parent 45d3903 commit 6df75f1
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions examples/ui-react/src/Instructions.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import thumbsDown from "./images/thumbs-down.png";
import thumbsUp from "./images/thumbs-up.png";
import ily from "./images/love-you-gesture.png";
import victoryHand from "./images/victory-hand.png";
import raisedHand from "./images/raised-hand.png";

export function Instructions() {
return (
<div style={{ width: 1280, margin: "0 auto", paddingBottom: 100 }}>
Expand Down Expand Up @@ -28,15 +34,28 @@ export function Instructions() {
<h3>Gestures</h3>
<p>You can use some gestures:</p>
<ul>
<li>🤟: To play/stop last selected video.</li>
<li>
✋: To zoom in/out (Incline palm forward/backward in an angle with the
wrist).
<img src={ily} height="24px" />: To play/stop last selected video.
</li>
<li>
<img src={raisedHand} height="24px" />: To zoom in/out (Incline palm
forward/backward in an angle with the wrist).
</li>
<li>
<img src={thumbsUp} height="24px" />: Throw last selected video far
away above the window.
</li>
<li>
<img src={thumbsUp} height="24px" />: Throw last selected video far
away below the window.
</li>
<li>
<img src={thumbsDown} height="24px" />: Throw last selected video far
away below the window.
</li>
<li>
<img src={victoryHand} height="24px" />: Confetti!
</li>
<li>👍: Throw last selected video far away above the window.</li>
<li>👎: Throw last selected video far away below the window.</li>
<li>👎: Throw last selected video far away below the window.</li>
<li>✌️: Confetti!</li>
</ul>
<h2>Code</h2>
This is an example of usage of{" "}
Expand Down
Binary file added examples/ui-react/src/images/love-you-gesture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/ui-react/src/images/raised-hand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/ui-react/src/images/thumbs-down.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/ui-react/src/images/thumbs-up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/ui-react/src/images/victory-hand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6df75f1

Please sign in to comment.