mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
25 lines
547 B
TypeScript
25 lines
547 B
TypeScript
![]() |
import React, { FC } from 'react';
|
||
|
import IconButton from '@mui/material/IconButton';
|
||
|
|
||
|
interface RightIconButtonsProps {
|
||
|
className?: string;
|
||
|
id: string;
|
||
|
icon: string;
|
||
|
title: string;
|
||
|
}
|
||
|
|
||
|
const RightIconButtons: FC<RightIconButtonsProps> = ({ className, id, title, icon }) => {
|
||
|
return (
|
||
|
<IconButton
|
||
|
className={className}
|
||
|
data-action='custom'
|
||
|
data-customaction={id}
|
||
|
title={title}
|
||
|
>
|
||
|
{icon}
|
||
|
</IconButton>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default RightIconButtons;
|