feat: 自动上传组件 Co-authored-by: Junhui Chen <chenjunhui@fairclip.cn> Co-committed-by: Junhui Chen <chenjunhui@fairclip.cn>
9 lines
421 B
TypeScript
9 lines
421 B
TypeScript
// This file is based on the default template provided by Expo.
|
|
import { type IconProps } from '@expo/vector-icons/build/createIconSet';
|
|
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
import { type ComponentProps } from 'react';
|
|
|
|
export function TabBarIcon({ style, ...rest }: IconProps<ComponentProps<typeof Ionicons>['name']>) {
|
|
return <Ionicons size={28} style={[{ marginBottom: -3 }, style]} {...rest} />;
|
|
}
|