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