UNPKG

styled-icons

Version:

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

14 lines (13 loc) 884 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var BandAid = 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: "M11.646 3.868l-7.778 7.778a6.007 6.007 0 000 8.485 5.984 5.984 0 004.242 1.754 5.984 5.984 0 004.243-1.754l7.778-7.778a6.007 6.007 0 000-8.485 6.008 6.008 0 00-8.485 0zM9 13a1 1 0 110-2 1 1 0 010 2zm3 3a1 1 0 110-2 1 1 0 010 2zm0-6a1 1 0 110-2 1 1 0 010 2zm3 3a1 1 0 110-2 1 1 0 010 2z", key: "k0" }))); }); BandAid.displayName = 'BandAid'; export var BandAidDimensions = { height: 24, width: 24 };