-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
69 changed files
with
1,612 additions
and
0 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,26 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgArrowLeft = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={24} | ||
height={24} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#arrow-left_svg__a)"> | ||
<Path | ||
fill={props.color} | ||
fillRule="evenodd" | ||
d="M11.03 3.97a.75.75 0 0 1 0 1.06l-6.22 6.22H21a.75.75 0 0 1 0 1.5H4.81l6.22 6.22a.75.75 0 1 1-1.06 1.06l-7.5-7.5a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 0 1 1.06 0" | ||
clipRule="evenodd" | ||
/> | ||
</G> | ||
<Defs> | ||
<ClipPath id="arrow-left_svg__a"> | ||
<Path fill="#fff" d="M0 0h24v24H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgArrowLeft; |
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,19 @@ | ||
import * as React from 'react'; | ||
import Svg, {Path} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgBigUserIcon = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={64} | ||
height={82} | ||
fill="none" | ||
{...props}> | ||
<Path | ||
fill={props.color} | ||
fillRule="evenodd" | ||
d="M14.75 18C14.75 8.473 22.473.75 32 .75S49.25 8.473 49.25 18 41.527 35.25 32 35.25 14.75 27.527 14.75 18M.38 72.07C.676 54.86 14.72 41 32 41s31.325 13.86 31.62 31.072a2.88 2.88 0 0 1-1.675 2.662C52.825 78.92 42.682 81.25 32 81.25s-20.826-2.332-29.946-6.517A2.88 2.88 0 0 1 .38 72.07" | ||
clipRule="evenodd" | ||
/> | ||
</Svg> | ||
); | ||
export default SvgBigUserIcon; |
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,26 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgBigXmark = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={20} | ||
height={20} | ||
fill="none" | ||
{...props}> | ||
<G | ||
fill={props.color} | ||
fillRule="evenodd" | ||
clipPath="url(#bigXmark_svg__a)" | ||
clipRule="evenodd"> | ||
<Path d="M3.22 3.22a.75.75 0 0 1 1.06 0l12.5 12.5a.75.75 0 1 1-1.06 1.06L3.22 4.28a.75.75 0 0 1 0-1.06" /> | ||
<Path d="M16.78 3.22a.75.75 0 0 1 0 1.06l-12.5 12.5a.75.75 0 0 1-1.06-1.06l12.5-12.5a.75.75 0 0 1 1.06 0" /> | ||
</G> | ||
<Defs> | ||
<ClipPath id="bigXmark_svg__a"> | ||
<Path fill="#fff" d="M0 0h20v20H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgBigXmark; |
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 * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgBookmark = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={24} | ||
height={24} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#bookmark_svg__a)"> | ||
<Path | ||
fill={props.color} | ||
stroke={props.color} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.5 48.5 0 0 1 11.186 0" | ||
/> | ||
</G> | ||
<Defs> | ||
<ClipPath id="bookmark_svg__a"> | ||
<Path fill="#fff" d="M0 0h24v24H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgBookmark; |
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,50 @@ | ||
import * as React from 'react'; | ||
import Svg, {Rect, G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgUploadLight = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={347} | ||
height={170} | ||
fill="none" | ||
{...props}> | ||
<Rect | ||
width={344.5} | ||
height={167.5} | ||
x={1.25} | ||
y={1.25} | ||
fill="#F4F5F4" | ||
rx={24.75} | ||
/> | ||
<Rect | ||
width={344.5} | ||
height={167.5} | ||
x={1.25} | ||
y={1.25} | ||
stroke="#87B71F" | ||
strokeDasharray="10 10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
rx={24.75} | ||
/> | ||
<G clipPath="url(#\xA0border_svg__a)"> | ||
<Path | ||
fill="#87B71F" | ||
fillRule="evenodd" | ||
d="M171.25 51.625a9 9 0 0 0-8.97 9.744 7.875 7.875 0 0 0 3.345 15.006H182.5a6.75 6.75 0 0 0 3.309-12.635 5.625 5.625 0 0 0-6.199-6.454 9 9 0 0 0-8.36-5.661m3.045 8.205a1.124 1.124 0 0 0-1.59 0l-4.5 4.5a1.124 1.124 0 1 0 1.59 1.59l2.58-2.579v7.409a1.125 1.125 0 0 0 2.25 0v-7.409l2.58 2.58a1.124 1.124 0 1 0 1.59-1.592z" | ||
clipRule="evenodd" | ||
/> | ||
</G> | ||
<Path | ||
fill="#131313" | ||
d="M104.844 104.14q-1.106 0-1.988-.504a3.8 3.8 0 0 1-1.4-1.372q-.504-.882-.504-1.988V94.2h1.61v6.062q0 .714.294 1.246.308.518.826.812a2.4 2.4 0 0 0 1.162.28q.658 0 1.162-.28.504-.294.798-.812.294-.532.294-1.232V94.2h1.61v6.09q0 1.105-.504 1.974a3.7 3.7 0 0 1-1.372 1.372q-.868.504-1.988.504m9.274 0a2.86 2.86 0 0 1-1.372-.322 2.55 2.55 0 0 1-.952-.91 2.53 2.53 0 0 1-.336-1.302v-1.932q0-.728.35-1.302t.952-.896a2.74 2.74 0 0 1 1.358-.336q.91 0 1.638.476.742.462 1.162 1.26.434.784.434 1.778 0 .98-.434 1.778-.42.784-1.162 1.246a3 3 0 0 1-1.638.462m-.252-1.456q.56 0 .98-.252a1.8 1.8 0 0 0 .672-.728q.252-.462.252-1.064t-.252-1.064a1.7 1.7 0 0 0-.672-.714 1.8 1.8 0 0 0-.98-.266q-.56 0-.994.266a1.7 1.7 0 0 0-.672.714 2.3 2.3 0 0 0-.238 1.064q0 .602.238 1.064.239.462.672.728.434.252.994.252m-3.346 4.116v-9.52h1.54v1.806l-.266 1.638.266 1.624v4.452zm8.121-2.8V93.92h1.54V104zm6.334.14a3.5 3.5 0 0 1-1.778-.462 3.6 3.6 0 0 1-1.274-1.274 3.5 3.5 0 0 1-.462-1.778q0-.98.462-1.764a3.54 3.54 0 0 1 1.274-1.246 3.4 3.4 0 0 1 1.778-.476q.994 0 1.792.462a3.4 3.4 0 0 1 1.26 1.26q.476.784.476 1.764t-.476 1.778a3.5 3.5 0 0 1-1.26 1.274 3.5 3.5 0 0 1-1.792.462m0-1.484a1.97 1.97 0 0 0 1.008-.252q.448-.266.686-.728.252-.462.252-1.05t-.252-1.036a1.83 1.83 0 0 0-.686-.7 1.9 1.9 0 0 0-1.008-.266q-.56 0-1.008.266a1.83 1.83 0 0 0-.686.7 2.2 2.2 0 0 0-.238 1.036q0 .588.238 1.05.252.462.686.728.449.252 1.008.252m7.623 1.484a3.06 3.06 0 0 1-1.652-.462 3.4 3.4 0 0 1-1.162-1.246 3.76 3.76 0 0 1-.42-1.778q0-.994.42-1.778a3.36 3.36 0 0 1 1.162-1.26 3 3 0 0 1 1.652-.476q.77 0 1.358.336.601.322.952.896.35.574.35 1.302v1.932q0 .727-.35 1.302a2.44 2.44 0 0 1-.938.91 2.86 2.86 0 0 1-1.372.322m.252-1.456q.853 0 1.372-.574.532-.574.532-1.47a2.3 2.3 0 0 0-.238-1.064 1.7 1.7 0 0 0-.672-.714 1.8 1.8 0 0 0-.994-.266q-.56 0-.994.266-.42.252-.672.714a2.3 2.3 0 0 0-.238 1.064q0 .602.238 1.064.252.462.672.728.433.252.994.252m1.806 1.316v-1.806l.266-1.638-.266-1.624V97.28h1.54V104zm6.063.14a3.06 3.06 0 0 1-1.652-.462 3.4 3.4 0 0 1-1.162-1.246 3.76 3.76 0 0 1-.42-1.778q0-.994.42-1.778a3.36 3.36 0 0 1 1.162-1.26 3 3 0 0 1 1.652-.476q.77 0 1.358.336.601.322.952.896.35.574.35 1.302v1.932q0 .727-.35 1.302a2.44 2.44 0 0 1-.938.91 2.86 2.86 0 0 1-1.372.322m.252-1.456q.574 0 .994-.252a1.8 1.8 0 0 0 .672-.728 2.3 2.3 0 0 0 .238-1.064 2.3 2.3 0 0 0-.238-1.064 1.7 1.7 0 0 0-.672-.714 1.8 1.8 0 0 0-.994-.266q-.56 0-.994.266-.42.252-.672.714a2.3 2.3 0 0 0-.238 1.064q0 .602.238 1.064.252.462.672.728.433.252.994.252m3.346 1.316h-1.54v-1.806l.266-1.638-.266-1.624V93.92h1.54zm6.682.07-2.87-6.79h1.694l1.96 4.984h-.49l2.072-4.984h1.708l-3.122 6.79zm-2.002 2.73 2.086-4.298.868 1.568-1.246 2.73zm9.816-2.66a3.5 3.5 0 0 1-1.778-.462 3.6 3.6 0 0 1-1.274-1.274 3.5 3.5 0 0 1-.462-1.778q0-.98.462-1.764a3.54 3.54 0 0 1 1.274-1.246 3.4 3.4 0 0 1 1.778-.476q.994 0 1.792.462a3.4 3.4 0 0 1 1.26 1.26q.476.784.476 1.764t-.476 1.778a3.5 3.5 0 0 1-1.26 1.274 3.5 3.5 0 0 1-1.792.462m0-1.484a1.97 1.97 0 0 0 1.008-.252q.448-.266.686-.728.252-.462.252-1.05t-.252-1.036a1.83 1.83 0 0 0-.686-.7 1.9 1.9 0 0 0-1.008-.266q-.56 0-1.008.266a1.83 1.83 0 0 0-.686.7 2.2 2.2 0 0 0-.238 1.036q0 .588.238 1.05.252.462.686.728.448.252 1.008.252m7.567 1.484q-.855 0-1.526-.378a2.76 2.76 0 0 1-1.036-1.036q-.364-.672-.364-1.54V97.28h1.54v3.836q0 .49.154.84.167.336.476.518.321.182.756.182.672 0 1.022-.392.363-.406.364-1.148V97.28h1.54v3.906q0 .882-.378 1.554a2.66 2.66 0 0 1-1.022 1.036q-.659.364-1.526.364m4.474-.14v-6.72h1.54V104zm1.54-3.738-.532-.266q0-1.274.56-2.058.574-.798 1.722-.798.504 0 .91.182.406.181.756.588l-1.008 1.036a1.06 1.06 0 0 0-.406-.28 1.5 1.5 0 0 0-.518-.084q-.644 0-1.064.406-.42.405-.42 1.274m10.808 3.878a2.86 2.86 0 0 1-1.372-.322 2.55 2.55 0 0 1-.952-.91 2.53 2.53 0 0 1-.336-1.302v-1.932q0-.728.35-1.302t.952-.896a2.74 2.74 0 0 1 1.358-.336q.91 0 1.638.476.742.462 1.162 1.26.434.784.434 1.778 0 .98-.434 1.778-.42.784-1.162 1.246a3 3 0 0 1-1.638.462m-.252-1.456q.56 0 .98-.252a1.8 1.8 0 0 0 .672-.728q.252-.462.252-1.064t-.252-1.064a1.7 1.7 0 0 0-.672-.714 1.8 1.8 0 0 0-.98-.266q-.56 0-.994.266a1.7 1.7 0 0 0-.672.714 2.3 2.3 0 0 0-.238 1.064q0 .602.238 1.064t.672.728q.434.252.994.252m-3.346 4.116v-9.52h1.54v1.806l-.266 1.638.266 1.624v4.452zm12.727-2.8v-3.878q0-.672-.434-1.106-.42-.434-1.092-.434-.448 0-.798.196a1.4 1.4 0 0 0-.546.546q-.196.35-.196.798l-.602-.336q0-.77.336-1.358.336-.602.924-.938.601-.35 1.344-.35.756 0 1.344.336t.924.938q.336.588.336 1.372V104zm-4.606 0V93.92h1.54V104zm10.791.14a3.5 3.5 0 0 1-1.778-.462 3.6 3.6 0 0 1-1.274-1.274 3.5 3.5 0 0 1-.462-1.778q0-.98.462-1.764a3.54 3.54 0 0 1 1.274-1.246 3.4 3.4 0 0 1 1.778-.476q.994 0 1.792.462a3.4 3.4 0 0 1 1.26 1.26q.476.784.476 1.764t-.476 1.778a3.5 3.5 0 0 1-1.26 1.274 3.5 3.5 0 0 1-1.792.462m0-1.484a1.97 1.97 0 0 0 1.008-.252q.448-.266.686-.728.252-.462.252-1.05t-.252-1.036a1.83 1.83 0 0 0-.686-.7 1.9 1.9 0 0 0-1.008-.266q-.56 0-1.008.266a1.83 1.83 0 0 0-.686.7 2.2 2.2 0 0 0-.238 1.036q0 .588.238 1.05.252.462.686.728.448.252 1.008.252m5.639 1.344v-9.52h1.54V104zm-1.61-5.32v-1.4h4.76v1.4zm8.768 5.46a3.5 3.5 0 0 1-1.778-.462 3.6 3.6 0 0 1-1.274-1.274 3.5 3.5 0 0 1-.462-1.778q0-.98.462-1.764a3.54 3.54 0 0 1 1.274-1.246 3.4 3.4 0 0 1 1.778-.476q.994 0 1.792.462a3.4 3.4 0 0 1 1.26 1.26q.476.784.476 1.764t-.476 1.778a3.5 3.5 0 0 1-1.26 1.274 3.5 3.5 0 0 1-1.792.462m0-1.484a1.97 1.97 0 0 0 1.008-.252q.448-.266.686-.728.252-.462.252-1.05t-.252-1.036a1.83 1.83 0 0 0-.686-.7 1.9 1.9 0 0 0-1.008-.266q-.56 0-1.008.266a1.83 1.83 0 0 0-.686.7 2.2 2.2 0 0 0-.238 1.036q0 .588.238 1.05.252.462.686.728.448.252 1.008.252M223.53 104v-3.878q0-.672-.434-1.106-.42-.434-1.092-.434-.447 0-.798.196a1.4 1.4 0 0 0-.546.546q-.195.35-.196.798l-.602-.336q0-.77.336-1.358.336-.602.924-.938.603-.35 1.344-.35.756 0 1.344.336t.924.938q.336.588.336 1.372V104zm-4.606 0V93.92h1.54V104zm10.833.14a3.7 3.7 0 0 1-1.82-.448 3.5 3.5 0 0 1-1.274-1.26 3.5 3.5 0 0 1-.462-1.792q0-.994.462-1.778a3.44 3.44 0 0 1 1.246-1.26 3.46 3.46 0 0 1 1.764-.462q.939 0 1.652.434.729.434 1.134 1.19.42.756.42 1.722 0 .168-.028.35a3 3 0 0 1-.056.378h-5.516v-1.26h4.718l-.574.504q-.028-.616-.238-1.036t-.602-.644q-.377-.224-.938-.224-.588 0-1.022.252a1.7 1.7 0 0 0-.672.714q-.237.448-.238 1.078 0 .63.252 1.106t.714.742q.462.252 1.064.252.519 0 .952-.182.448-.182.756-.532l.98.994a3.1 3.1 0 0 1-1.19.868 3.8 3.8 0 0 1-1.484.294m4.357-.14v-6.72h1.54V104zm1.54-3.738-.532-.266q0-1.274.56-2.058.573-.798 1.722-.798.504 0 .91.182.405.181.756.588l-1.008 1.036a1.1 1.1 0 0 0-.406-.28 1.5 1.5 0 0 0-.518-.084q-.645 0-1.064.406-.42.405-.42 1.274m7.078 3.878a3.7 3.7 0 0 1-1.82-.448 3.5 3.5 0 0 1-1.274-1.26 3.5 3.5 0 0 1-.462-1.792q0-.994.462-1.778a3.43 3.43 0 0 1 1.246-1.26 3.46 3.46 0 0 1 1.764-.462q.938 0 1.652.434.728.434 1.134 1.19.42.756.42 1.722 0 .168-.028.35a3 3 0 0 1-.056.378h-5.516v-1.26h4.718l-.574.504q-.028-.616-.238-1.036a1.5 1.5 0 0 0-.602-.644q-.378-.224-.938-.224-.588 0-1.022.252a1.7 1.7 0 0 0-.672.714q-.238.448-.238 1.078t.252 1.106.714.742q.462.252 1.064.252.518 0 .952-.182.448-.182.756-.532l.98.994a3.14 3.14 0 0 1-1.19.868 3.8 3.8 0 0 1-1.484.294" | ||
/> | ||
<Defs> | ||
<ClipPath id="\xA0border_svg__a"> | ||
<Path fill="#fff" d="M155.5 46h36v36h-36z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgUploadLight; |
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,26 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgCamera = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={22} | ||
height={22} | ||
fill="none" | ||
{...props}> | ||
<G fill={props.color} clipPath="url(#camera_svg__a)"> | ||
<Path d="M11 8.25a3.437 3.437 0 1 0 0 6.875 3.437 3.437 0 0 0 0-6.875" /> | ||
<Path | ||
fillRule="evenodd" | ||
d="M8.566 2.815a45 45 0 0 1 4.868 0 2.7 2.7 0 0 1 2.139 1.275l.752 1.206c.22.352.592.59 1.018.65q.53.076 1.056.164c1.312.218 2.226 1.368 2.226 2.666V16.5a2.75 2.75 0 0 1-2.75 2.75H4.125a2.75 2.75 0 0 1-2.75-2.75V8.776c0-1.298.914-2.448 2.226-2.666q.526-.088 1.056-.163c.426-.06.799-.3 1.018-.65l.753-1.207a2.7 2.7 0 0 1 2.138-1.275m-2.379 8.872a4.813 4.813 0 1 1 9.626 0 4.813 4.813 0 0 1-9.625 0m11-1.374a.687.687 0 1 0 0-1.375.687.687 0 0 0 0 1.374" | ||
clipRule="evenodd" | ||
/> | ||
</G> | ||
<Defs> | ||
<ClipPath id="camera_svg__a"> | ||
<Path fill="#fff" d="M0 0h22v22H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgCamera; |
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,20 @@ | ||
import * as React from 'react'; | ||
import Svg, {Path} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgCheck = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={12} | ||
height={10} | ||
fill="none" | ||
{...props}> | ||
<Path | ||
stroke={props.color} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M1.333 5.667 4 8.333l6.667-6.666" | ||
/> | ||
</Svg> | ||
); | ||
export default SvgCheck; |
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,26 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgCloud = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={37} | ||
height={36} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#cloud_svg__a)"> | ||
<Path | ||
fill="#B8DE64" | ||
fillRule="evenodd" | ||
d="M16.25 5.625a9 9 0 0 0-8.97 9.744 7.875 7.875 0 0 0 3.345 15.006H27.5a6.75 6.75 0 0 0 3.309-12.634 5.625 5.625 0 0 0-6.199-6.454 9 9 0 0 0-8.36-5.662m3.046 8.205a1.125 1.125 0 0 0-1.591 0l-4.5 4.5a1.125 1.125 0 0 0 1.59 1.59l2.58-2.579v7.409a1.125 1.125 0 0 0 2.25 0v-7.409l2.58 2.58a1.125 1.125 0 0 0 1.59-1.591z" | ||
clipRule="evenodd" | ||
/> | ||
</G> | ||
<Defs> | ||
<ClipPath id="cloud_svg__a"> | ||
<Path fill="#fff" d="M.5 0h36v36H.5z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgCloud; |
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,26 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgDoorToClose = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={24} | ||
height={24} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#doorToClose_svg__a)"> | ||
<Path | ||
fill={props.color} | ||
fillRule="evenodd" | ||
d="M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5zm10.72 4.72a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l1.72-1.72H9a.75.75 0 0 1 0-1.5h10.94l-1.72-1.72a.75.75 0 0 1 0-1.06" | ||
clipRule="evenodd" | ||
/> | ||
</G> | ||
<Defs> | ||
<ClipPath id="doorToClose_svg__a"> | ||
<Path fill="#fff" d="M0 0h24v24H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgDoorToClose; |
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,31 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgEyeClosed = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={20} | ||
height={20} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#eye-closed_svg__a)"> | ||
<G fill={props.fill} clipPath="url(#eye-closed_svg__b)"> | ||
<Path | ||
fillRule="evenodd" | ||
d="M3.28 2.22a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06l-1.745-1.745a10.03 10.03 0 0 0 3.3-4.38 1.65 1.65 0 0 0 0-1.185A10 10 0 0 0 9.999 3a9.96 9.96 0 0 0-4.744 1.194zM7.752 6.69l1.092 1.092a2.5 2.5 0 0 1 3.374 3.373l1.091 1.092a4 4 0 0 0-5.557-5.557" | ||
clipRule="evenodd" | ||
/> | ||
<Path d="m10.748 13.93 2.523 2.523a10 10 0 0 1-3.27.547c-4.258 0-7.894-2.66-9.337-6.41a1.65 1.65 0 0 1 0-1.186A10 10 0 0 1 2.839 6.02L6.07 9.252Q6 9.616 6 10a4 4 0 0 0 4.748 3.93" /> | ||
</G> | ||
</G> | ||
<Defs> | ||
<ClipPath id="eye-closed_svg__a"> | ||
<Path fill="#fff" d="M0 0h20v20H0z" /> | ||
</ClipPath> | ||
<ClipPath id="eye-closed_svg__b"> | ||
<Path fill="#fff" d="M0 0h20v20H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgEyeClosed; |
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,31 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath, Rect} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgEye = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={20} | ||
height={20} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#eye_svg__a)"> | ||
<G fill={props.fill} clipPath="url(#eye_svg__b)"> | ||
<Path d="M10.446 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5" /> | ||
<Path | ||
fillRule="evenodd" | ||
d="M1.11 10.59a1.65 1.65 0 0 1 0-1.186A10 10 0 0 1 10.444 3c4.257 0 7.893 2.66 9.336 6.41a1.65 1.65 0 0 1 0 1.186A10 10 0 0 1 10.446 17c-4.257 0-7.893-2.66-9.336-6.41M14.446 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0" | ||
clipRule="evenodd" | ||
/> | ||
</G> | ||
</G> | ||
<Defs> | ||
<ClipPath id="eye_svg__a"> | ||
<Rect width={20} height={20} fill="#fff" rx={10} /> | ||
</ClipPath> | ||
<ClipPath id="eye_svg__b"> | ||
<Path fill="#fff" d="M0 0h20v20H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgEye; |
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 * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgHeart = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={20} | ||
height={20} | ||
fill="none" | ||
{...props}> | ||
<G clipPath="url(#heart_svg__a)"> | ||
<Path | ||
fill={props.color} | ||
stroke={props.color} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M18.1 6.727C18.1 4.558 16.21 2.8 13.88 2.8c-1.742 0-3.237.983-3.881 2.386C9.356 3.783 7.86 2.8 6.119 2.8c-2.33 0-4.22 1.758-4.22 3.927C1.9 13.03 10 17.2 10 17.2s8.1-4.171 8.1-10.473" | ||
/> | ||
</G> | ||
<Defs> | ||
<ClipPath id="heart_svg__a"> | ||
<Path fill="#fff" d="M1 1h18v18H1z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgHeart; |
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,22 @@ | ||
import * as React from 'react'; | ||
import Svg, {G, Path, Defs, ClipPath} from 'react-native-svg'; | ||
import type {SvgProps} from 'react-native-svg'; | ||
const SvgHome = (props: SvgProps) => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={24} | ||
height={24} | ||
fill="none" | ||
{...props}> | ||
<G fill={props.color} clipPath="url(#home_svg__a)"> | ||
<Path d="M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06z" /> | ||
<Path d="m12 5.432 8.159 8.159q.045.044.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198q.045-.042.091-.086z" /> | ||
</G> | ||
<Defs> | ||
<ClipPath id="home_svg__a"> | ||
<Path fill="#fff" d="M0 0h24v24H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
export default SvgHome; |
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,9 @@ | ||
export {default as Trash} from './trash'; | ||
export {default as BigUserIcon} from './big-user-icon'; | ||
export {default as BigXmark} from './big-xmark'; | ||
export {default as Bookmark} from './bookmark'; | ||
export {default as Home} from './home'; | ||
export {default as MediumUserIcon} from './medium-user-icon'; | ||
export {default as Moon} from './moon'; | ||
export {default as Photo} from './photo'; | ||
export {default as SmallUserIcon} from './small-user-icon'; |
Oops, something went wrong.