chore: format

This commit is contained in:
codytseng 2026-01-22 22:28:07 +08:00
parent 4bd4141b54
commit e490407dd5
225 changed files with 924 additions and 844 deletions

View file

@ -17,7 +17,7 @@ export default function Emoji({
if (typeof emoji === 'string') {
return emoji === '+' ? (
<Heart className={cn('size-5 text-red-400 fill-red-400', classNames?.img)} />
<Heart className={cn('size-5 fill-red-400 text-red-400', classNames?.img)} />
) : (
<span className={cn('whitespace-nowrap', classNames?.text)}>{emoji}</span>
)
@ -34,7 +34,7 @@ export default function Emoji({
src={emoji.url}
alt={emoji.shortcode}
draggable={false}
className={cn('inline-block size-5 pointer-events-none', classNames?.img)}
className={cn('pointer-events-none inline-block size-5', classNames?.img)}
onLoad={() => {
setHasError(false)
}}