mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
28 lines
595 B
TypeScript
28 lines
595 B
TypeScript
![]() |
import React, { FC } from 'react';
|
||
|
import Box from '@mui/material/Box';
|
||
|
import classNames from 'classnames';
|
||
|
import type { MiscInfo } from 'types/mediaInfoItem';
|
||
|
|
||
|
interface MediaInfoItemProps {
|
||
|
className?: string;
|
||
|
miscInfo?: MiscInfo ;
|
||
|
|
||
|
}
|
||
|
|
||
|
const MediaInfoItem: FC<MediaInfoItemProps> = ({ className, miscInfo }) => {
|
||
|
const cssClass = classNames(
|
||
|
'mediaInfoItem',
|
||
|
'mediaInfoText',
|
||
|
className,
|
||
|
miscInfo?.cssClass
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<Box className={cssClass}>
|
||
|
{miscInfo?.text}
|
||
|
</Box>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default MediaInfoItem;
|