@scaleflex/icons
Version:
SVG icons as React components
31 lines • 1.59 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var TextAlignRight = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "TextAlignRight",
ref: ref,
width: size,
height: size,
viewBox: "0 0 45 29",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M45 1.89502C45 1.20466 44.4404 0.64502 43.75 0.64502H16.25C15.5596 0.64502 15 1.20466 15 1.89502C15 2.58538 15.5596 3.14502 16.25 3.14502H43.75C44.4404 3.14502 45 2.58538 45 1.89502Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M45 14.395C45 13.7047 44.4404 13.145 43.75 13.145H1.25C0.559645 13.145 0 13.7047 0 14.395C0 15.0854 0.559645 15.645 1.25 15.645H43.75C44.4404 15.645 45 15.0854 45 14.395Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M43.75 25.645C44.4404 25.645 45 26.2047 45 26.895C45 27.5854 44.4404 28.145 43.75 28.145H16.25C15.5596 28.145 15 27.5854 15 26.895C15 26.2047 15.5596 25.645 16.25 25.645H43.75Z",
fill: color
}));
});
export default TextAlignRight;