import { createBox } from '@shopify/restyle'; import { Animated } from 'react-native'; import Reanimated from 'react-native-reanimated'; import type { Theme } from './../../theme/theme'; export const Box = createBox(); export const AnimatedBox = Animated.createAnimatedComponent(Box); export const ReanimatedBox = Reanimated.createAnimatedComponent(Box); export type BoxProps = React.ComponentProps;