UNPKG

277 BJavaScriptView Raw
1import morphFontAsReactDom from './react-dom/morph-font.js'
2import morphFontAsReactNative from './react-native/morph-font.js'
3
4export default ({ as, font, files }) =>
5 as === 'react-dom'
6 ? morphFontAsReactDom({ font, files })
7 : morphFontAsReactNative({ font, files })