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