mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
25 lines
623 B
TypeScript
25 lines
623 B
TypeScript
import React, { type FC } from 'react';
|
|
import classNames from 'classnames';
|
|
import ClosedCaptionIcon from '@mui/icons-material/ClosedCaption';
|
|
import Box from '@mui/material/Box';
|
|
|
|
interface CaptionMediaInfoProps {
|
|
className?: string;
|
|
}
|
|
|
|
const CaptionMediaInfo: FC<CaptionMediaInfoProps> = ({ className }) => {
|
|
const cssClass = classNames(
|
|
'mediaInfoItem',
|
|
'mediaInfoText',
|
|
'closedCaptionMediaInfoText',
|
|
className
|
|
);
|
|
|
|
return (
|
|
<Box className={cssClass}>
|
|
<ClosedCaptionIcon fontSize={'small'} />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default CaptionMediaInfo;
|