styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 739 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Chip = 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: "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" })));
});
Chip.displayName = 'Chip';
export var ChipDimensions = { height: 24, width: 24 };