Collection of Video components
Video component in Card style. Both title and description props are optional. If you only pass the videoEmbedSrc prop, the video will still keep a smooth card style.
Vestibulum id ligula porta felis euismod semper. Maecenas faucibus mollis interdum.
1import VideoCard from '@hummingbot/hbui/components/video/VideoCard'
2
3<VideoCard
4 videoEmbedSrc='https://www.youtube.com/embed/T3AuplcGNyo' // must be EMBED url
5 title="Test"
6 descriptionText="Vestibulum id ligula porta felis euismod semper. Maecenas faucibus mollis interdum."
7/>Barebones video component
1import Video from '@hummingbot/hbui/components/video/Video'
2
3<Video
4 videoEmbedSrc='https://www.youtube.com/embed/T3AuplcGNyo' // must be EMBED url
5/>