// HeartIcon — ported from Hyperscan ReviewSection
// Shared by NodeDetail and AllCommentsPanel
export function HeartIcon({
className = "w-3 h-3",
filled = false,
}: {
className?: string;
filled?: boolean;
}) {
if (filled) {
return (
);
}
return (
);
}