@scaleflex/icons
Version:
SVG icons as React components
27 lines • 1.18 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 CropCinemaScope = function CropCinemaScope(_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": "CropCinemaScope",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 22",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M0 1.62561C0 0.762665 0.699555 0.0631104 1.5625 0.0631104H48.4375C49.3004 0.0631104 50 0.762665 50 1.62561V20.3756C50 21.2386 49.3004 21.9381 48.4375 21.9381H1.5625C0.699555 21.9381 0 21.2386 0 20.3756V1.62561ZM3.125 3.18811V18.8131H46.875V3.18811H3.125Z",
fill: color
}));
};
export default CropCinemaScope;