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,
|
||||
tags: PropTypes.arrayOf(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']),
|
||||
twitter(props, propName, componentName) {
|
||||
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.',
|
||||
url: 'https://yesbhautik.co.in/uses',
|
||||
emoji: '🍀',
|
||||
country: 'in',
|
||||
country: '🇮🇳',
|
||||
twitter: '@yesbhautik',
|
||||
computer: 'apple',
|
||||
phone: 'android',
|
||||
|
|
@ -5532,8 +5532,8 @@ module.exports = [
|
|||
url: 'https://www.michaelkitzman.com/uses',
|
||||
emoji: '🤔',
|
||||
country: '🇺🇸',
|
||||
computer: 'mac',
|
||||
phone: 'ios',
|
||||
computer: 'apple',
|
||||
phone: 'iphone',
|
||||
tags: [
|
||||
'Frontend',
|
||||
'Web Developer',
|
||||
|
|
@ -11331,7 +11331,7 @@ module.exports = [
|
|||
'An aspiring financial data analyst, seeking new projects and opportunities',
|
||||
url: 'https://the-quach.com/uses/',
|
||||
emoji: '🔮',
|
||||
country: 'ca',
|
||||
country: '🇨🇦',
|
||||
computer: 'apple',
|
||||
phone: 'iphone',
|
||||
tags: [
|
||||
|
|
@ -18553,7 +18553,7 @@ module.exports = [
|
|||
'Full-Stack Developer from Germany with a focus on frontend and build processes/tooling.',
|
||||
url: 'https://pixelde.su/uses',
|
||||
emoji: '🎁',
|
||||
country: 'de',
|
||||
country: '🇩🇪',
|
||||
computer: 'windows',
|
||||
phone: 'iphone',
|
||||
tags: [
|
||||
|
|
@ -19185,8 +19185,8 @@ module.exports = [
|
|||
twitter: '@albertogalca',
|
||||
emoji: '🤘🏼',
|
||||
country: '🇪🇸',
|
||||
computer: 'mac',
|
||||
phone: 'ios',
|
||||
computer: 'apple',
|
||||
phone: 'iphone',
|
||||
tags: [
|
||||
'Bear',
|
||||
'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 linux from '../images/linux.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