UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.06 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Target = 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 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M16 7h-1.577A6.516 6.516 0 009 1.577V0H7v1.577A6.516 6.516 0 001.577 7H0v2h1.577A6.516 6.516 0 007 14.423V16h2v-1.577A6.516 6.516 0 0014.423 9H16V7zm-3.612 0h-1.559A3.008 3.008 0 009 5.171V3.612A4.516 4.516 0 0112.388 7zM8 9a1 1 0 110-2 1 1 0 010 2zM7 3.612v1.559A3.008 3.008 0 005.171 7H3.612A4.516 4.516 0 017 3.612zM3.612 9h1.559A3.008 3.008 0 007 10.829v1.559A4.516 4.516 0 013.612 9zM9 12.388v-1.559A3.008 3.008 0 0010.829 9h1.559A4.516 4.516 0 019 12.388z", key: "k0" }))); }); Target.displayName = 'Target'; export var TargetDimensions = { height: 16, width: 16 };