@react-navigation/elements
Version:
UI Components for React Navigation
9 lines • 361 B
TypeScript
import { type StyleProp, type TextProps, type TextStyle } from 'react-native';
type Props = Omit<TextProps, 'style'> & {
tintColor?: string;
children?: string;
style?: StyleProp<TextStyle>;
};
export declare function Label({ tintColor, style, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=Label.d.ts.map