diff --git a/src/components/dataDispaly/TimelineRow.js b/src/components/dataDispaly/TimelineRow.js new file mode 100644 index 00000000..41d78338 --- /dev/null +++ b/src/components/dataDispaly/TimelineRow.js @@ -0,0 +1,36 @@ +import { Box, Flex, Icon, Text, useColorModeValue } from '@chakra-ui/react'; +import React from 'react'; + +export default function TimelineRow(props) { + const { logo, title, date, color, index, arrLength } = props; + const textColor = useColorModeValue('gray.700', 'white.300'); + const bgIconColor = useColorModeValue('white.300', 'gray.700'); + + return ( + + + + + + + + {title} + + + {date} + + + + ); +}