mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-18 10:57:44 +01:00
12 lines
194 B
JavaScript
12 lines
194 B
JavaScript
import { ThumbsUp } from "lucide-react";
|
|
|
|
function LikeButton() {
|
|
return (
|
|
<button style={{ color: "#fff" }}>
|
|
<ThumbsUp />
|
|
Like
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default LikeButton; |