UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.12 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Waves = 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: "M15 19a5.23 5.23 0 01-3.707-1.532 3.246 3.246 0 00-4.586 0 .999.999 0 11-1.414-1.414 5.25 5.25 0 017.414 0 3.248 3.248 0 004.586 0 .999.999 0 111.414 1.414A5.227 5.227 0 0115 19zm0-4a5.23 5.23 0 01-3.707-1.532 3.246 3.246 0 00-4.586 0 .999.999 0 11-1.414-1.414 5.25 5.25 0 017.414 0 3.248 3.248 0 004.586 0 .999.999 0 111.414 1.414A5.227 5.227 0 0115 15zm0-4a5.23 5.23 0 01-3.707-1.532 3.246 3.246 0 00-4.586 0 .999.999 0 11-1.414-1.414 5.25 5.25 0 017.414 0 3.248 3.248 0 004.586 0 .999.999 0 111.414 1.414A5.227 5.227 0 0115 11z", key: "k0" }))); }); Waves.displayName = 'Waves'; export var WavesDimensions = { height: 24, width: 24 };