@onesy/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 610 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@onesy/ui-react';
const IconMaterialPushPin = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "PushPin",
short_name: "PushPin",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "m16 12 2 2v2h-5v6l-1 1-1-1v-6H6v-2l2-2V5H7V3h10v2h-1Zm-7.15 2h6.3L14 12.85V5h-4v7.85ZM12 14Z"
}));
});
IconMaterialPushPin.displayName = 'OnesyIconMaterialPushPin';
export default IconMaterialPushPin;