import React from "react"; import ReactPlayer from "react-player"; import { Popover, PopoverInteractionKind, PopoverPosition, } from "@blueprintjs/core"; import { ControlIcons } from "icons/ControlIcons"; import styled, { AnyStyledComponent } from "styled-components"; import { Colors } from "constants/Colors"; const PlayerWrapper = styled.div` width: 600px; height: 400px; `; const YoutubeIcon = styled(ControlIcons.OPEN_YOUTUBE as AnyStyledComponent)` position: relative; top: 10px; left: -13px; &:hover { svg { path { fill: ${Colors.POMEGRANATE}; } } } `; interface VideoComponentProps { url: string; } const VideoComponent = (props: VideoComponentProps) => { return (
e.stopPropagation()}>
); }; export default VideoComponent;