29 lines
649 B
JavaScript
29 lines
649 B
JavaScript
/**
|
|
* @license lucide-static v0.511.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const Eraser = `
|
|
<svg
|
|
class="lucide lucide-eraser"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<path d="m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21" />
|
|
<path d="M22 21H7" />
|
|
<path d="m5 11 9 9" />
|
|
</svg>
|
|
`;
|
|
|
|
export { Eraser as default };
|
|
//# sourceMappingURL=eraser.js.map
|