import React from 'react'; import { motion } from 'framer-motion'; import { FaTrashAlt, FaSave } from 'react-icons/fa'; import { mySpring } from './animations'; import { saveColor } from './colors'; const InverseCutSegment = ({ seg, duration, invertCutSegments }) => (
{invertCutSegments ? ( ) : ( )}
); export default InverseCutSegment;