File tree Expand file tree Collapse file tree 4 files changed +88
-5
lines changed
Expand file tree Collapse file tree 4 files changed +88
-5
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export { default as Search01Icon } from '@icons/search-01-stroke-rounded.svg'
2525export { default as Setting07Icon } from '@icons/setting-07-stroke-rounded.svg'
2626export { default as Settings01Icon } from '@icons/settings-01-stroke-rounded.svg'
2727export { default as AppIcon } from '@assets/icons/icon.svg'
28+ export { default as AppIconRound } from '@assets/icons/icon_round.svg'
2829export { default as SlowWindsIcon } from '@icons/slow-winds-stroke-rounded.svg'
2930
3031export { default as TestTube01SolidIcon } from '@icons/test-tube-01-solid-rounded.svg'
Original file line number Diff line number Diff line change 1+ import AppIconRound from '@assets/icons/icon_round.svg'
12import { APP_VERSION } from '@utils/data'
23import { SemiBold } from '@utils/fonts'
34import React from 'react'
4- import { Image , View } from 'react-native'
5- import AppIcon from '@assets/icons/icon.svg'
5+ import { View } from 'react-native'
66
77export default function About ( ) {
88 return (
@@ -18,7 +18,7 @@ export function AppIconUI() {
1818 return (
1919 < View className = 'flex-row items-center justify-center' >
2020 < View className = 'my-5 bg-appIconBg p-1' style = { { borderRadius : 28 } } >
21- < AppIcon width = { 100 } height = { 100 } />
21+ < AppIconRound width = { 100 } height = { 100 } />
2222 </ View >
2323 </ View >
2424 )
Original file line number Diff line number Diff line change 1- import AppIcon from '@assets/icons/icon.svg '
1+ import { AppIconRound } from '@assets/icons/icons '
22import { Medium , Regular , SemiBold } from '@utils/fonts'
33import React , { useEffect } from 'react'
44import { View } from 'react-native'
@@ -28,7 +28,7 @@ export default function UpdateAvailableUI({
2828 < View className = 'flex-1 rounded-3xl bg-appIconBg p-8 pb-12' >
2929 < View className = 'flex-row' >
3030 < Animated . View style = { [ animatedImageStyle ] } className = 'mt-8' >
31- < AppIcon width = { 80 } height = { 80 } />
31+ < AppIconRound width = { 80 } height = { 80 } />
3232 </ Animated . View >
3333 </ View >
3434 < SemiBold style = { { fontSize : 24 } } className = 'mt-5 text-white' >
You can’t perform that action at this time.
0 commit comments