Skip to content

Commit 14056d1

Browse files
committed
fix: web components using incorrect runtime
1 parent 3465045 commit 14056d1

16 files changed

+16
-16
lines changed

src/components/ActivityIndicator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
useCssElement,
88
type StyledConfiguration,
99
type StyledProps,
10-
} from "../runtime";
10+
} from "react-native-css";
1111

1212
const mapping: StyledConfiguration<typeof RNActivityIndicator> = {
1313
className: {

src/components/Button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "../runtime";
7+
} from "react-native-css";
88

99
const mapping: StyledConfiguration<typeof RNButton> = {
1010
className: {

src/components/FlatList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "../runtime";
7+
} from "react-native-css";
88

99
const mapping: StyledConfiguration<typeof RNFlatList> = {
1010
ListFooterComponentClassName: "ListFooterComponentStyle",

src/components/Image.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "../runtime";
7+
} from "react-native-css";
88

99
const mapping: StyledConfiguration<typeof RNImage> = {
1010
className: "style",

src/components/ImageBackground.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
useCssElement,
88
type StyledConfiguration,
99
type StyledProps,
10-
} from "../runtime";
10+
} from "react-native-css";
1111

1212
const mapping: StyledConfiguration<typeof RNImageBackground> = {
1313
className: {

src/components/KeyboardAvoidingView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
useCssElement,
88
type StyledConfiguration,
99
type StyledProps,
10-
} from "../runtime";
10+
} from "react-native-css";
1111

1212
const mapping: StyledConfiguration<typeof RNKeyboardAvoidingView> = {
1313
className: {

src/components/Pressable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "../runtime";
7+
} from "react-native-css";
88

99
const mapping: StyledConfiguration<typeof RNPressable> = {
1010
className: "style",

src/components/ScrollView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "../runtime";
7+
} from "react-native-css";
88

99
const mapping: StyledConfiguration<typeof RNScrollView> = {
1010
className: "style",

src/components/Switch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "../runtime";
7+
} from "react-native-css";
88

99
const mapping = {
1010
className: "style",

src/components/Text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
useCssElement,
55
type StyledConfiguration,
66
type StyledProps,
7-
} from "react-native-css/native";
7+
} from "react-native-css";
88

99
const mapping = {
1010
className: "style",

0 commit comments

Comments
 (0)