sendou.ink/app/features/tier-list-maker/components/ItemDragPreview.tsx
Kalle 187e1aa105
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Tier list maker feature (#2634)
2025-11-16 16:30:24 +02:00

16 lines
393 B
TypeScript

import type { TierListItem } from "../tier-list-maker-schemas";
import styles from "./ItemDragPreview.module.css";
import { TierListItemImage } from "./TierListItemImage";
interface ItemDragPreviewProps {
item: TierListItem;
}
export function ItemDragPreview({ item }: ItemDragPreviewProps) {
return (
<div className={styles.preview}>
<TierListItemImage item={item} />
</div>
);
}