@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
8 lines (7 loc) • 332 B
TypeScript
export interface YoutubeEmbedProps {
videoId: string;
className?: string;
title?: string;
thumbnail?: "default" | "mqdefault" | "hqdefault" | "sddefault" | "maxresdefault";
}
export declare function YoutubeEmbed({ videoId, className, title, thumbnail, }: YoutubeEmbedProps): import("react/jsx-runtime").JSX.Element;