UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

9 lines (7 loc) 446 B
import React from "react"; import { InformationBox } from "vibe-storybook-components"; import styles from "./animation-information-box.module.scss"; export const AnimationInformationBox = ({ videoSrc, title, description }) => { const AnimationInformationBoxVideo = <video className={styles.video} controls loop src={videoSrc} />; return <InformationBox component={AnimationInformationBoxVideo} title={title} description={description} />; };