'use client'; import styled from '@emotion/styled'; import { CardContainer } from '@/app/_components/contributors/CardContainer'; import { HeartIcon } from '@/app/_components/ui/icons/SvgIcons'; const StyledTitle = styled.div` font-size: 24px; font-weight: 500; gap: 8px; @media (max-width: 810px) { font-size: 20px; } `; const StyledHeartIcon = styled(HeartIcon)` @media (max-width: 810px) { display: inline-block !important; width: 16px !important; height: 16px !important; } `; interface ThankYouProps { username: string; } export const ThankYou = ({ username }: ThankYouProps) => { return ( Thank you @{username} ); };