Skip to content

Commit

Permalink
fix: fix useSxStyle import path
Browse files Browse the repository at this point in the history
  • Loading branch information
mym0404 committed Mar 22, 2024
1 parent 0b1ea92 commit f32671d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/hook/useSxStyle.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { useContext } from 'react';
import type { StyleProp, TextStyle } from 'react-native';
import type { TextSxProps, ThemedDict } from 'react-native-themed-styled-system';
import { propsToThemedStyle, StyledSystemContext } from 'react-native-themed-styled-system';

import type { TextSxProps } from '../@types/SxProps';
import type { ThemedDict } from '../@types/ThemedDict';
import { printWarning } from '../internal/util/printWarning';
import { StyledSystemContext } from '../provider/StyledSystemProvider';
import { propsToThemedStyle } from '../util/propsToThemedStyle';

export type UseSxStyleOptions = {
theme?: ThemedDict;
Expand Down

0 comments on commit f32671d

Please sign in to comment.