/** * External dependencies */ import { Text } from '@automattic/jetpack-components'; import { __ } from '@wordpress/i18n'; import classnames from 'classnames'; /** * Internal dependencies */ import styles from './style.module.scss'; import { VideoStatsGroupProps } from './types'; import type React from 'react'; const Stats = ( { label, value = 0 }: { label: string; value: number } ) => { return (