-
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.
* Created navigation bar --------- Co-authored-by: Chris Torres <[email protected]>
- Loading branch information
1 parent
3e1cb03
commit d52cbf9
Showing
12 changed files
with
1,619 additions
and
1,110 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,13 @@ | ||
import * as React from 'react'; | ||
import Svg, { Path } from 'react-native-svg'; | ||
|
||
const SvgContactSelected = (props: any) => ( | ||
<Svg width={30} height={31} fill="none" {...props}> | ||
<Path | ||
fill="#446127" | ||
d="M15 15.422a6.25 6.25 0 1 0 0-12.5 6.25 6.25 0 0 0 0 12.5M15 18.547c-6.262 0-11.362 4.2-11.362 9.375 0 .35.275.625.625.625h21.475c.35 0 .625-.275.625-.625 0-5.175-5.1-9.375-11.363-9.375" | ||
/> | ||
</Svg> | ||
); | ||
|
||
export default SvgContactSelected; |
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,13 @@ | ||
import * as React from 'react'; | ||
import Svg, { Path, SvgProps } from 'react-native-svg'; | ||
|
||
const SvgContactUnselected = (props: SvgProps) => ( | ||
<Svg width={31} height={31} fill="none" {...props}> | ||
<Path | ||
fill="#446127" | ||
d="M15.119 16.36c-3.963 0-7.188-3.226-7.188-7.188 0-3.963 3.225-7.188 7.188-7.188s7.187 3.226 7.187 7.188-3.225 7.188-7.187 7.188m0-12.5a5.324 5.324 0 0 0-5.313 5.312 5.324 5.324 0 0 0 5.313 5.313 5.324 5.324 0 0 0 5.312-5.313A5.324 5.324 0 0 0 15.12 3.86M25.857 28.86a.944.944 0 0 1-.938-.938c0-4.312-4.4-7.812-9.8-7.812s-9.8 3.5-9.8 7.812a.944.944 0 0 1-.937.938.944.944 0 0 1-.938-.938c0-5.338 5.238-9.687 11.675-9.687s11.675 4.35 11.675 9.687a.944.944 0 0 1-.937.938" | ||
/> | ||
</Svg> | ||
); | ||
|
||
export default SvgContactUnselected; |
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,13 @@ | ||
import React from 'react'; | ||
import Svg, { Path } from 'react-native-svg'; | ||
|
||
const SvgHomeSelected = (props: any) => ( | ||
<Svg width={31} height={31} fill="none" {...props}> | ||
<Path | ||
fill="#446127" | ||
d="M15.769.662a1 1 0 0 0-1.3 0l-14.35 12.3v14.46a3 3 0 0 0 3 3h8a1 1 0 0 0 1-1v-6a3 3 0 1 1 6 0v6a1 1 0 0 0 1 1h8a3 3 0 0 0 3-3v-14.46z" | ||
/> | ||
</Svg> | ||
); | ||
|
||
export default SvgHomeSelected; |
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,13 @@ | ||
import React from 'react'; | ||
import Svg, { Path } from 'react-native-svg'; | ||
|
||
const SvgHomeUnselected = (props: any) => ( | ||
<Svg width={30} height={31} fill="none" {...props}> | ||
<Path | ||
fill="#446127" | ||
d="m15 1.422.65-.76a1 1 0 0 0-1.3 0zm-14 12-.65-.76-.35.3v.46zm10 16v1a1 1 0 0 0 1-1zm8 0h-1a1 1 0 0 0 1 1zm10-16h1v-.46l-.35-.3zm-26 17h8v-2H3zm26.65-17.76-14-12-1.3 1.52 14 12zm-15.3-12-14 12 1.3 1.52 14-12zM12 29.422v-6h-2v6zm6-6v6h2v-6zm1 7h8v-2h-8zm11-3v-14h-2v14zm-30-14v14h2v-14zm15 7a3 3 0 0 1 3 3h2a5 5 0 0 0-5-5zm0-2a5 5 0 0 0-5 5h2a3 3 0 0 1 3-3zm12 12a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1zm-24-2a1 1 0 0 1-1-1H0a3 3 0 0 0 3 3z" | ||
/> | ||
</Svg> | ||
); | ||
|
||
export default SvgHomeUnselected; |
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,4 @@ | ||
export { default as ContactSelected } from './ContactSelected'; | ||
export { default as ContactUnselected } from './ContactUnselected'; | ||
export { default as HomeSelected } from './HomeSelected'; | ||
export { default as HomeUnselected } from './HomeUnselected'; |
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
File renamed without changes.
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