mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Introduced `Server` class for managing the Media Daemon, including configuration, lifecycle, and HTTP route handling. - Added `TvEngine` class for managing TV channels, scheduling, EPG generation, and streaming functionalities. - Created `types.hpp` to define various data structures and enums for jobs, radio, TV channels, and plugins. - Implemented main entry point in `main.cpp` to initialize and run the Media Daemon server with command-line and environment variable configurations. - Established error handling and result management using a generic `Result` class. - Included necessary headers and dependencies for media processing and plugin management.
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Maximize = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="168 48 208 48 208 88" />
|
|
<line x1="152" y1="104" x2="208" y2="48" />
|
|
<polyline points="88 208 48 208 48 168" />
|
|
<line x1="104" y1="152" x2="48" y2="208" />
|
|
</Icon>
|
|
)
|