monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
24 lines (21 loc) • 851 B
JSX
import React from "react";
import { TokenInformationBox } from "../token-Information-box/token-information-box";
import { Flex } from "../../../../components";
import styles from "./easing-overview.module.scss";
export const EasingOverview = ({ videoSrc, title, description, tokenInfo, tokenDescription }) => {
const EasingOverviewVideoSrc = <video className={styles.video} src={videoSrc} controls loop />;
return (
<div className={styles.row}>
<Flex justify={Flex.justify.SPACE_BETWEEN} align={Flex.align.START} gap={Flex.gaps.LARGE} wrap>
<TokenInformationBox
className={styles.easingInformationBox}
title={title}
description={description}
tokenInfo={tokenInfo}
tokenDescription={tokenDescription}
/>
{EasingOverviewVideoSrc}
</Flex>
</div>
);
};