-
Notifications
You must be signed in to change notification settings - Fork 464
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
21 changed files
with
125 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React, {FunctionComponent} from 'react'; | ||
import {IconProps} from './types'; | ||
import {Path, Svg} from 'react-native-svg'; | ||
|
||
export const MessageAdr36Icon: FunctionComponent<IconProps> = ({ | ||
size, | ||
color, | ||
}) => { | ||
return ( | ||
<Svg width={size} height={size} viewBox="0 0 32 32" fill="none"> | ||
<Path | ||
d="M10.741 21.259L14.7985 17.2015M16.573 12.3835L19.6165 15.427L18.094 19.4845L10.975 22L10 21.0258L12.5163 13.9052L16.5738 12.3835H16.573ZM20.0425 15.8523L16.1477 11.9575L18.1053 10L22 13.8955L20.0425 15.8523Z" | ||
stroke={color || 'currentColor'} | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React, {FunctionComponent} from 'react'; | ||
import {IconProps} from './types'; | ||
import {Circle, Path, Svg} from 'react-native-svg'; | ||
|
||
export const MessageCustomIcon: FunctionComponent<IconProps> = ({ | ||
size, | ||
color, | ||
}) => { | ||
return ( | ||
<Svg width={size} height={size} viewBox="0 0 32 32" fill="none"> | ||
<Circle | ||
cx="16" | ||
cy="15.3927" | ||
r="5.1686" | ||
stroke={color || 'currentColor'} | ||
strokeWidth="1.2" | ||
/> | ||
<Path | ||
d="M11.1063 16.1655C9.43945 17.6381 8.55682 18.9655 8.95573 19.6247C9.58914 20.6713 13.2137 19.637 17.0513 17.3145C20.889 14.992 23.4865 12.2608 22.8531 11.2142C22.4732 10.5865 21.0175 10.7073 19.0851 11.4055" | ||
stroke={color || 'currentColor'} | ||
strokeWidth="1.2" | ||
/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React, {FunctionComponent} from 'react'; | ||
import {IconProps} from './types'; | ||
import {Path, Rect, Svg} from 'react-native-svg'; | ||
|
||
export const MessageExecuteContractIcon: FunctionComponent<IconProps> = ({ | ||
size, | ||
color, | ||
}) => { | ||
return ( | ||
<Svg width={size} height={size} viewBox="0 0 32 32" fill="none"> | ||
<Rect | ||
x="10.6666" | ||
y="9.86664" | ||
width="10.2222" | ||
height="12.2667" | ||
rx="1.36296" | ||
stroke={color || 'currentColor'} | ||
/> | ||
<Path | ||
d="M13.12 13.5467L18.0266 13.5467" | ||
stroke={color || 'currentColor'} | ||
strokeLinecap="round" | ||
/> | ||
<Path | ||
d="M13.12 16L16.8 16" | ||
stroke={color || 'currentColor'} | ||
strokeLinecap="round" | ||
/> | ||
</Svg> | ||
); | ||
}; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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