|
|
@ -7,9 +7,11 @@ import { useDispatch, useSelector } from 'react-redux';
|
|
|
|
import normalize from '../components/Normalize';
|
|
|
|
import normalize from '../components/Normalize';
|
|
|
|
import { ScrollView, Switch, TextInput } from 'react-native-gesture-handler';
|
|
|
|
import { ScrollView, Switch, TextInput } from 'react-native-gesture-handler';
|
|
|
|
import CardMusic from '../components/CardMusicComponent';
|
|
|
|
import CardMusic from '../components/CardMusicComponent';
|
|
|
|
import { ChangeMode, DeleteToken } from '../redux/thunk/authThunk';
|
|
|
|
import { logout } from '../redux/thunk/authThunk';
|
|
|
|
|
|
|
|
import { darkMode } from '../redux/thunk/userThunk';
|
|
|
|
import { colorsDark } from '../constants/colorsDark';
|
|
|
|
import { colorsDark } from '../constants/colorsDark';
|
|
|
|
import { colorsLight } from '../constants/colorsLight';
|
|
|
|
import { colorsLight } from '../constants/colorsLight';
|
|
|
|
|
|
|
|
import { User } from '../models/User';
|
|
|
|
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
// @ts-ignore
|
|
|
|
const DismissKeyboard = ({ children }) => (
|
|
|
|
const DismissKeyboard = ({ children }) => (
|
|
|
@ -30,44 +32,36 @@ export default function SettingScreen() {
|
|
|
|
// @ts-ignore
|
|
|
|
// @ts-ignore
|
|
|
|
const currentMusic = useSelector(state => state.appReducer.userCurrentMusic);
|
|
|
|
const currentMusic = useSelector(state => state.appReducer.userCurrentMusic);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
|
|
|
const currentUser: User = useSelector(state => state.userReducer.user);
|
|
|
|
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
// @ts-ignore
|
|
|
|
const isDark = useSelector(state => state.userReducer.dark);
|
|
|
|
const isDark = useSelector(state => state.userReducer.dark);
|
|
|
|
|
|
|
|
|
|
|
|
const style = isDark ? colorsDark : colorsLight;
|
|
|
|
const style = isDark ? colorsDark : colorsLight;
|
|
|
|
|
|
|
|
|
|
|
|
async function ChangeDarkMode() {
|
|
|
|
async function ChangeDarkMode() {
|
|
|
|
try {
|
|
|
|
const newValue = !isDark;
|
|
|
|
const currentValue = await AsyncStorage.getItem('dark');
|
|
|
|
await AsyncStorage.setItem('dark', newValue.toString());
|
|
|
|
if (currentValue !== null) {
|
|
|
|
|
|
|
|
const newValue = JSON.stringify(!JSON.parse(currentValue));
|
|
|
|
|
|
|
|
await AsyncStorage.setItem('dark', newValue);
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
// @ts-ignore
|
|
|
|
dispatch(ChangeMode(JSON.parse(newValue)))
|
|
|
|
dispatch(darkMode(JSON.parse(newValue)))
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
|
|
console.log(`Une erreur s'est produite lors de la mise à jour de la valeur booléenne pour la clé 'dark': `, error);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Notification
|
|
|
|
|
|
|
|
const [isCheckedNotif, setIsCheckedNotif] = useState(false);
|
|
|
|
const [isCheckedNotif, setIsCheckedNotif] = useState(false);
|
|
|
|
|
|
|
|
|
|
|
|
const toggleNotif =
|
|
|
|
const toggleNotif =
|
|
|
|
() => setIsCheckedNotif(value => !value);
|
|
|
|
() => setIsCheckedNotif(value => !value);
|
|
|
|
|
|
|
|
|
|
|
|
//Deconnection
|
|
|
|
|
|
|
|
const Deconnection = () => {
|
|
|
|
const Deconnection = () => {
|
|
|
|
//@ts-ignore
|
|
|
|
//@ts-ignore
|
|
|
|
dispatch(DeleteToken())
|
|
|
|
dispatch(logout())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//Localisation
|
|
|
|
|
|
|
|
const [isCheckedLocalisation, setIsCheckedLocalisation] = useState(false);
|
|
|
|
const [isCheckedLocalisation, setIsCheckedLocalisation] = useState(false);
|
|
|
|
|
|
|
|
|
|
|
|
const toggleLocalisation =
|
|
|
|
const toggleLocalisation =
|
|
|
|
() => setIsCheckedLocalisation(value => !value);
|
|
|
|
() => setIsCheckedLocalisation(value => !value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Style
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
mainSafeArea: {
|
|
|
|
mainSafeArea: {
|
|
|
|
flex: 1,
|
|
|
|
flex: 1,
|
|
|
@ -110,6 +104,7 @@ export default function SettingScreen() {
|
|
|
|
imageProfil: {
|
|
|
|
imageProfil: {
|
|
|
|
marginLeft: 15,
|
|
|
|
marginLeft: 15,
|
|
|
|
marginRight: 7,
|
|
|
|
marginRight: 7,
|
|
|
|
|
|
|
|
borderRadius: 8,
|
|
|
|
width: 50,
|
|
|
|
width: 50,
|
|
|
|
height: 50
|
|
|
|
height: 50
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -129,8 +124,8 @@ export default function SettingScreen() {
|
|
|
|
justifyContent: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
buttonSetting: {
|
|
|
|
buttonSetting: {
|
|
|
|
width: normalize(17),
|
|
|
|
width: normalize(11),
|
|
|
|
height: normalize(17),
|
|
|
|
height: normalize(18),
|
|
|
|
marginRight: 22
|
|
|
|
marginRight: 22
|
|
|
|
},
|
|
|
|
},
|
|
|
|
body: {
|
|
|
|
body: {
|
|
|
@ -260,7 +255,7 @@ export default function SettingScreen() {
|
|
|
|
</Svg>
|
|
|
|
</Svg>
|
|
|
|
</TouchableOpacity>
|
|
|
|
</TouchableOpacity>
|
|
|
|
<TextInput placeholderTextColor="#828288" ref={textInputRef} placeholder='Recherche' style={styles.inputSearch}></TextInput>
|
|
|
|
<TextInput placeholderTextColor="#828288" ref={textInputRef} placeholder='Recherche' style={styles.inputSearch}></TextInput>
|
|
|
|
<Svg width="19" height="19" viewBox="0 0 19 19" fill="none">
|
|
|
|
<Svg width="19" height="19" viewBox="0 0 19 19">
|
|
|
|
<Path d="M13.6563 8.3125V10.0938C13.6563 11.1961 13.2184 12.2532 12.4389 13.0327C11.6595 13.8121 10.6023 14.25 9.5 14.25C8.39769 14.25 7.34054 13.8121 6.56109 13.0327C5.78164 12.2532 5.34375 11.1961 5.34375 10.0938V8.3125H4.15625V10.0938C4.15687 11.4078 4.64161 12.6755 5.51785 13.6547C6.39409 14.6339 7.60038 15.2559 8.90625 15.4019V16.625H6.53125V17.8125H12.4688V16.625H10.0938V15.4019C11.3996 15.2559 12.6059 14.6339 13.4822 13.6547C14.3584 12.6755 14.8431 11.4078 14.8438 10.0938V8.3125H13.6563Z" fill="#828288" />
|
|
|
|
<Path d="M13.6563 8.3125V10.0938C13.6563 11.1961 13.2184 12.2532 12.4389 13.0327C11.6595 13.8121 10.6023 14.25 9.5 14.25C8.39769 14.25 7.34054 13.8121 6.56109 13.0327C5.78164 12.2532 5.34375 11.1961 5.34375 10.0938V8.3125H4.15625V10.0938C4.15687 11.4078 4.64161 12.6755 5.51785 13.6547C6.39409 14.6339 7.60038 15.2559 8.90625 15.4019V16.625H6.53125V17.8125H12.4688V16.625H10.0938V15.4019C11.3996 15.2559 12.6059 14.6339 13.4822 13.6547C14.3584 12.6755 14.8431 11.4078 14.8438 10.0938V8.3125H13.6563Z" fill="#828288" />
|
|
|
|
<Path d="M9.5 13.0625C10.2874 13.0625 11.0425 12.7497 11.5992 12.193C12.156 11.6362 12.4688 10.8811 12.4688 10.0938V4.15625C12.4688 3.36889 12.156 2.61378 11.5992 2.05703C11.0425 1.50028 10.2874 1.1875 9.5 1.1875C8.71264 1.1875 7.95753 1.50028 7.40078 2.05703C6.84403 2.61378 6.53125 3.36889 6.53125 4.15625V10.0938C6.53125 10.8811 6.84403 11.6362 7.40078 12.193C7.95753 12.7497 8.71264 13.0625 9.5 13.0625Z" fill="#828288" />
|
|
|
|
<Path d="M9.5 13.0625C10.2874 13.0625 11.0425 12.7497 11.5992 12.193C12.156 11.6362 12.4688 10.8811 12.4688 10.0938V4.15625C12.4688 3.36889 12.156 2.61378 11.5992 2.05703C11.0425 1.50028 10.2874 1.1875 9.5 1.1875C8.71264 1.1875 7.95753 1.50028 7.40078 2.05703C6.84403 2.61378 6.53125 3.36889 6.53125 4.15625V10.0938C6.53125 10.8811 6.84403 11.6362 7.40078 12.193C7.95753 12.7497 8.71264 13.0625 9.5 13.0625Z" fill="#828288" />
|
|
|
|
</Svg>
|
|
|
|
</Svg>
|
|
|
@ -271,9 +266,9 @@ export default function SettingScreen() {
|
|
|
|
onPress={() => navigation.navigate('Profil')}
|
|
|
|
onPress={() => navigation.navigate('Profil')}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<View style={styles.profil}>
|
|
|
|
<View style={styles.profil}>
|
|
|
|
<Image source={require('../assets/images/profil_icon_asupp.png')} style={styles.imageProfil} />
|
|
|
|
<Image source={{ uri: currentUser.image }} style={styles.imageProfil} />
|
|
|
|
<View style={styles.profilContainer}>
|
|
|
|
<View style={styles.profilContainer}>
|
|
|
|
<Text style={styles.NameProfil}>Emre KARTAL</Text>
|
|
|
|
<Text style={styles.NameProfil}>{currentUser.name}</Text>
|
|
|
|
<Text style={styles.description}>id. Spotify, mail et mot de passe</Text>
|
|
|
|
<Text style={styles.description}>id. Spotify, mail et mot de passe</Text>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
<Image style={styles.buttonSetting} source={require('../assets/images/chevron_right_icon.png')} />
|
|
|
|
<Image style={styles.buttonSetting} source={require('../assets/images/chevron_right_icon.png')} />
|
|
|
@ -283,10 +278,9 @@ export default function SettingScreen() {
|
|
|
|
<View style={styles.body}>
|
|
|
|
<View style={styles.body}>
|
|
|
|
<View style={styles.Option}>
|
|
|
|
<View style={styles.Option}>
|
|
|
|
<View style={styles.view}>
|
|
|
|
<View style={styles.view}>
|
|
|
|
<Svg width="23" height="22" viewBox="0 0 23 18" fill="none">
|
|
|
|
<Svg width="22" height="22" viewBox="0 0 29 29">
|
|
|
|
<Path d="M1 8.63636C1 8.63636 4.81818 1 11.5 1C18.1818 1 22 8.63636 22 8.63636" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
|
|
<Path d="M14.0183 26.0157C20.5574 26.0157 25.9714 20.6016 25.9714 14.0625C25.9714 7.53516 20.5457 2.10938 14.0066 2.10938C7.47925 2.10938 2.06519 7.53516 2.06519 14.0625C2.06519 20.6016 7.49097 26.0157 14.0183 26.0157Z" fill="white" fill-opacity="0.85" />
|
|
|
|
<Path d="M1 8.63635C1 8.63635 4.81818 16.2727 11.5 16.2727C18.1818 16.2727 22 8.63635 22 8.63635" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
|
|
<Path d="M14.3464 21.0938C10.3855 21.0938 7.33862 18.2579 7.33862 14.2735C7.33862 11.4375 9.0144 8.74218 11.5222 7.74609C11.6746 7.68749 11.8386 7.66406 11.9207 7.66406C12.1668 7.66406 12.3074 7.87499 12.3074 8.06249C12.3074 8.12109 12.3074 8.21484 12.2371 8.36718C12.0144 8.9414 11.8152 10.0078 11.8152 10.7812C11.8152 14.4375 14.1472 16.7344 17.8152 16.7344C18.6472 16.7344 19.5027 16.5469 20.0066 16.3829C20.1355 16.3477 20.2175 16.336 20.2996 16.336C20.4988 16.336 20.698 16.4883 20.698 16.7461C20.698 16.8047 20.6863 16.9688 20.616 17.1211C19.7605 19.3125 17.2644 21.0938 14.3464 21.0938Z" fill="#fe9500" />
|
|
|
|
<Path d="M11.4997 11.5C13.0813 11.5 14.3634 10.2179 14.3634 8.63634C14.3634 7.0548 13.0813 5.77271 11.4997 5.77271C9.9182 5.77271 8.63611 7.0548 8.63611 8.63634C8.63611 10.2179 9.9182 11.5 11.4997 11.5Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
|
|
|
|
|
|
</Svg>
|
|
|
|
</Svg>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
<View style={styles.firstOptionView}>
|
|
|
|
<View style={styles.firstOptionView}>
|
|
|
@ -296,7 +290,7 @@ export default function SettingScreen() {
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
<View style={styles.secondOption}>
|
|
|
|
<View style={styles.secondOption}>
|
|
|
|
<View style={styles.notification}>
|
|
|
|
<View style={styles.notification}>
|
|
|
|
<Svg width="23" height="22" viewBox="0 0 1242 1242">
|
|
|
|
<Svg width="22" height="22" viewBox="0 0 1242 1242">
|
|
|
|
<Path d="M620.553 1181.81C642.27 1181.31 663.11 1173.14 679.388 1158.76C695.665 1144.37 706.331 1124.69 709.498 1103.2H528.159C531.416 1125.28 542.581 1145.42 559.577 1159.88C576.572 1174.34 598.241 1182.13 620.553 1181.81Z" fill="white" />
|
|
|
|
<Path d="M620.553 1181.81C642.27 1181.31 663.11 1173.14 679.388 1158.76C695.665 1144.37 706.331 1124.69 709.498 1103.2H528.159C531.416 1125.28 542.581 1145.42 559.577 1159.88C576.572 1174.34 598.241 1182.13 620.553 1181.81Z" fill="white" />
|
|
|
|
<Path d="M1132.51 969.785L1120.79 959.443C1087.53 929.815 1058.43 895.838 1034.25 858.43C1007.85 806.806 992.03 750.428 987.712 692.605V522.298C987.572 501.611 985.727 480.971 982.196 460.587C923.799 448.585 871.344 416.77 833.712 370.531C796.079 324.292 775.582 266.468 775.69 206.851C775.69 199.611 775.69 192.371 775.69 185.131C739.695 167.417 701.023 155.769 661.233 150.656V107.217C661.233 95.011 656.384 83.3046 647.752 74.6733C639.121 66.0421 627.415 61.1931 615.208 61.1931C603.002 61.1931 591.295 66.0421 582.664 74.6733C574.033 83.3046 569.184 95.011 569.184 107.217V152.38C480.09 164.948 398.552 209.324 339.622 277.315C280.692 345.307 248.349 432.323 248.565 522.298V692.605C244.247 750.428 228.424 806.806 202.024 858.43C178.266 895.745 149.628 929.716 116.87 959.443L105.149 969.785V1067.01H1132.51V969.785Z" fill="white" />
|
|
|
|
<Path d="M1132.51 969.785L1120.79 959.443C1087.53 929.815 1058.43 895.838 1034.25 858.43C1007.85 806.806 992.03 750.428 987.712 692.605V522.298C987.572 501.611 985.727 480.971 982.196 460.587C923.799 448.585 871.344 416.77 833.712 370.531C796.079 324.292 775.582 266.468 775.69 206.851C775.69 199.611 775.69 192.371 775.69 185.131C739.695 167.417 701.023 155.769 661.233 150.656V107.217C661.233 95.011 656.384 83.3046 647.752 74.6733C639.121 66.0421 627.415 61.1931 615.208 61.1931C603.002 61.1931 591.295 66.0421 582.664 74.6733C574.033 83.3046 569.184 95.011 569.184 107.217V152.38C480.09 164.948 398.552 209.324 339.622 277.315C280.692 345.307 248.349 432.323 248.565 522.298V692.605C244.247 750.428 228.424 806.806 202.024 858.43C178.266 895.745 149.628 929.716 116.87 959.443L105.149 969.785V1067.01H1132.51V969.785Z" fill="white" />
|
|
|
|
<Path d="M1034.25 379.226C1129.45 379.226 1206.63 302.051 1206.63 206.851C1206.63 111.65 1129.45 34.4751 1034.25 34.4751C939.053 34.4751 861.878 111.65 861.878 206.851C861.878 302.051 939.053 379.226 1034.25 379.226Z" fill="white" />
|
|
|
|
<Path d="M1034.25 379.226C1129.45 379.226 1206.63 302.051 1206.63 206.851C1206.63 111.65 1129.45 34.4751 1034.25 34.4751C939.053 34.4751 861.878 111.65 861.878 206.851C861.878 302.051 939.053 379.226 1034.25 379.226Z" fill="white" />
|
|
|
@ -309,7 +303,7 @@ export default function SettingScreen() {
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
<View style={styles.lastOption}>
|
|
|
|
<View style={styles.lastOption}>
|
|
|
|
<View style={styles.localisation}>
|
|
|
|
<View style={styles.localisation}>
|
|
|
|
<Svg width="24" height="23" viewBox="0 0 472 420" fill="none">
|
|
|
|
<Svg width="22" height="22" viewBox="0 0 472 420">
|
|
|
|
<Path d="M235.735 0C178.774 0 132.601 46.1729 132.601 103.134C132.601 149.184 200.006 233.115 225.83 263.581C231.061 269.752 240.416 269.752 245.639 263.581C271.463 233.115 338.868 149.184 338.868 103.134C338.868 46.1729 292.696 0 235.735 0ZM235.735 137.512C216.745 137.512 201.357 122.124 201.357 103.134C201.357 84.1441 216.745 68.7559 235.735 68.7559C254.724 68.7559 270.112 84.1441 270.112 103.134C270.112 122.124 254.724 137.512 235.735 137.512ZM16.4687 176.76C11.6081 178.704 7.44144 182.06 4.50605 186.394C1.57065 190.729 0.00116411 195.843 0 201.078L0 405.971C0 415.237 9.35571 421.572 17.9584 418.134L130.964 366.698V175.917C123.728 162.837 117.81 150.101 113.57 137.921L16.4687 176.76ZM235.735 294.398C224.218 294.398 213.323 289.34 205.85 280.516C189.758 261.526 172.643 239.901 157.156 217.719V366.69L314.313 419.075V217.727C298.826 239.901 281.719 261.534 265.619 280.524C258.146 289.34 247.251 294.398 235.735 294.398ZM453.511 131.913L340.505 183.349V419.084L455 373.287C459.862 371.344 464.029 367.989 466.964 363.654C469.9 359.319 471.469 354.204 471.469 348.969V144.076C471.469 134.811 462.113 128.475 453.511 131.913Z" fill="white" />
|
|
|
|
<Path d="M235.735 0C178.774 0 132.601 46.1729 132.601 103.134C132.601 149.184 200.006 233.115 225.83 263.581C231.061 269.752 240.416 269.752 245.639 263.581C271.463 233.115 338.868 149.184 338.868 103.134C338.868 46.1729 292.696 0 235.735 0ZM235.735 137.512C216.745 137.512 201.357 122.124 201.357 103.134C201.357 84.1441 216.745 68.7559 235.735 68.7559C254.724 68.7559 270.112 84.1441 270.112 103.134C270.112 122.124 254.724 137.512 235.735 137.512ZM16.4687 176.76C11.6081 178.704 7.44144 182.06 4.50605 186.394C1.57065 190.729 0.00116411 195.843 0 201.078L0 405.971C0 415.237 9.35571 421.572 17.9584 418.134L130.964 366.698V175.917C123.728 162.837 117.81 150.101 113.57 137.921L16.4687 176.76ZM235.735 294.398C224.218 294.398 213.323 289.34 205.85 280.516C189.758 261.526 172.643 239.901 157.156 217.719V366.69L314.313 419.075V217.727C298.826 239.901 281.719 261.534 265.619 280.524C258.146 289.34 247.251 294.398 235.735 294.398ZM453.511 131.913L340.505 183.349V419.084L455 373.287C459.862 371.344 464.029 367.989 466.964 363.654C469.9 359.319 471.469 354.204 471.469 348.969V144.076C471.469 134.811 462.113 128.475 453.511 131.913Z" fill="white" />
|
|
|
|
</Svg>
|
|
|
|
</Svg>
|
|
|
|
|
|
|
|
|
|
|
@ -335,14 +329,14 @@ export default function SettingScreen() {
|
|
|
|
|
|
|
|
|
|
|
|
<View style={styles.musicActually}>
|
|
|
|
<View style={styles.musicActually}>
|
|
|
|
<CardMusic image={currentMusic.image} title={currentMusic.title} description={currentMusic.bio} id='1' />
|
|
|
|
<CardMusic image={currentMusic.image} title={currentMusic.title} description={currentMusic.bio} id='1' />
|
|
|
|
<Image source={require("../assets/images/flady_shadow.png")} style={styles.mascot} />
|
|
|
|
<Image source={require("../assets/images/flady_icon.png")} style={styles.mascot} />
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
</>
|
|
|
|
</>
|
|
|
|
) : <></>}
|
|
|
|
) : <></>}
|
|
|
|
|
|
|
|
|
|
|
|
<View style={styles.deconnectedOption}>
|
|
|
|
<View style={styles.deconnectedOption}>
|
|
|
|
<View style={styles.buttonDeconectedOption}>
|
|
|
|
<View style={styles.buttonDeconectedOption}>
|
|
|
|
<Svg width="23" height="24" viewBox="0 0 23 24">
|
|
|
|
<Svg width="23" height="24">
|
|
|
|
<Path d="M4.36916 23.102C4.03419 23.102 3.71379 22.9855 3.43707 22.7671L0.5243 20.3349C0.360787 20.2004 0.229004 20.0315 0.138369 19.8401C0.0477338 19.6488 0.000485206 19.4398 0 19.2281L0 3.87773C0 3.44081 0.18933 3.03302 0.5243 2.75631L3.43707 0.324142C3.87399 -0.0253914 4.47111 -0.0982107 4.98085 0.134811C5.23365 0.251805 5.44759 0.438845 5.59731 0.673748C5.74703 0.908652 5.82624 1.18157 5.82555 1.46012V21.6602C5.82624 21.9388 5.74703 22.2117 5.59731 22.4466C5.44759 22.6815 5.23365 22.8685 4.98085 22.9855C4.79152 23.0583 4.57306 23.102 4.36916 23.102ZM17.4767 15.9221V7.18373C17.4767 6.52835 18.2631 6.20795 18.7146 6.67399L22.574 10.5334C23.142 11.1014 23.142 12.0189 22.574 12.5869L18.7146 16.4463C18.6119 16.547 18.4817 16.615 18.3405 16.6418C18.1992 16.6686 18.0532 16.6529 17.9208 16.5969C17.7885 16.5408 17.6756 16.4468 17.5966 16.3267C17.5175 16.2066 17.4758 16.0658 17.4767 15.9221Z" fill="white" />
|
|
|
|
<Path d="M4.36916 23.102C4.03419 23.102 3.71379 22.9855 3.43707 22.7671L0.5243 20.3349C0.360787 20.2004 0.229004 20.0315 0.138369 19.8401C0.0477338 19.6488 0.000485206 19.4398 0 19.2281L0 3.87773C0 3.44081 0.18933 3.03302 0.5243 2.75631L3.43707 0.324142C3.87399 -0.0253914 4.47111 -0.0982107 4.98085 0.134811C5.23365 0.251805 5.44759 0.438845 5.59731 0.673748C5.74703 0.908652 5.82624 1.18157 5.82555 1.46012V21.6602C5.82624 21.9388 5.74703 22.2117 5.59731 22.4466C5.44759 22.6815 5.23365 22.8685 4.98085 22.9855C4.79152 23.0583 4.57306 23.102 4.36916 23.102ZM17.4767 15.9221V7.18373C17.4767 6.52835 18.2631 6.20795 18.7146 6.67399L22.574 10.5334C23.142 11.1014 23.142 12.0189 22.574 12.5869L18.7146 16.4463C18.6119 16.547 18.4817 16.615 18.3405 16.6418C18.1992 16.6686 18.0532 16.6529 17.9208 16.5969C17.7885 16.5408 17.6756 16.4468 17.5966 16.3267C17.5175 16.2066 17.4758 16.0658 17.4767 15.9221Z" fill="white" />
|
|
|
|
<Path d="M5.09735 3.54297H13.1075C13.5153 3.54297 13.8357 3.86337 13.8357 4.27116V7.91213M5.09735 19.5632H13.1075C13.5153 19.5632 13.8357 19.2428 13.8357 18.835V15.1941M21.8458 11.5531H10.1947" stroke="white" stroke-linecap="round" />
|
|
|
|
<Path d="M5.09735 3.54297H13.1075C13.5153 3.54297 13.8357 3.86337 13.8357 4.27116V7.91213M5.09735 19.5632H13.1075C13.5153 19.5632 13.8357 19.2428 13.8357 18.835V15.1941M21.8458 11.5531H10.1947" stroke="white" stroke-linecap="round" />
|
|
|
|
</Svg>
|
|
|
|
</Svg>
|
|
|
|