mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +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.
37 lines
790 B
TypeScript
37 lines
790 B
TypeScript
import React from 'react'
|
|
import type { IconProps } from './types'
|
|
|
|
export const ShieldCheck: React.FC<IconProps> = ({
|
|
size = 24,
|
|
color = 'currentColor',
|
|
weight = 'regular',
|
|
className = '',
|
|
...props
|
|
}) => {
|
|
const strokeWidths = {
|
|
thin: 1,
|
|
light: 1.5,
|
|
regular: 2,
|
|
bold: 2.5,
|
|
}
|
|
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 256 256"
|
|
fill="none"
|
|
stroke={color}
|
|
strokeWidth={strokeWidths[weight]}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className={className}
|
|
{...props}
|
|
>
|
|
<path d="M40 114V56a8 8 0 0 1 8-8h160a8 8 0 0 1 8 8v58c0 84-72 106-88 106s-88-22-88-106z" />
|
|
<polyline points="88 136 112 160 168 104" />
|
|
</svg>
|
|
)
|
|
}
|