import { motion } from 'framer-motion'; import { MouseEvent, ReactNode } from 'react'; import styled from 'styled-components'; import { THEME_GLOBALS } from '../../../../themes/globals'; const StyledMessageHighlighter = styled(motion.div)``; export function MessageHighlighter(props: { children: ReactNode; highlight: boolean; role?: string; className?: string; onClick?: (event: MouseEvent) => void; }) { const { className, children, highlight, role, onClick } = props; return ( {children} ); }