styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 788 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var TransferAlt = 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: "M19.924 10.383a1 1 0 00-.217-1.09l-5-5-1.414 1.414L16.586 9H4v2h15a1 1 0 00.924-.617zM4.076 13.617a1 1 0 00.217 1.09l5 5 1.414-1.414L7.414 15H20v-2H5a.999.999 0 00-.924.617z", key: "k0" })));
});
TransferAlt.displayName = 'TransferAlt';
export var TransferAltDimensions = { height: 24, width: 24 };