styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 881 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Pulse = 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: "M16.97 4.757a.999.999 0 00-1.918-.073l-3.186 9.554-2.952-6.644a1.002 1.002 0 00-1.843.034L5.323 12H2v2h3.323c.823 0 1.552-.494 1.856-1.257l.869-2.172 3.037 6.835c.162.363.521.594.915.594l.048-.001a.998.998 0 00.9-.683l2.914-8.742.979 3.911A1.995 1.995 0 0018.781 14H22v-2h-3.22l-1.81-7.243z", key: "k0" })));
});
Pulse.displayName = 'Pulse';
export var PulseDimensions = { height: 24, width: 24 };