import React, { useMemo } from 'react'; import { StyleSheet, View } from 'react-native'; import { useTheme } from '../../contexts/themeContext/ThemeContext'; import { Play } from '../../icons/play-fill'; import { primitives } from '../../theme'; const sizes = { lg: { height: 48, width: 48, }, md: { height: 40, width: 40, }, sm: { height: 20, width: 20, }, }; const iconSizes = { lg: 20, md: 16, sm: 10, }; export type VideoPlayIndicatorProps = { size: 'sm' | 'md' | 'lg'; }; export const VideoPlayIndicator = (props: VideoPlayIndicatorProps) => { const { size = 'md' } = props; const { theme: { semantics }, } = useTheme(); const styles = useStyles(); return ( ); }; const useStyles = () => { const { theme: { semantics }, } = useTheme(); const { controlPlayButtonBg } = semantics; return useMemo(() => { return StyleSheet.create({ container: { alignItems: 'center', backgroundColor: controlPlayButtonBg, borderRadius: primitives.radiusMax, justifyContent: 'center', }, }); }, [controlPlayButtonBg]); };