-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from gnosis/connections-redesign
Connections drawer
- Loading branch information
Showing
45 changed files
with
1,771 additions
and
288 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
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
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
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,21 @@ | ||
import React from 'react' | ||
import { IconType } from 'react-icons/lib' | ||
|
||
const ConnectIcon: IconType = ({ size, color, title, role }) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
role={role} | ||
> | ||
{title && <title>{title}</title>} | ||
<path | ||
d="M18.0385 6.964C18.3368 7.35609 18.5657 7.79649 18.715 8.266V8.2645C19.0634 9.3134 19.0235 10.4526 18.6025 11.4745C18.37 12.0355 18.0385 12.532 17.608 12.9625L15.28 15.28L14.3569 14.3567L15.2658 13.4103L16.675 12.0295C16.9784 11.7274 17.2185 11.3679 17.3815 10.972H17.383C17.5535 10.5714 17.6405 10.1403 17.6387 9.70492C17.6369 9.26956 17.5463 8.83915 17.3725 8.44C17.2015 8.044 16.9645 7.6975 16.6645 7.405C16.3705 7.1035 16.0255 6.868 15.6295 6.697C15.2301 6.52295 14.7995 6.43224 14.3638 6.43043C13.9282 6.42863 13.4968 6.51576 13.096 6.6865C12.7005 6.85009 12.29 7.14228 11.9885 7.44601L9.712 9.71211L8.7895 8.788L11.107 6.4615C11.5316 6.03428 12.0369 5.69572 12.5935 5.4655C13.6154 5.04436 14.7546 5.00443 15.8035 5.353C16.273 5.50299 16.7134 5.7323 17.1055 6.031L19.1455 4L20.0695 4.924L18.0385 6.964ZM9.712 9.71211L10.6395 10.6384L10.633 10.6451L13.423 13.4336L13.4284 13.428L14.3569 14.3567L14.356 14.3576L15.28 15.28L12.9625 17.6081C12.5305 18.0386 12.0325 18.3701 11.4655 18.6026C10.9045 18.8351 10.3195 18.9506 9.7105 18.9506C9.2125 18.9506 8.7265 18.8756 8.2555 18.7256C7.7905 18.5681 7.36 18.3386 6.9625 18.0386L4.9225 20.0681L4 19.1456L6.031 17.1056C5.7295 16.7081 5.5 16.2776 5.3425 15.8126C5.1925 15.3416 5.1175 14.8556 5.1175 14.3576C5.11647 13.7557 5.23528 13.1596 5.467 12.6041C5.69447 12.0433 6.03271 11.5341 6.4615 11.1071L8.788 8.78961L9.712 9.71211ZM9.712 17.6381C10.1412 17.6397 10.5664 17.5561 10.963 17.3921C11.3617 17.2246 11.7239 16.9811 12.0295 16.6751L13.4245 15.2801L8.7895 10.6451L7.3945 12.0401C7.08793 12.3429 6.84486 12.7039 6.6795 13.1018C6.51415 13.4997 6.42984 13.9267 6.4315 14.3576C6.42895 14.7974 6.5157 15.2332 6.6865 15.6386C6.85242 16.0272 7.08891 16.3817 7.384 16.6841C7.68625 16.9798 8.04075 17.2168 8.4295 17.3831C8.833 17.5526 9.2605 17.6381 9.712 17.6381Z" | ||
fill={color} | ||
/> | ||
</svg> | ||
) | ||
|
||
export default ConnectIcon |
Oops, something went wrong.