styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 755 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Close = 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 50 50" }, props, { ref: ref }),
React.createElement("path", { d: "M37.304 11.282l1.414 1.414-26.022 26.02-1.414-1.413z", key: "k0" }),
React.createElement("path", { d: "M12.696 11.282l26.022 26.02-1.414 1.415-26.022-26.02z", key: "k1" })));
});
Close.displayName = 'Close';
export var CloseDimensions = { height: 24, width: 24 };