import { Pressable as RNPressable, type PressableProps } from "react-native"; import { useCssElement, type StyledConfiguration, type StyledProps, } from "react-native-css"; import { copyComponentProperties } from "./copyComponentProperties"; const mapping: StyledConfiguration = { className: "style", }; export const Pressable = copyComponentProperties( RNPressable, (props: StyledProps) => { return useCssElement(RNPressable, props, mapping); }, ); export default Pressable;