styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 847 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Loader = 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: "M2 11h5v2H2zm15 0h5v2h-5zm-6 6h2v5h-2zm0-15h2v5h-2zM4.222 5.636l1.414-1.414 3.536 3.536-1.414 1.414zM19.778 18.364l-1.414 1.414-3.536-3.536 1.414-1.414zM7.758 14.828l1.414 1.414-3.536 3.536-1.414-1.414zM14.828 7.757l3.536-3.535 1.414 1.415-3.536 3.535z", key: "k0" })));
});
Loader.displayName = 'Loader';
export var LoaderDimensions = { height: 24, width: 24 };