-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
bc45c9f
commit 494ef47
Showing
11 changed files
with
109 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import React from 'react'; | ||
import { | ||
ClipPath, | ||
Defs, | ||
G, | ||
LinearGradient, | ||
Mask, | ||
Path, | ||
Stop, | ||
Svg | ||
} from 'react-native-svg'; | ||
import { moderateScale } from '@utils/scaling'; | ||
import { IconProps } from './Icon.types'; | ||
|
||
export function FirepotIcon(props: Omit<IconProps, 'color'>) { | ||
const { scale = 1 } = props; | ||
const width = moderateScale(32); | ||
const height = moderateScale(32); | ||
return ( | ||
<Svg | ||
width={width * scale} | ||
height={height * scale} | ||
viewBox={`0 0 ${width} ${height}`} | ||
fill="none" | ||
> | ||
<G clipPath="url(#prefix__clip0_1382_130)"> | ||
<Mask | ||
id="prefix__a" | ||
maskUnits="userSpaceOnUse" | ||
x={0} | ||
y={0} | ||
width={32} | ||
height={32} | ||
> | ||
<Path d="M32 0H0v32h32V0z" fill="#fff" /> | ||
</Mask> | ||
<G mask="url(#prefix__a)"> | ||
<Path | ||
d="M16 32c8.867 0 16-7.133 16-16S24.867 0 16 0 0 7.133 0 16s7.133 16 16 16z" | ||
fill="#E3ECFF" | ||
/> | ||
<Path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M10.099 26.622a.277.277 0 01-.387-.09l-.33-.514a.322.322 0 01.064-.417 13.221 13.221 0 002.677-3.004c2.61-4.05 2.61-9.145 0-13.194a13.217 13.217 0 00-2.677-3.004.323.323 0 01-.063-.417l.33-.515a.277.277 0 01.386-.09l14.622 9.466c.816.528.816 1.786 0 2.314L10.1 26.622z" | ||
fill="url(#prefix__paint0_linear_1382_130)" | ||
/> | ||
</G> | ||
</G> | ||
<Defs> | ||
<LinearGradient | ||
id="prefix__paint0_linear_1382_130" | ||
x1={27.201} | ||
y1={16.189} | ||
x2={3.449} | ||
y2={16.189} | ||
gradientUnits="userSpaceOnUse" | ||
> | ||
<Stop stopColor="#3568DD" /> | ||
<Stop offset={1} stopColor="#3568DD" stopOpacity={0.66} /> | ||
</LinearGradient> | ||
<ClipPath id="prefix__clip0_1382_130"> | ||
<Path fill="#fff" d="M0 0h32v32H0z" /> | ||
</ClipPath> | ||
</Defs> | ||
</Svg> | ||
); | ||
} |
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