@shulex/icons 1.0.35 → 1.0.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,9 @@
1
+ import ShulexIcon from "../components/ShulexIcon.mjs";
2
+ import * as React from "react";
3
+ const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M11 .67q1.17 0 1.8.6c.42.43.53.96.53 1.4 0 .49-.26.95-.62 1.33a2 2 0 0 1 1.96 2v2q0 .37-.18.67.17.3.18.66v4a2 2 0 0 1-2 2H3.33a2 2 0 0 1-2-2v-4q0-.37.18-.66-.17-.3-.18-.67V6A2 2 0 0 1 3.3 4a2 2 0 0 1-.62-1.33c0-.44.1-.97.53-1.4q.63-.6 1.8-.6c.6 0 1.1.35 1.48.7.4.35.76.81 1.07 1.25q.25.36.45.7.2-.34.45-.7c.3-.44.67-.9 1.07-1.26.37-.34.89-.7 1.48-.7M2.67 13.33c0 .37.3.67.66.67h4V9.33H2.67zm6 .67h4c.37 0 .66-.3.66-.67v-4H8.67zM3.33 5.33c-.36 0-.66.3-.66.67v2h4.66V5.33zM8.67 8h4.66V6c0-.37-.3-.67-.66-.67h-4zM5 2c-.56 0-.78.14-.86.22Q4 2.33 4 2.67c0 .03.06.28.46.6.36.3.9.58 1.61.73h.79l-.4-.62q-.43-.62-.88-1.03C5.27 2.06 5.08 2 5 2m6 0c-.07 0-.27.06-.58.35q-.46.41-.87 1.03-.23.32-.4.62h.78c.7-.15 1.25-.43 1.6-.72.4-.33.47-.58.47-.61q-.01-.34-.14-.45c-.08-.08-.3-.22-.86-.22", clipRule: "evenodd" }));
4
+ const GiftOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(GiftOutlined);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "GiftOutlined";
8
+ }
9
+ export default RefIcon;
@@ -138,6 +138,7 @@ export { default as ForbiddenOutlined } from './ForbiddenOutlined';
138
138
  export { default as ForwardOutlined } from './ForwardOutlined';
139
139
  export { default as FreshdeskLogoColored } from './FreshdeskLogoColored';
140
140
  export { default as GenerationProcessOutlined } from './GenerationProcessOutlined';
141
+ export { default as GiftOutlined } from './GiftOutlined';
141
142
  export { default as GmailLogoColored } from './GmailLogoColored';
142
143
  export { default as GoogleCalendarColored } from './GoogleCalendarColored';
143
144
  export { default as GoogleLogoColored } from './GoogleLogoColored';
@@ -138,6 +138,7 @@ export { default as ForbiddenOutlined } from "./ForbiddenOutlined.mjs";
138
138
  export { default as ForwardOutlined } from "./ForwardOutlined.mjs";
139
139
  export { default as FreshdeskLogoColored } from "./FreshdeskLogoColored.mjs";
140
140
  export { default as GenerationProcessOutlined } from "./GenerationProcessOutlined.mjs";
141
+ export { default as GiftOutlined } from "./GiftOutlined.mjs";
141
142
  export { default as GmailLogoColored } from "./GmailLogoColored.mjs";
142
143
  export { default as GoogleCalendarColored } from "./GoogleCalendarColored.mjs";
143
144
  export { default as GoogleLogoColored } from "./GoogleLogoColored.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shulex/icons",
3
- "version": "1.0.35",
3
+ "version": "1.0.37",
4
4
  "private": false,
5
5
  "description": "Shulex 图标组件库",
6
6
  "license": "MIT",