import React, {forwardRef} from 'react'; import type {StyleSheetProps} from '../hyper'; const StyleSheet: React.FC = forwardRef((props, ref) => { const {borderColor} = props; return ( ); }); StyleSheet.displayName = 'StyleSheet'; export default StyleSheet;