@onesy/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 662 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@onesy/ui-react';
const IconMaterialMagicButton = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "MagicButton",
short_name: "MagicButton",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "m10 19-2.5-5.5L2 11l5.5-2.5L10 3l2.5 5.5L18 11l-5.5 2.5Zm8 2-1.25-2.75L14 17l2.75-1.25L18 13l1.25 2.75L22 17l-2.75 1.25Z"
}));
});
IconMaterialMagicButton.displayName = 'OnesyIconMaterialMagicButton';
export default IconMaterialMagicButton;