@scaleflex/icons
Version:
SVG icons as React components
25 lines • 3.62 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Account = function Account(_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,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Account",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M43.3047 0H6.78125C6.34961 0 6 0.349609 6 0.78125V49.2188C6 49.6504 6.34961 50 6.78125 50H43.3047C43.7363 50 44.0859 49.6504 44.0859 49.2188V0.78125C44.0859 0.349609 43.7363 0 43.3047 0ZM16.0488 32.5732V35.2002C16.0488 35.6318 15.6992 35.9814 15.2676 35.9814H12.6406C12.209 35.9814 11.8594 35.6318 11.8594 35.2002V32.5732C11.8594 32.1416 12.209 31.792 12.6406 31.792H15.2676C15.6992 31.792 16.0488 32.1416 16.0488 32.5732ZM11.8594 27.8076V25.1807C11.8594 24.749 12.209 24.3994 12.6406 24.3994H15.2676C15.6992 24.3994 16.0488 24.749 16.0488 25.1807V27.8076C16.0488 28.2393 15.6992 28.5889 15.2676 28.5889H12.6406C12.209 28.5889 11.8594 28.2393 11.8594 27.8076ZM16.0488 39.9658V42.5928C16.0488 43.0244 15.6992 43.374 15.2676 43.374H12.6406C12.209 43.374 11.8594 43.0244 11.8594 42.5928V39.9658C11.8594 39.5342 12.209 39.1846 12.6406 39.1846H15.2676C15.6992 39.1846 16.0488 39.5342 16.0488 39.9658ZM23.4414 32.5732V35.2002C23.4414 35.6318 23.0918 35.9814 22.6602 35.9814H20.0332C19.6016 35.9814 19.252 35.6318 19.252 35.2002V32.5732C19.252 32.1416 19.6016 31.792 20.0332 31.792H22.6602C23.0918 31.792 23.4414 32.1416 23.4414 32.5732ZM19.252 27.8076V25.1807C19.252 24.749 19.6016 24.3994 20.0332 24.3994H22.6602C23.0918 24.3994 23.4414 24.749 23.4414 25.1807V27.8076C23.4414 28.2393 23.0918 28.5889 22.6602 28.5889H20.0332C19.6016 28.5889 19.252 28.2393 19.252 27.8076ZM23.4414 39.9658V42.5928C23.4414 43.0244 23.0918 43.374 22.6602 43.374H20.0332C19.6016 43.374 19.252 43.0244 19.252 42.5928V39.9658C19.252 39.5342 19.6016 39.1846 20.0332 39.1846H22.6602C23.0918 39.1846 23.4414 39.5342 23.4414 39.9658ZM30.834 32.5732V35.2002C30.834 35.6318 30.4844 35.9814 30.0527 35.9814H27.4258C26.9941 35.9814 26.6445 35.6318 26.6445 35.2002V32.5732C26.6445 32.1416 26.9941 31.792 27.4258 31.792H30.0527C30.4844 31.792 30.834 32.1416 30.834 32.5732ZM26.6445 27.8076V25.1807C26.6445 24.749 26.9941 24.3994 27.4258 24.3994H30.0527C30.4844 24.3994 30.834 24.749 30.834 25.1807V27.8076C30.834 28.2393 30.4844 28.5889 30.0527 28.5889H27.4258C26.9941 28.5889 26.6445 28.2393 26.6445 27.8076ZM30.834 39.9658V42.5928C30.834 43.0244 30.4844 43.374 30.0527 43.374H27.4258C26.9941 43.374 26.6445 43.0244 26.6445 42.5928V39.9658C26.6445 39.5342 26.9941 39.1846 27.4258 39.1846H30.0527C30.4844 39.1846 30.834 39.5342 30.834 39.9658ZM37.4453 43.374H34.8184C34.3867 43.374 34.0371 43.0244 34.0371 42.5928V25.1807C34.0371 24.749 34.3867 24.3994 34.8184 24.3994H37.4453C37.877 24.3994 38.2266 24.749 38.2266 25.1807V42.5928C38.2266 43.0244 37.877 43.374 37.4453 43.374ZM38.2266 17.7734C38.2266 18.2051 37.877 18.5547 37.4453 18.5547H12.6406C12.209 18.5547 11.8594 18.2051 11.8594 17.7734V6.64062C11.8594 6.20898 12.209 5.85938 12.6406 5.85938H37.4453C37.877 5.85938 38.2266 6.20898 38.2266 6.64062V17.7734Z",
fill: color
}));
};
export default Account;