/*! ========================================================= * Argon Dashboard Chakra PRO - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-chakra-pro * Copyright 2022 Creative Tim (https://www.creative-tim.com/) * Designed and Coded by Simmmple & Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ import { Box, Flex, Icon, Stack, Tag, Text, useColorMode, useColorModeValue, } from "@chakra-ui/react"; import React from "react"; function TimelineRow(props) { const { logo, title, titleColor, date, color, index, tags, description, arrLength, isDark, } = props; const textColor = useColorModeValue("gray.700", "white.300"); const { colorMode } = useColorMode(); return ( {title} {date} {description !== undefined ? ( {description} ) : null} {tags !== undefined ? ( {tags.map((tag, index) => { return ( {tag.titleTag} ); })} ) : null} ); } export default TimelineRow;