UNPKG

@zezosoft/zezo-ott-react-native-video-player

Version:

React Native OTT Video Player for Android & iOS. Supports playlists, seasons, auto-next playback, subtitles, theming, analytics, fullscreen mode, and custom controls. 🚀 Powered by ZezoSoft.

107 lines (104 loc) • 2.49 kB
/** * @author Naresh Dhamu * @lastModified Fri 08 Aug 2025 at 06:55 PM */ interface IFonts { // inter font inter: { black: string; bold: string; extraBold: string; extraLight: string; light: string; medium: string; regular: string; semiBold: string; thin: string; }; // poppins font poppins: { black: string; blackItalic: string; bold: string; boldItalic: string; extraBold: string; extraBoldItalic: string; extraLight: string; extraLightItalic: string; italic: string; light: string; lightItalic: string; medium: string; mediumItalic: string; regular: string; semiBold: string; semiBoldItalic: string; thin: string; thinItalic: string; }; // roboto font roboto: { black: string; blackItalic: string; bold: string; boldItalic: string; italic: string; light: string; lightItalic: string; medium: string; mediumItalic: string; regular: string; thin: string; thinItalic: string; }; } export const Fonts: IFonts = { // inter font inter: { black: 'Inter-Black', bold: 'Inter-Bold', extraBold: 'Inter-ExtraBold', extraLight: 'Inter-ExtraLight', light: 'Inter-Light', medium: 'Inter-Medium', regular: 'Inter-Regular', semiBold: 'Inter-SemiBold', thin: 'Inter-Thin', }, // poppins font poppins: { black: 'Poppins-Black', blackItalic: 'Poppins-BlackItalic', bold: 'Poppins-Bold', boldItalic: 'Poppins-BoldItalic', extraBold: 'Poppins-ExtraBold', extraBoldItalic: 'Poppins-ExtraBoldItalic', extraLight: 'Poppins-ExtraLight', extraLightItalic: 'Poppins-ExtraLightItalic', italic: 'Poppins-Italic', light: 'Poppins-Light', lightItalic: 'Poppins-LightItalic', medium: 'Poppins-Medium', mediumItalic: 'Poppins-MediumItalic', regular: 'Poppins-Regular', semiBold: 'Poppins-SemiBold', semiBoldItalic: 'Poppins-SemiBoldItalic', thin: 'Poppins-Thin', thinItalic: 'Poppins-ThinItalic', }, // roboto font roboto: { black: 'Roboto-Black', blackItalic: 'Roboto-BlackItalic', bold: 'Roboto-Bold', boldItalic: 'Roboto-BoldItalic', italic: 'Roboto-Italic', light: 'Roboto-Light', lightItalic: 'Roboto-LightItalic', medium: 'Roboto-Medium', mediumItalic: 'Roboto-MediumItalic', regular: 'Roboto-Regular', thin: 'Roboto-Thin', thinItalic: 'Roboto-ThinItalic', }, };