styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 907 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Remixicon = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("path", { d: "M16.53 17.53L20 21H3V4h10.667v.008A7.118 7.118 0 0114.136 4c-.089.37-.136.76-.136 1.166C14 7.485 16.015 9.5 18.667 9.5a4.18 4.18 0 002.032-.538 7.003 7.003 0 01-4.17 8.567zM18.5 7.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z", key: "k1" })));
});
Remixicon.displayName = 'Remixicon';
export var RemixiconDimensions = { height: 24, width: 24 };