diff options
Diffstat (limited to 'src/view/icons')
-rw-r--r-- | src/view/icons/Logo.tsx | 6 | ||||
-rw-r--r-- | src/view/icons/Logomark.tsx | 2 | ||||
-rw-r--r-- | src/view/icons/Logotype.tsx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/view/icons/Logo.tsx b/src/view/icons/Logo.tsx index 4de7c1613..465018cfb 100644 --- a/src/view/icons/Logo.tsx +++ b/src/view/icons/Logo.tsx @@ -1,12 +1,12 @@ import React from 'react' -import {StyleSheet, TextProps} from 'react-native' +import {StyleSheet, type TextProps} from 'react-native' import Svg, { Defs, LinearGradient, Path, - PathProps, + type PathProps, Stop, - SvgProps, + type SvgProps, } from 'react-native-svg' import {Image} from 'expo-image' diff --git a/src/view/icons/Logomark.tsx b/src/view/icons/Logomark.tsx index b777992d4..8d078f434 100644 --- a/src/view/icons/Logomark.tsx +++ b/src/view/icons/Logomark.tsx @@ -1,4 +1,4 @@ -import Svg, {Path, PathProps, SvgProps} from 'react-native-svg' +import Svg, {Path, type PathProps, type SvgProps} from 'react-native-svg' import {usePalette} from '#/lib/hooks/usePalette' diff --git a/src/view/icons/Logotype.tsx b/src/view/icons/Logotype.tsx index 8be4980e6..270c913fc 100644 --- a/src/view/icons/Logotype.tsx +++ b/src/view/icons/Logotype.tsx @@ -1,4 +1,4 @@ -import Svg, {Path, PathProps, SvgProps} from 'react-native-svg' +import Svg, {Path, type PathProps, type SvgProps} from 'react-native-svg' import {usePalette} from '#/lib/hooks/usePalette' |