-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sync icons * ch * f
- Loading branch information
Showing
7 changed files
with
103 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@status-im/icons': minor | ||
--- | ||
|
||
sync icons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { createIcon } from '../lib/create-icon' | ||
|
||
const SvgSendAudioIcon = createIcon(props => { | ||
return ( | ||
<svg | ||
{...props} | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={props.width} | ||
height={props.height} | ||
fill="none" | ||
viewBox="0 0 20 20" | ||
focusable={false} | ||
aria-hidden={true} | ||
> | ||
<g clipPath="url(#send-audio-icon_svg__a)"> | ||
<circle cx={10} cy={10} r={10} fill="#2A4AF5" /> | ||
<path | ||
fill="#fff" | ||
fillRule="evenodd" | ||
d="m10.095 5.614-.252-.23-.253.23-3.436 3.127.504.555 2.81-2.556v6.968h.75V6.74l2.809 2.556.504-.555-3.436-3.127Z" | ||
clipRule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="send-audio-icon_svg__a"> | ||
<path fill="#fff" d="M0 0h20v20H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default SvgSendAudioIcon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { createIcon } from '../lib/create-icon' | ||
|
||
const SvgTokenMasterIcon = createIcon(props => { | ||
return ( | ||
<svg | ||
{...props} | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={props.width} | ||
height={props.height} | ||
fill="none" | ||
viewBox="0 0 20 20" | ||
focusable={false} | ||
aria-hidden={true} | ||
> | ||
<path | ||
fill={props.color} | ||
fillRule="evenodd" | ||
d="M7.253 4.889c-.344-.017-.513.068-.596.152l-.006.005c-.082.086-.162.255-.146.591.016.344.133.795.372 1.332.475 1.069 1.377 2.356 2.608 3.587 1.23 1.23 2.518 2.133 3.587 2.608.536.239.988.356 1.332.372.344.017.513-.068.596-.152.084-.083.168-.252.152-.596-.016-.344-.133-.796-.372-1.332-.475-1.069-1.377-2.356-2.608-3.587-1.23-1.23-2.519-2.133-3.587-2.608-.537-.239-.988-.356-1.332-.372Zm-1.445-.697-.013.013L4.04 5.96c-.762.762-.665 1.95-.179 3.106.504 1.2 1.512 2.61 3.008 4.106 1.495 1.496 2.906 2.504 4.106 3.008 1.157.486 2.344.583 3.106-.18l1.768-1.767c.405-.405.528-.958.502-1.502-.026-.544-.2-1.147-.474-1.762-.549-1.235-1.549-2.64-2.857-3.949-1.307-1.307-2.713-2.307-3.948-2.856-.615-.273-1.218-.448-1.762-.474-.544-.026-1.097.097-1.502.502Zm-.92 2.616.502-.501a6.173 6.173 0 0 0 .485 1.354l-.917.917c-.429-1.033-.282-1.557-.07-1.77Zm.657 2.88c.496.786 1.214 1.677 2.172 2.636.35.35.693.67 1.024.956l.925-.925a17.314 17.314 0 0 1-1.03-.95A15.735 15.735 0 0 1 6.482 8.75l-.937.937Zm4.808 4.808c-.216-.136-.44-.29-.671-.46l.934-.934c.226.163.452.316.674.457l-.937.937Zm1.11.588c1.033.428 1.557.281 1.77.068l.501-.502a6.063 6.063 0 0 1-1.15-.39 8.506 8.506 0 0 1-.204-.094l-.917.918Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default SvgTokenMasterIcon |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8665,7 +8665,7 @@ | |
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" | ||
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== | ||
|
||
"@types/react-dom@^18.0.11": | ||
"@types/react-dom@18.0.11", "@types/react-dom@^18.0.11": | ||
version "18.0.11" | ||
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.11.tgz#321351c1459bc9ca3d216aefc8a167beec334e33" | ||
integrity sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw== | ||
|
@@ -8679,7 +8679,7 @@ | |
dependencies: | ||
"@types/react" "*" | ||
|
||
"@types/react@*", "@types/react@>=16", "@types/react@^18.0.33": | ||
"@types/react@*", "@types/react@18.0.33", "@types/react@>=16", "@types/react@^18.0.33": | ||
version "18.0.33" | ||
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.33.tgz#a1575160cb4376787c2f5fe0312302f824baa61e" | ||
integrity sha512-sHxzVxeanvQyQ1lr8NSHaj0kDzcNiGpILEVt69g9S31/7PfMvNCKLKcsHw4lYKjs3cGNJjXSP4mYzX43QlnjNA== | ||
|
@@ -15872,7 +15872,6 @@ node-fetch-native@^1.0.1: | |
|
||
[email protected], node-fetch@^2.6.1, node-fetch@^2.6.7: | ||
version "2.6.7" | ||
uid "1b5d62978f2ed07b99444f64f0df39f960a6d34d" | ||
resolved "https://registry.npmjs.org/@achingbrain/node-fetch/-/node-fetch-2.6.7.tgz#1b5d62978f2ed07b99444f64f0df39f960a6d34d" | ||
|
||
node-fetch@^2.0.0: | ||
|
3f75d6b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
status-web – ./apps/web
status-web-git-main-status-im-web.vercel.app
status-web-status-im-web.vercel.app
status-web.vercel.app
3f75d6b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
status-components – ./packages/components
status-components-git-main-status-im-web.vercel.app
status-components-status-im-web.vercel.app
status-components.vercel.app