UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 886 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Anchor = 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("path", { d: "M18 13.5a1 1 0 00-1 1 5.007 5.007 0 01-4 4.898V12h4a1 1 0 100-2h-4V8.816A2.99 2.99 0 0015 6a3 3 0 10-6 0 2.99 2.99 0 002 2.816V10H7a1 1 0 100 2h4v7.398A5.008 5.008 0 017 14.5a1 1 0 10-2 0c0 3.859 3.141 7 7 7s7-3.141 7-7a1 1 0 00-1-1zM12 5c.551 0 1 .449 1 1s-.449 1-1 1-1-.449-1-1 .449-1 1-1z", key: "k0" }))); }); Anchor.displayName = 'Anchor'; export var AnchorDimensions = { height: 24, width: 24 };