@onesy/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 601 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@onesy/ui-react';
const IconMaterialPushPinFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "PushPinFilled",
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-1Z"
}));
});
IconMaterialPushPinFilled.displayName = 'OnesyIconMaterialPushPinFilled';
export default IconMaterialPushPinFilled;