···11-import {type TextStyle} from 'react-native'
11+import {type FontVariant, type TextStyle} from 'react-native'
2233import {IS_ANDROID, IS_WEB} from '#/env'
44import {type Device, device} from '#/storage'
···8181 * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant}
8282 */
8383 if (IS_WEB) {
8484- // @ts-expect-error - web supports 'unicode' as a valid value for fontVariant
8584 style.fontVariant = (style.fontVariant || []).concat(
8685 'no-contextual',
8787- 'unicode',
8686+ 'unicode' as FontVariant, // web supports 'unicode' as a valid value for fontVariant
8887 )
8988 } else {
9089 style.fontVariant = (style.fontVariant || []).concat('no-contextual')