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