styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 1.12 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ChatSettings = 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: "M22 12h-2V5H4v13.385L5.763 17H12v2H6.455L2 22.5V4a1 1 0 011-1h18a1 1 0 011 1v8zm-7.855 7.071a4.004 4.004 0 010-2.142l-.975-.563 1-1.732.976.563A3.996 3.996 0 0117 14.126V13h2v1.126a3.99 3.99 0 011.854 1.071l.976-.563 1 1.732-.975.563a4.004 4.004 0 010 2.142l.975.563-1 1.732-.976-.563c-.501.51-1.14.887-1.854 1.071V23h-2v-1.126a3.996 3.996 0 01-1.854-1.071l-.976.563-1-1.732.975-.563zM18 20a2 2 0 100-4 2 2 0 000 4z", key: "k1" })));
});
ChatSettings.displayName = 'ChatSettings';
export var ChatSettingsDimensions = { height: 24, width: 24 };