UNPKG

styled-icons

Version:

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

15 lines (14 loc) 1.11 kB
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: "M6.455 19L2 22.5V4a1 1 0 011-1h18a1 1 0 011 1v14a1 1 0 01-1 1H6.455zm1.69-6.929l-.975.563 1 1.732.976-.563c.501.51 1.14.887 1.854 1.071V16h2v-1.126a3.996 3.996 0 001.854-1.071l.976.563 1-1.732-.975-.563a4.004 4.004 0 000-2.142l.975-.563-1-1.732-.976.563A3.996 3.996 0 0013 7.126V6h-2v1.126a3.996 3.996 0 00-1.854 1.071l-.976-.563-1 1.732.975.563a4.004 4.004 0 000 2.142zM12 13a2 2 0 110-4 2 2 0 010 4z", key: "k1" }))); }); ChatSettings.displayName = 'ChatSettings'; export var ChatSettingsDimensions = { height: 24, width: 24 };