styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.44 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var TimesOutline = 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 19a2.98 2.98 0 01-2.122-.879L12 16.242l-1.879 1.879c-1.133 1.133-3.109 1.133-4.243 0C5.312 17.555 5 16.801 5 16s.312-1.555.879-2.122L7.757 12l-1.878-1.879C5.312 9.555 5 8.801 5 8s.312-1.555.879-2.122c1.133-1.132 3.109-1.133 4.243.001L12 7.758l1.879-1.879c1.133-1.133 3.109-1.133 4.243 0C18.688 6.445 19 7.199 19 8s-.312 1.555-.879 2.122L16.243 12l1.878 1.879c.567.566.879 1.32.879 2.121s-.312 1.555-.879 2.122A2.98 2.98 0 0116 19zm-4-5.586l3.293 3.293a1.024 1.024 0 001.414 0c.189-.189.293-.439.293-.707s-.104-.518-.293-.707L13.415 12l3.292-3.293c.189-.189.293-.44.293-.707s-.104-.518-.293-.707a1.023 1.023 0 00-1.414-.001L12 10.586 8.707 7.293a1.024 1.024 0 00-1.414 0C7.104 7.482 7 7.733 7 8s.104.518.293.707L10.585 12l-3.292 3.293C7.104 15.482 7 15.732 7 16s.104.518.293.707a1.023 1.023 0 001.414.001L12 13.414z", key: "k0" })));
});
TimesOutline.displayName = 'TimesOutline';
export var TimesOutlineDimensions = { height: 24, width: 24 };