-
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
Owen000
committed
Dec 8, 2023
1 parent
8409593
commit 6530611
Showing
5 changed files
with
80 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
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,32 @@ | ||
import * as React from "react"; | ||
import Svg, { Path } from "react-native-svg"; | ||
|
||
type Props = { | ||
color?: string; | ||
width?: number; | ||
height?: number; | ||
}; | ||
|
||
const SvgComponent: React.FC<Props> = ({ | ||
color = "#9EA0A1", | ||
width = 30, | ||
height = 29, | ||
}) => { | ||
return ( | ||
<Svg | ||
width={width} | ||
height={height} | ||
viewBox="0 0 30 29" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<Path | ||
d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" | ||
fill={color} | ||
/> | ||
</Svg> | ||
); | ||
}; | ||
|
||
export default SvgComponent; | ||
|
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,32 @@ | ||
import * as React from "react"; | ||
import Svg, { Path } from "react-native-svg"; | ||
|
||
type Props = { | ||
color?: string; | ||
width?: number; | ||
height?: number; | ||
}; | ||
|
||
const SvgComponent: React.FC<Props> = ({ | ||
color = "#9EA0A1", | ||
width = 30, | ||
height = 29, | ||
}) => { | ||
return ( | ||
<Svg | ||
width={width} | ||
height={height} | ||
viewBox="0 0 30 29" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<Path | ||
d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" | ||
fill={color} | ||
/> | ||
</Svg> | ||
); | ||
}; | ||
|
||
export default SvgComponent; | ||
|
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
// dbService.tsx | ||
|
||
import * as SQLite from 'expo-sqlite'; | ||
import { WebSQLDatabase } from 'expo-sqlite'; | ||
|
||
|