parent
4f6aa69009
commit
3f75d6bcfc
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@status-im/icons': minor
|
||||
---
|
||||
|
||||
sync icons
|
|
@ -247,6 +247,7 @@ export { default as ScanBigIcon } from './scan-big-icon'
|
|||
export { default as ScanIcon } from './scan-icon'
|
||||
export { default as SearchIcon } from './search-icon'
|
||||
export { default as SeedIcon } from './seed-icon'
|
||||
export { default as SendAudioIcon } from './send-audio-icon'
|
||||
export { default as SendIcon } from './send-icon'
|
||||
export { default as SettingsIcon } from './settings-icon'
|
||||
export { default as ShareIcon } from './share-icon'
|
||||
|
@ -274,6 +275,7 @@ export { default as ThumbsDownIcon } from './thumbs-down-icon'
|
|||
export { default as ThumbsUpIcon } from './thumbs-up-icon'
|
||||
export { default as ToggleIcon } from './toggle-icon'
|
||||
export { default as TokenIcon } from './token-icon'
|
||||
export { default as TokenMasterIcon } from './token-master-icon'
|
||||
export { default as TokenSalesIcon } from './token-sales-icon'
|
||||
export { default as TopbarDockIcon } from './topbar-dock-icon'
|
||||
export { default as TopbarIcon } from './topbar-icon'
|
||||
|
|
|
@ -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
|
|
@ -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
|
|
@ -0,0 +1,22 @@
|
|||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="20"
|
||||
height="20"
|
||||
fill="none"
|
||||
viewBox="0 0 20 20"
|
||||
>
|
||||
<g clip-path="url(#clip0_6306_11)">
|
||||
<circle cx="10" cy="10" r="10" fill="#2A4AF5" />
|
||||
<path
|
||||
fill="#fff"
|
||||
fill-rule="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"
|
||||
clip-rule="evenodd"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_6306_11">
|
||||
<path fill="#fff" d="M0 0h20v20H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 534 B |
|
@ -0,0 +1,14 @@
|
|||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="20"
|
||||
height="20"
|
||||
fill="none"
|
||||
viewBox="0 0 20 20"
|
||||
>
|
||||
<path
|
||||
fill="#09101C"
|
||||
fill-rule="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-.501c.082.37.216.757.39 1.15.03.067.062.135.095.204l-.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"
|
||||
clip-rule="evenodd"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -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:
|
|||
|
||||
node-fetch@2.6.7, 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:
|
||||
|
|
Loading…
Reference in New Issue