mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
31 lines
696 B
TypeScript
31 lines
696 B
TypeScript
![]() |
import React, { FunctionComponent } from 'react';
|
||
|
import globalize from '../../../scripts/globalize';
|
||
|
|
||
|
type IProps = {
|
||
|
title?: string;
|
||
|
className?: string;
|
||
|
}
|
||
|
|
||
|
const createLinkElement = ({ className, title }) => ({
|
||
|
__html: `<a
|
||
|
is="emby-linkbutton"
|
||
|
class="${className}"
|
||
|
href='#'
|
||
|
>
|
||
|
${title}
|
||
|
</a>`
|
||
|
});
|
||
|
|
||
|
const LnkEditUserPreferences: FunctionComponent<IProps> = ({ className, title }: IProps) => {
|
||
|
return (
|
||
|
<div
|
||
|
dangerouslySetInnerHTML={createLinkElement({
|
||
|
className: className,
|
||
|
title: globalize.translate(title)
|
||
|
})}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default LnkEditUserPreferences;
|