UNPKG

styled-icons

Version:

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

17 lines (16 loc) 860 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Category = 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: "M12 2l-5.5 9h11z", key: "k0" }), React.createElement("circle", { cx: 17.5, cy: 17.5, r: 4.5, key: "k1" }), React.createElement("path", { d: "M3 13.5h8v8H3z", key: "k2" }), React.createElement("path", { fill: "none", d: "M0 0h24v24H0z", key: "k3" }))); }); Category.displayName = 'Category'; export var CategoryDimensions = { height: 24, width: 24 };