mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Merge pull request #1930 from SayakMukhopadhyay/fix-flag-emojis
Fix emojis for flags, computer and phone names and also add a logo for bsd
This commit is contained in:
commit
02b2b74cc6
4 changed files with 10 additions and 9 deletions
|
|
@ -144,7 +144,7 @@ Person.propTypes = {
|
||||||
description: PropTypes.string,
|
description: PropTypes.string,
|
||||||
tags: PropTypes.arrayOf(PropTypes.string),
|
tags: PropTypes.arrayOf(PropTypes.string),
|
||||||
country: PropTypes.string,
|
country: PropTypes.string,
|
||||||
computer: PropTypes.oneOf(['apple', 'windows', 'linux']),
|
computer: PropTypes.oneOf(['apple', 'windows', 'linux', 'bsd']),
|
||||||
phone: PropTypes.oneOf(['iphone', 'android', 'windowsphone', 'flipphone']),
|
phone: PropTypes.oneOf(['iphone', 'android', 'windowsphone', 'flipphone']),
|
||||||
twitter(props, propName, componentName) {
|
twitter(props, propName, componentName) {
|
||||||
if (!/^@?(\w){1,15}$/.test(props[propName])) {
|
if (!/^@?(\w){1,15}$/.test(props[propName])) {
|
||||||
|
|
|
||||||
14
src/data.js
14
src/data.js
|
|
@ -223,7 +223,7 @@ module.exports = [
|
||||||
description: 'Crafting the future, Today.',
|
description: 'Crafting the future, Today.',
|
||||||
url: 'https://yesbhautik.co.in/uses',
|
url: 'https://yesbhautik.co.in/uses',
|
||||||
emoji: '🍀',
|
emoji: '🍀',
|
||||||
country: 'in',
|
country: '🇮🇳',
|
||||||
twitter: '@yesbhautik',
|
twitter: '@yesbhautik',
|
||||||
computer: 'apple',
|
computer: 'apple',
|
||||||
phone: 'android',
|
phone: 'android',
|
||||||
|
|
@ -5532,8 +5532,8 @@ module.exports = [
|
||||||
url: 'https://www.michaelkitzman.com/uses',
|
url: 'https://www.michaelkitzman.com/uses',
|
||||||
emoji: '🤔',
|
emoji: '🤔',
|
||||||
country: '🇺🇸',
|
country: '🇺🇸',
|
||||||
computer: 'mac',
|
computer: 'apple',
|
||||||
phone: 'ios',
|
phone: 'iphone',
|
||||||
tags: [
|
tags: [
|
||||||
'Frontend',
|
'Frontend',
|
||||||
'Web Developer',
|
'Web Developer',
|
||||||
|
|
@ -11331,7 +11331,7 @@ module.exports = [
|
||||||
'An aspiring financial data analyst, seeking new projects and opportunities',
|
'An aspiring financial data analyst, seeking new projects and opportunities',
|
||||||
url: 'https://the-quach.com/uses/',
|
url: 'https://the-quach.com/uses/',
|
||||||
emoji: '🔮',
|
emoji: '🔮',
|
||||||
country: 'ca',
|
country: '🇨🇦',
|
||||||
computer: 'apple',
|
computer: 'apple',
|
||||||
phone: 'iphone',
|
phone: 'iphone',
|
||||||
tags: [
|
tags: [
|
||||||
|
|
@ -18553,7 +18553,7 @@ module.exports = [
|
||||||
'Full-Stack Developer from Germany with a focus on frontend and build processes/tooling.',
|
'Full-Stack Developer from Germany with a focus on frontend and build processes/tooling.',
|
||||||
url: 'https://pixelde.su/uses',
|
url: 'https://pixelde.su/uses',
|
||||||
emoji: '🎁',
|
emoji: '🎁',
|
||||||
country: 'de',
|
country: '🇩🇪',
|
||||||
computer: 'windows',
|
computer: 'windows',
|
||||||
phone: 'iphone',
|
phone: 'iphone',
|
||||||
tags: [
|
tags: [
|
||||||
|
|
@ -19185,8 +19185,8 @@ module.exports = [
|
||||||
twitter: '@albertogalca',
|
twitter: '@albertogalca',
|
||||||
emoji: '🤘🏼',
|
emoji: '🤘🏼',
|
||||||
country: '🇪🇸',
|
country: '🇪🇸',
|
||||||
computer: 'mac',
|
computer: 'apple',
|
||||||
phone: 'ios',
|
phone: 'iphone',
|
||||||
tags: [
|
tags: [
|
||||||
'Bear',
|
'Bear',
|
||||||
'React',
|
'React',
|
||||||
|
|
|
||||||
BIN
src/images/bsd.png
Normal file
BIN
src/images/bsd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 84 KiB |
|
|
@ -5,5 +5,6 @@ import windows from '../images/windows.svg';
|
||||||
import apple from '../images/apple.svg';
|
import apple from '../images/apple.svg';
|
||||||
import linux from '../images/linux.png';
|
import linux from '../images/linux.png';
|
||||||
import flipphone from '../images/flip-phone.png';
|
import flipphone from '../images/flip-phone.png';
|
||||||
|
import bsd from '../images/bsd.png';
|
||||||
|
|
||||||
export { iphone, android, windowsphone, windows, apple, linux, flipphone };
|
export { iphone, android, windowsphone, windows, apple, linux, flipphone, bsd };
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue