-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit 8a7866b.
- Loading branch information
Showing
8 changed files
with
552 additions
and
297 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,10 @@ | ||
import Svg, { Path, SvgProps } from 'react-native-svg'; | ||
|
||
export function CloseIcon({ ...props }: SvgProps) { | ||
return ( | ||
<Svg width="18" height="18" fill="none" viewBox="0 0 16 16" {...props}> | ||
<Path d="M12.6663 3.33398L3.33301 12.6673" stroke="#F9F9F9" stroke-miterlimit="10" /> | ||
<Path d="M3.33301 3.33398L12.6663 12.6673" stroke="#F9F9F9" stroke-miterlimit="10" /> | ||
</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,39 @@ | ||
import { useColorScheme } from 'nativewind'; | ||
import React from 'react'; | ||
import Svg, { Path, SvgProps } from 'react-native-svg'; | ||
|
||
import colors from '~/shared/theme/colors'; | ||
|
||
export function MaximizeIcon({ ...props }: SvgProps) { | ||
const { colorScheme } = useColorScheme(); | ||
const strokeColor = colorScheme === 'dark' ? colors.white : colors.black['800']; | ||
|
||
return ( | ||
<Svg width="16" height="16" viewBox="0 0 16 16" fill="none" {...props}> | ||
<Path | ||
d="M13.9997 6.66667V2H9.33301" | ||
stroke={strokeColor} | ||
stroke-width="0.666667" | ||
stroke-miterlimit="10" | ||
/> | ||
<Path | ||
d="M13.9997 2L9.33301 6.66667" | ||
stroke={strokeColor} | ||
stroke-width="0.666667" | ||
stroke-miterlimit="10" | ||
/> | ||
<Path | ||
d="M2 9.33398V14.0007H6.66667" | ||
stroke={strokeColor} | ||
stroke-width="0.666667" | ||
stroke-miterlimit="10" | ||
/> | ||
<Path | ||
d="M2 13.9993L6.33333 9.66602" | ||
stroke={strokeColor} | ||
stroke-width="0.666667" | ||
stroke-miterlimit="10" | ||
/> | ||
</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
Oops, something went wrong.