12 lines
601 B
JavaScript
12 lines
601 B
JavaScript
import * as React from "react";
|
|
|
|
function IconBrandEtsy({
|
|
size = 24,
|
|
color = "currentColor",
|
|
stroke = 2,
|
|
...props
|
|
}) {
|
|
return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-etsy" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M14 12h-5" /><rect x={3} y={3} width={18} height={18} rx={5} /><path d="M15 16h-5a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1h5" /></svg>;
|
|
}
|
|
|
|
export default IconBrandEtsy; |