@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.6 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Veterinary({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Veterinary",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M4.488 1.374C3.518.525 2 1.214 2 2.503V13a9 9 0 0 0 9 9h2a9 9 0 0 0 9-9V2.503c0-1.289-1.518-1.978-2.488-1.129l-2.764 2.419-.052-.014a47.264 47.264 0 0 0-1.387-.351C14.266 3.18 12.906 2.9 12 2.9c-.906 0-2.266.28-3.309.527-.541.128-1.032.255-1.387.351l-.052.014-2.764-2.419ZM4 3.604l2.341 2.05A.995.995 0 0 0 7 5.9v2a1 1 0 0 0 2 0V5.41l.151-.037c.632-.15 1.287-.287 1.849-.375V7.9a1 1 0 0 0 2 0V5a25.5 25.5 0 0 1 2 .41V7.9a1 1 0 0 0 2 0V5.902a.996.996 0 0 0 .659-.247L20 3.604V13a7 7 0 0 1-7 7v-2.978l1.115-1.116a1 1 0 1 0-1.414-1.414l-.707.707-.707-.707a1 1 0 0 0-1.414 1.414L11 17.034V20a7 7 0 0 1-7-7V3.605Z",
shapeRendering: "geometricPrecision"
}));
}
Veterinary.displayName = 'Veterinary';
export default createBaseComponent(Veterinary);