Files
metabuilder/fakemui/icons/Camera.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

10 lines
365 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Camera = (props: IconProps) => (
<Icon {...props}>
<path d="M208 56h-27.7l-14.4-21.6A8 8 0 0 0 159.2 32H96.8a8 8 0 0 0-6.7 3.6L75.7 56H48a24 24 0 0 0-24 24v112a24 24 0 0 0 24 24h160a24 24 0 0 0 24-24V80a24 24 0 0 0-24-24Z" />
<circle cx="128" cy="132" r="44" />
</Icon>
)