mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 01:09:23 +01:00
14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
import { h } from "preact";
|
|
import { ThumbsUp } from "lucide-preact";
|
|
|
|
function LikeButton() {
|
|
return (
|
|
<button style={{ color: "#fff" }}>
|
|
<ThumbsUp />
|
|
Like
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default LikeButton;
|