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