aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/anchor.js
blob: 42e58948c87e12b182a0d7c343193e46ccf62905 (plain)
1
2
3
4
5
import * as React from "react";

const IconAnchor = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-anchor" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2" /><circle cx={12} cy={6} r={3} /></svg>;

export default IconAnchor;