-
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
1 parent
9a67192
commit 29a1cf9
Showing
4 changed files
with
32 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import * as React from 'react'; | ||
import Svg, { Rect, Path } from 'react-native-svg'; | ||
|
||
interface RightCircleSvgProps { | ||
width?: number; | ||
height?: number; | ||
backgroundFill?: string; | ||
arrowFill?: string; | ||
[key: string]: any; | ||
} | ||
|
||
const RightCircleSvg: React.FC<RightCircleSvgProps> = ({ | ||
width = 64, | ||
height = 64, | ||
backgroundFill = '#523AE4', | ||
arrowFill = '#FAFAFA', | ||
...props | ||
}) => ( | ||
<Svg width={width} height={height} viewBox="0 0 64 64" fill="none" {...props}> | ||
<Rect x={4} y={2} width={56} height={56} rx={28} fill={backgroundFill} /> | ||
<Path | ||
d="M26.918 20.87a1.334 1.334 0 0 0 0 1.803l7.46 7.33-7.459 7.328a1.334 1.334 0 0 0 0 1.801 1.334 1.334 0 0 0 1.769.001L38 30l-9.311-9.131a1.334 1.334 0 0 0-1.771.001Z" | ||
fill={arrowFill} | ||
/> | ||
</Svg> | ||
); | ||
|
||
export default RightCircleSvg; |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
export { Text } from './Text'; | ||
export { TextInput } from './TextInput'; | ||
|
||
export { TalkSvg } from './Icons/Talk'; | ||
export { Button } from './Button'; |