import React, {forwardRef} from 'react'; import type {StyleSheetProps} from '../../typings/hyper'; import { useDevicePixelRatio } from 'use-device-pixel-ratio'; const StyleSheet = forwardRef((props, ref) => { const {borderColor} = props; const dpr = useDevicePixelRatio(); return ( ); }); StyleSheet.displayName = 'StyleSheet'; export default StyleSheet;