diff options
Diffstat (limited to 'src/components/icons')
-rw-r--r-- | src/components/icons/TEMPLATE.tsx | 2 | ||||
-rw-r--r-- | src/components/icons/common.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/icons/TEMPLATE.tsx b/src/components/icons/TEMPLATE.tsx index f49c4280b..9fc147037 100644 --- a/src/components/icons/TEMPLATE.tsx +++ b/src/components/icons/TEMPLATE.tsx @@ -1,7 +1,7 @@ import React from 'react' import Svg, {Path} from 'react-native-svg' -import {Props, useCommonSVGProps} from '#/components/icons/common' +import {useCommonSVGProps, Props} from '#/components/icons/common' export const IconTemplate_Stroke2_Corner0_Rounded = React.forwardRef( function LogoImpl(props: Props, ref) { diff --git a/src/components/icons/common.ts b/src/components/icons/common.ts index 669c157f5..9e9f15c4d 100644 --- a/src/components/icons/common.ts +++ b/src/components/icons/common.ts @@ -1,5 +1,5 @@ import {StyleSheet, TextProps} from 'react-native' -import type {PathProps, SvgProps} from 'react-native-svg' +import type {SvgProps, PathProps} from 'react-native-svg' import {tokens} from '#/alf' |