Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Saadnajmi committed Feb 27, 2024
1 parent 480a084 commit 777ddd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -406,5 +406,5 @@ export interface ImageStyle extends FlexStyle, ShadowStyleIOS, TransformsStyle {
tintColor?: ColorValue | undefined;
opacity?: AnimatableNumericValue | undefined;
objectFit?: 'cover' | 'contain' | 'fill' | 'scale-down' | undefined;
cursor?: CursorValue;
cursor?: CursorValue | undefined;
}
2 changes: 1 addition & 1 deletion packages/rn-tester/js/examples/Cursor/CursorExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'use strict';

const React = require('react');
const {Image, StyleSheet, View} = require('react-native');
const {StyleSheet, View} = require('react-native');

const styles = StyleSheet.create({
box: {
Expand Down

0 comments on commit 777ddd8

Please sign in to comment.