styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
18 lines (17 loc) • 979 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var CallMissedOutgoing = 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("defs", { key: "k0" },
React.createElement("path", { d: "M24 24H0V0h24v24z" })),
React.createElement("clipPath", { key: "k1" },
React.createElement("use", { overflow: "visible", xlinkHref: "#a" })),
React.createElement("path", { d: "M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z", clipPath: "url(#b)", key: "k2" })));
});
CallMissedOutgoing.displayName = 'CallMissedOutgoing';
export var CallMissedOutgoingDimensions = { height: 24, width: 24 };