'use client'; import { useTheme } from 'next-themes'; import Image from 'next/image'; import { memo } from 'react'; const PostCommnetLine = () => { const { systemTheme, theme } = useTheme(); const currentTheme = theme === 'system' ? systemTheme : theme; return ( <>