//@ts-nocheck import React from 'react'; import { Box } from 'native-base'; export const Example = () => { const myRef = React.useRef({}); React.useEffect(() => { const styleObj = { borderWidth: 4, borderRadius: 4, borderColor: '#22D3EE', }; myRef?.current?.setNativeProps({ style: styleObj, }); }, [myRef]); return ( This is a Box ); };