@shulex/icons 1.0.19 → 1.0.20

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", { fill: "none", viewBox: "0 0 24 24", ...props }, /* @__PURE__ */ React.createElement("path", { fill: "#3372E6", d: "M22.7 4.96q.3.46.3 1.04v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 .18-.83l9.47 8.6a2 2 0 0 0 2.7 0l9.47-8.6z" }), /* @__PURE__ */ React.createElement("path", { fill: "#4A92F4", d: "M21 4c.52 0 1 .2 1.35.53l-9.08 7.43a2 2 0 0 1-2.54 0L1.65 4.53A2 2 0 0 1 3 4z" }));
4
+ const Email2Colored = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: true });
5
+ const RefIcon = React.forwardRef(Email2Colored);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "Email2Colored";
8
+ }
9
+ export default RefIcon;
@@ -93,6 +93,7 @@ export { default as EditFlashTwoOutlined } from './EditFlashTwoOutlined';
93
93
  export { default as EditFlashTwoOutlinedAiColored } from './EditFlashTwoOutlinedAiColored';
94
94
  export { default as EditOutlined } from './EditOutlined';
95
95
  export { default as EllipsisOutlined } from './EllipsisOutlined';
96
+ export { default as Email2Colored } from './Email2Colored';
96
97
  export { default as EmailCircleColored } from './EmailCircleColored';
97
98
  export { default as EmailColored } from './EmailColored';
98
99
  export { default as EmailFilled } from './EmailFilled';
@@ -93,6 +93,7 @@ export { default as EditFlashTwoOutlined } from "./EditFlashTwoOutlined.mjs";
93
93
  export { default as EditFlashTwoOutlinedAiColored } from "./EditFlashTwoOutlinedAiColored.mjs";
94
94
  export { default as EditOutlined } from "./EditOutlined.mjs";
95
95
  export { default as EllipsisOutlined } from "./EllipsisOutlined.mjs";
96
+ export { default as Email2Colored } from "./Email2Colored.mjs";
96
97
  export { default as EmailCircleColored } from "./EmailCircleColored.mjs";
97
98
  export { default as EmailColored } from "./EmailColored.mjs";
98
99
  export { default as EmailFilled } from "./EmailFilled.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shulex/icons",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "private": false,
5
5
  "description": "Shulex 图标组件库",
6
6
  "license": "MIT",