lucide logo
lucide from Simple Icons by Simple Icons Collaborators · Brand · CC0-1.0 Free for personal and commercial use.
- Name
- lucide
- Set
- Simple Icons
- Style
- Brand
- Viewbox
- 24×24
- License
- CC0 1.0
Use the lucide logo
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M18.483 1.123a1.1 1.1 0 0 0-.752.362a1.09 1.09 0 0 0 .088 1.54a11.96 11.96 0 0 1 4 8.946a7.62 7.62 0 0 1-7.637 7.636a7.62 7.62 0 0 1-7.637-7.636a3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09a1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818S24 17.379 24 11.971A14.16 14.16 0 0 0 19.272 1.4a1.1 1.1 0 0 0-.789-.277M9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637a1.09 1.09 0 0 0 1.54-.096a1.09 1.09 0 0 0-.095-1.54a11.96 11.96 0 0 1-4.063-9a7.62 7.62 0 0 1 7.636-7.637a7.62 7.62 0 0 1 7.637 7.636a3.256 3.256 0 0 1-3.273 3.273a3.256 3.256 0 0 1-3.273-3.273a1.09 1.09 0 0 0-1.09-1.09a1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z"/></svg>
React
import type { SVGProps } from "react";
export function SimpleIconsLucide(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M18.483 1.123a1.1 1.1 0 0 0-.752.362a1.09 1.09 0 0 0 .088 1.54a11.96 11.96 0 0 1 4 8.946a7.62 7.62 0 0 1-7.637 7.636a7.62 7.62 0 0 1-7.637-7.636a3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09a1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818S24 17.379 24 11.971A14.16 14.16 0 0 0 19.272 1.4a1.1 1.1 0 0 0-.789-.277M9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637a1.09 1.09 0 0 0 1.54-.096a1.09 1.09 0 0 0-.095-1.54a11.96 11.96 0 0 1-4.063-9a7.62 7.62 0 0 1 7.636-7.637a7.62 7.62 0 0 1 7.637 7.636a3.256 3.256 0 0 1-3.273 3.273a3.256 3.256 0 0 1-3.273-3.273a1.09 1.09 0 0 0-1.09-1.09a1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M18.483 1.123a1.1 1.1 0 0 0-.752.362a1.09 1.09 0 0 0 .088 1.54a11.96 11.96 0 0 1 4 8.946a7.62 7.62 0 0 1-7.637 7.636a7.62 7.62 0 0 1-7.637-7.636a3.255 3.255 0 0 1 3.273-3.273c1.82 0 3.273 1.45 3.273 3.273a1.09 1.09 0 0 0 1.09 1.09a1.09 1.09 0 0 0 1.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454 2.455-5.454 5.455c0 5.408 4.408 9.818 9.818 9.818S24 17.379 24 11.971A14.16 14.16 0 0 0 19.272 1.4a1.1 1.1 0 0 0-.789-.277M9.818 2.15C4.408 2.151 0 6.561 0 11.97a14.16 14.16 0 0 0 4.8 10.637a1.09 1.09 0 0 0 1.54-.096a1.09 1.09 0 0 0-.095-1.54a11.96 11.96 0 0 1-4.063-9a7.62 7.62 0 0 1 7.636-7.637a7.62 7.62 0 0 1 7.637 7.636a3.256 3.256 0 0 1-3.273 3.273a3.256 3.256 0 0 1-3.273-3.273a1.09 1.09 0 0 0-1.09-1.09a1.09 1.09 0 0 0-1.092 1.09c0 3 2.455 5.455 5.455 5.455s5.454-2.455 5.454-5.455c0-5.408-4.408-9.818-9.818-9.818z"/></svg> </template>
CSS
.icon-lucide {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18.483%201.123a1.1%201.1%200%200%200-.752.362a1.09%201.09%200%200%200%20.088%201.54a11.96%2011.96%200%200%201%204%208.946a7.62%207.62%200%200%201-7.637%207.636a7.62%207.62%200%200%201-7.637-7.636a3.255%203.255%200%200%201%203.273-3.273c1.82%200%203.273%201.45%203.273%203.273a1.09%201.09%200%200%200%201.09%201.09a1.09%201.09%200%200%200%201.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454%202.455-5.454%205.455c0%205.408%204.408%209.818%209.818%209.818S24%2017.379%2024%2011.971A14.16%2014.16%200%200%200%2019.272%201.4a1.1%201.1%200%200%200-.789-.277M9.818%202.15C4.408%202.151%200%206.561%200%2011.97a14.16%2014.16%200%200%200%204.8%2010.637a1.09%201.09%200%200%200%201.54-.096a1.09%201.09%200%200%200-.095-1.54a11.96%2011.96%200%200%201-4.063-9a7.62%207.62%200%200%201%207.636-7.637a7.62%207.62%200%200%201%207.637%207.636a3.256%203.256%200%200%201-3.273%203.273a3.256%203.256%200%200%201-3.273-3.273a1.09%201.09%200%200%200-1.09-1.09a1.09%201.09%200%200%200-1.092%201.09c0%203%202.455%205.455%205.455%205.455s5.454-2.455%205.454-5.455c0-5.408-4.408-9.818-9.818-9.818z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18.483%201.123a1.1%201.1%200%200%200-.752.362a1.09%201.09%200%200%200%20.088%201.54a11.96%2011.96%200%200%201%204%208.946a7.62%207.62%200%200%201-7.637%207.636a7.62%207.62%200%200%201-7.637-7.636a3.255%203.255%200%200%201%203.273-3.273c1.82%200%203.273%201.45%203.273%203.273a1.09%201.09%200%200%200%201.09%201.09a1.09%201.09%200%200%200%201.092-1.09c0-3-2.455-5.455-5.455-5.455s-5.454%202.455-5.454%205.455c0%205.408%204.408%209.818%209.818%209.818S24%2017.379%2024%2011.971A14.16%2014.16%200%200%200%2019.272%201.4a1.1%201.1%200%200%200-.789-.277M9.818%202.15C4.408%202.151%200%206.561%200%2011.97a14.16%2014.16%200%200%200%204.8%2010.637a1.09%201.09%200%200%200%201.54-.096a1.09%201.09%200%200%200-.095-1.54a11.96%2011.96%200%200%201-4.063-9a7.62%207.62%200%200%201%207.636-7.637a7.62%207.62%200%200%201%207.637%207.636a3.256%203.256%200%200%201-3.273%203.273a3.256%203.256%200%200%201-3.273-3.273a1.09%201.09%200%200%200-1.09-1.09a1.09%201.09%200%200%200-1.092%201.09c0%203%202.455%205.455%205.455%205.455s5.454-2.455%205.454-5.455c0-5.408-4.408-9.818-9.818-9.818z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/simple-icons/lucide.svg?color=%231a73e8&size=48