mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
23 lines
558 B
TypeScript
23 lines
558 B
TypeScript
![]() |
import React, { FC } from 'react';
|
||
|
import IconButton from '@mui/material/IconButton';
|
||
|
import InfoIcon from '@mui/icons-material/Info';
|
||
|
import globalize from 'scripts/globalize';
|
||
|
|
||
|
interface InfoIconButtonProps {
|
||
|
className?: string;
|
||
|
}
|
||
|
|
||
|
const InfoIconButton: FC<InfoIconButtonProps> = ({ className }) => {
|
||
|
return (
|
||
|
<IconButton
|
||
|
className={className}
|
||
|
data-action='link'
|
||
|
title={globalize.translate('ButtonInfo')}
|
||
|
>
|
||
|
<InfoIcon />
|
||
|
</IconButton>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default InfoIconButton;
|