Files

14 lines
224 B
React
Raw Permalink Normal View History

2025-11-19 23:24:08 +01:00
import { h } from "preact";
import { ThumbsUp } from "lucide-preact";
2025-11-04 17:35:43 +01:00
function LikeButton() {
return (
<button style={{ color: "#fff" }}>
<ThumbsUp />
Like
</button>
);
}
2025-11-19 23:24:08 +01:00
export default LikeButton;