10 lines
567 B
TypeScript
10 lines
567 B
TypeScript
|
|
import React from 'react';
|
|
|
|
export const EraserIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2} {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M19.452 7.618a.875.875 0 00-1.238 0l-7.366 7.366a.875.875 0 000 1.238l7.366 7.366a.875.875 0 001.238 0l3.85-3.85a.875.875 0 000-1.238l-7.366-7.366-3.85-3.85zM4 20h10" />
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M4 20l15-15" />
|
|
</svg>
|
|
);
|