UNPKG

styled-icons

Version:

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

16 lines (15 loc) 862 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.Chip = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M19 7a2 2 0 00-2-2h-1V2h-2v3h-4V2H8v3H7a2 2 0 00-2 2v1H2v2h3v4H2v2h3v1a2 2 0 002 2h1v3h2v-3h4v3h2v-3h1a2 2 0 002-2v-1h3v-2h-3v-4h3V8h-3V7zm-4 8H9V9h6v6z", key: "k0" }))); }); exports.Chip.displayName = 'Chip'; exports.ChipDimensions = { height: 24, width: 24 };