styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.35 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var AnchorOutline = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("circle", { cx: 12, cy: 6, r: 1, key: "k0" }),
React.createElement("path", { d: "M19.793 12.096A3.004 3.004 0 0017 8h-.422A4.949 4.949 0 0017 6c0-2.757-2.243-5-5-5S7 3.243 7 6c0 .703.149 1.381.422 2H7a3.004 3.004 0 00-2.793 4.096A3 3 0 003 14.5c0 4.963 4.037 9 9 9s9-4.037 9-9a3 3 0 00-1.207-2.404zM12 21.5c-3.859 0-7-3.141-7-7a1 1 0 112 0 5.007 5.007 0 004 4.898V12H7a1 1 0 110-2h4V8.816A2.99 2.99 0 019 6a3 3 0 116 0 2.99 2.99 0 01-2 2.816V10h4a1 1 0 110 2h-4v7.398a5.008 5.008 0 004-4.898 1 1 0 112 0c0 3.859-3.141 7-7 7zM7.321 13H10v4.962A4.015 4.015 0 018 14.5c0-.597-.263-1.133-.679-1.5zm9.358 0A1.996 1.996 0 0016 14.5a4.015 4.015 0 01-2 3.462V13h2.679z", key: "k1" }),
React.createElement("circle", { cx: 12, cy: 6, r: 1, key: "k2" })));
});
AnchorOutline.displayName = 'AnchorOutline';
export var AnchorOutlineDimensions = { height: 24, width: 24 };