-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* s * Create hip-kiwis-train.md
- Loading branch information
Showing
29 changed files
with
809 additions
and
16 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
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,47 @@ | ||
import { createIcon } from '../lib/create-icon' | ||
|
||
const SvgChileIcon = 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(#chile-icon_svg__a)"> | ||
<g clipPath="url(#chile-icon_svg__b)"> | ||
<path | ||
fill="#1F429B" | ||
d="M7.222 2.778h-5A2.222 2.222 0 0 0 0 5v5h7.222V2.778ZM4.632 7.94l-1.046-.76-1.045.76.399-1.229-1.046-.76h1.293l.4-1.229.399 1.23h1.292l-1.046.76.4 1.228Z" | ||
/> | ||
<path | ||
fill="#EEE" | ||
d="M17.778 2.778H7.222V10H20V5a2.222 2.222 0 0 0-2.222-2.222Z" | ||
/> | ||
<path | ||
fill="#D42D27" | ||
d="M0 10v5c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15v-5H0Z" | ||
/> | ||
<path | ||
fill="#fff" | ||
d="m3.986 5.951-.4-1.229-.4 1.23h-1.29l1.045.76-.4 1.228 1.046-.76 1.046.76-.4-1.229 1.046-.76H3.986Z" | ||
/> | ||
</g> | ||
</g> | ||
<defs> | ||
<clipPath id="chile-icon_svg__a"> | ||
<path fill="#fff" d="M0 0h20v20H0z" /> | ||
</clipPath> | ||
<clipPath id="chile-icon_svg__b"> | ||
<path fill="#fff" d="M0 0h20v20H0z" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default SvgChileIcon |
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 SvgCodeDataIcon = 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="m2.076 9.576 4.5-4.5.848.848L3.348 10l4.076 4.076-.848.848-4.5-4.5L1.65 10l.425-.424Zm15.849 0-4.5-4.5-.849.848L16.652 10l-4.076 4.076.848.848 4.5-4.5.425-.424-.424-.424Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default SvgCodeDataIcon |
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,28 @@ | ||
import { createIcon } from '../lib/create-icon' | ||
|
||
const SvgColombiaIcon = 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="#FBD116" | ||
d="M17.778 2.778H2.222A2.222 2.222 0 0 0 0 5v5h20V5a2.222 2.222 0 0 0-2.222-2.222Z" | ||
/> | ||
<path fill="#22408C" d="M0 10h20v3.889H0V10Z" /> | ||
<path | ||
fill="#CE2028" | ||
d="M0 15c0 1.227.995 2.222 2.222 2.222h15.556A2.222 2.222 0 0 0 20 15v-1.111H0V15Z" | ||
/> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default SvgColombiaIcon |
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 SvgConnectIcon = 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="M15.374 4.626a3.6 3.6 0 0 0-5.091 0L8.867 6.04l.849.849 1.414-1.414a2.4 2.4 0 1 1 3.394 3.394l-1.414 1.414.848.848 1.415-1.414a3.6 3.6 0 0 0 0-5.091Zm-9.9 6.505 1.414-1.414-.848-.848-1.414 1.414a3.6 3.6 0 0 0 5.09 5.091l1.415-1.414-.848-.849-1.415 1.414a2.4 2.4 0 1 1-3.394-3.394Zm2.829 1.415 4.242-4.243-.848-.849-4.243 4.243.849.849Z" | ||
clipRule="evenodd" | ||
/> | ||
</svg> | ||
) | ||
}) | ||
|
||
export default SvgConnectIcon |
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
Oops, something went wrong.