import { StyleObjectIdentifier, StyleObjectRules } from '@tamagui/helpers' import type { StyleObject } from '../types' // turns out this is pretty slow, creating a bunch of extra tags... export function getStyleTags(styles: StyleObject[]) { if (process.env.TAMAGUI_TARGET !== 'native') { if (styles.length) { return ( <> {styles.map((styleObject) => { const identifier = styleObject[StyleObjectIdentifier] return ( ) })} ) } } }