Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Add 🧵 emoji #1106

Merged
merged 5 commits into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions src/__tests__/__snapshots__/pages.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3510,6 +3510,47 @@ exports[`Pages Index should render the page 1`] = `
</div>
</div>
</article>
<article
className="emoji col-xs-12 col-sm-6 col-md-3"
style={
Object {
"--emojiColor": "#ffbe7b",
}
}
>
<div
className="card "
>
<header
className="cardHeader"
>
<button
className="gitmoji-clipboard-emoji gitmoji"
data-clipboard-text="🧵"
type="button"
>
🧵
</button>
</header>
<div
className="gitmojiInfo"
>
<button
className="gitmoji-clipboard-code gitmojiCode"
data-clipboard-text=":thread:"
tabIndex="-1"
type="button"
>
<code>
:thread:
</code>
</button>
<p>
Add or update code related to multithreading or concurrency.
</p>
</div>
</div>
</article>
</div>
</main>
`;
Expand Down
1 change: 1 addition & 0 deletions src/components/GitmojiList/emojiColorsMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,5 @@ export default {
bricks: '#ff6723',
technologist: '#86B837',
'money-with-wings': '#b3c0b1',
thread: '#ffbe7b',
}
8 changes: 8 additions & 0 deletions src/data/gitmojis.json
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,14 @@
"description": "Add sponsorships or money related infrastructure.",
"name": "money-with-wings",
"semver": null
},
{
"emoji": "🧵",
"entity": "&#x1F9F5;",
"code": ":thread:",
"description": "Add or update code related to multithreading or concurrency.",
"name": "thread",
"semver": null
}
]
}