mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 15:35:55 +01:00
15 lines
402 B
TypeScript
15 lines
402 B
TypeScript
|
|
import { IconEyeglass } from '@tabler/icons';
|
||
|
|
import { IModule } from '../ModuleTypes';
|
||
|
|
import OverseerrMediaDisplay from './OverseerrMediaDisplay';
|
||
|
|
|
||
|
|
export const OverseerrModule: IModule = {
|
||
|
|
title: 'Overseerr',
|
||
|
|
description: 'Allows you to search and add media from Overseerr',
|
||
|
|
icon: IconEyeglass,
|
||
|
|
component: OverseerrMediaDisplay,
|
||
|
|
};
|
||
|
|
|
||
|
|
export interface OverseerSearchProps {
|
||
|
|
query: string;
|
||
|
|
}
|