@scaleflex/icons
Version:
SVG icons as React components
28 lines • 2.03 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 Photos = 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": "Photos",
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: "M25.2752 18.5833C20.6794 18.5833 16.9419 22.3208 16.9419 26.9166C16.9419 31.5125 20.6794 35.25 25.2752 35.25C29.871 35.25 33.6085 31.5125 33.6085 26.9166C33.6085 22.3208 29.871 18.5833 25.2752 18.5833Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M44.1732 12.3333H41.919C41.6627 12.3333 41.4419 12.1604 41.3773 11.9125L40.296 7.57501C39.7668 5.4708 37.8835 4 35.7148 4H14.8356C12.6669 4 10.7836 5.4708 10.2523 7.57706L9.17311 11.9104C9.10856 12.1604 8.88766 12.3333 8.63141 12.3333H6.37721C3.0106 12.3333 0.275146 15.0688 0.275146 18.4333V39.5667C0.275146 42.9312 3.0106 45.6667 6.37721 45.6667H44.1731C47.5398 45.6667 50.2751 42.9312 50.2751 39.5667V18.4333C50.2752 15.0688 47.5398 12.3333 44.1732 12.3333ZM25.2752 39.4167C18.3814 39.4167 12.7752 33.8104 12.7752 26.9166C12.7752 20.0229 18.3814 14.4166 25.2752 14.4166C32.169 14.4166 37.7752 20.0229 37.7752 26.9166C37.7752 33.8104 32.169 39.4167 25.2752 39.4167ZM41.9419 22.75C40.7919 22.75 39.8586 21.8167 39.8586 20.6667C39.8586 19.5167 40.7919 18.5833 41.9419 18.5833C43.0919 18.5833 44.0252 19.5166 44.0252 20.6666C44.0252 21.8166 43.0919 22.75 41.9419 22.75Z",
fill: color
}));
});
export default Photos;