Files
metabuilder/fakemui/icons/Grid.tsx
JohnDoe6345789 b20f2d2533 Add Media Daemon server and TV engine implementation
- 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.
2025-12-30 11:40:25 +00:00

12 lines
376 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Grid = (props: IconProps) => (
<Icon {...props}>
<rect x="32" y="32" width="80" height="80" rx="8" />
<rect x="144" y="32" width="80" height="80" rx="8" />
<rect x="32" y="144" width="80" height="80" rx="8" />
<rect x="144" y="144" width="80" height="80" rx="8" />
</Icon>
)