react-ambilight
Version:
🌈 A lightweight React component for creating an Ambilight effect with YouTube videos.
15 lines (14 loc) • 495 B
TypeScript
export type RecursiveVoid = (func: RecursiveVoid) => void;
export type VideoAmbilightProps = {
videoId: string;
className?: string;
classNames?: {
videoWrapper?: string;
ambilightWrapper?: string;
aspectRatio?: string;
ambilight?: string;
ambilightVideo?: string;
};
};
export declare function VideoAmbilight({ videoId, className, classNames }: VideoAmbilightProps): import("react/jsx-runtime").JSX.Element;
export default VideoAmbilight;