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 Dawn Wallet #162

Merged
merged 18 commits into from
May 11, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat: update dawn logo
  • Loading branch information
thomas-waite committed Mar 17, 2023
commit 8f01d0eda39364ceba594d22daed0671f9696266
32 changes: 19 additions & 13 deletions packages/connectkit/src/assets/logos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -785,30 +785,36 @@ export const PlaceHolder = () => {
};

export const Dawn = ({ ...props}) => (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="88" height="88" viewBox="0 0 88 88">
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width="28"
height="28"
viewBox="0 0 88 88"
version="1.1"
>
<g id="surface1">
<rect
x="0"
y="0"
width="88"
height="88"
style={{
fill: 'rgb(8.235294%,9.803922%,11.764706%)',
fillOpacity:'1',
stroke: 'none'
}}
/>
fill:"rgb(8.235294%,9.803922%,11.764706%)",
fillOpacity:"1",
stroke:"none"
}}/>
<path
style={{
stroke: 'none',
fillRule: 'evenodd',
fill: 'rgb(83.137255%,68.627451%,21.568627%)',
fillOpacity: '1',
stroke:"none",
fillRule:"evenodd",
fill:"rgb(83.137255%,68.627451%,21.568627%)",
fillOpacity:"1"
}}
d='M 61.957031 49.929688 C 62.574219 48.066406 62.90625 46.070312 62.90625 44 C 62.90625 33.558594 54.441406 25.09375 44 25.09375 C 33.558594 25.09375 25.09375 33.558594 25.09375 44 C 25.09375 46.070312 25.425781 48.066406 26.042969 49.929688 Z M 26.519531 51.21875 C 26.8125 51.929688 27.148438 52.617188 27.523438 53.28125 L 60.476562 53.28125 C 60.851562 52.617188 61.183594 51.929688 61.480469 51.21875 Z M 30.332031 57.0625 C 29.714844 56.417969 29.144531 55.726562 28.621094 55 L 59.378906 55 C 58.855469 55.726562 58.285156 56.417969 57.667969 57.0625 Z M 34.761719 60.5 C 37.496094 62.03125 40.644531 62.90625 44 62.90625 C 47.355469 62.90625 50.503906 62.03125 53.238281 60.5 Z M 34.761719 60.5'
/>
d="M 61.957031 49.929688 C 62.574219 48.066406 62.90625 46.070312 62.90625 44 C 62.90625 33.558594 54.441406 25.09375 44 25.09375 C 33.558594 25.09375 25.09375 33.558594 25.09375 44 C 25.09375 46.070312 25.425781 48.066406 26.042969 49.929688 Z M 26.519531 51.21875 C 26.8125 51.929688 27.148438 52.617188 27.523438 53.28125 L 60.476562 53.28125 C 60.851562 52.617188 61.183594 51.929688 61.480469 51.21875 Z M 30.332031 57.0625 C 29.714844 56.417969 29.144531 55.726562 28.621094 55 L 59.378906 55 C 58.855469 55.726562 58.285156 56.417969 57.667969 57.0625 Z M 34.761719 60.5 C 37.496094 62.03125 40.644531 62.90625 44 62.90625 C 47.355469 62.90625 50.503906 62.03125 53.238281 60.5 Z M 34.761719 60.5 "/>
</g>
</svg>
</svg>

);

export const OtherWallets = ({ ...props }) => {
Expand Down