@shulex/icons 1.0.37 → 1.0.38
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,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", { d: "M8 1.33a.67.67 0 0 1 0 1.34H3.33c-.36 0-.66.3-.66.66v9.34c0 .36.3.66.66.66H8a.67.67 0 0 1 0 1.34H3.33a2 2 0 0 1-2-2V3.33c0-1.1.9-2 2-2z" }), /* @__PURE__ */ React.createElement("path", { d: "M10.53 4.53a.67.67 0 0 1 .94 0l2.97 2.97a.66.66 0 0 1 .03.97l-3 3a.67.67 0 1 1-.94-.94l1.86-1.87H5.33a.67.67 0 0 1 0-1.33h7.06l-1.86-1.86a.67.67 0 0 1 0-.94" }));
|
|
4
|
+
const SignOutOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(SignOutOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "SignOutOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -273,6 +273,7 @@ export { default as ShoppingFilled } from './ShoppingFilled';
|
|
|
273
273
|
export { default as ShoppingOutlined } from './ShoppingOutlined';
|
|
274
274
|
export { default as ShrinkOutlined } from './ShrinkOutlined';
|
|
275
275
|
export { default as ShulexLogoColored } from './ShulexLogoColored';
|
|
276
|
+
export { default as SignOutOutlined } from './SignOutOutlined';
|
|
276
277
|
export { default as SkillOutlined } from './SkillOutlined';
|
|
277
278
|
export { default as SlackLogoColored } from './SlackLogoColored';
|
|
278
279
|
export { default as SleepClockFilled } from './SleepClockFilled';
|
package/dist/icons/index.mjs
CHANGED
|
@@ -273,6 +273,7 @@ export { default as ShoppingFilled } from "./ShoppingFilled.mjs";
|
|
|
273
273
|
export { default as ShoppingOutlined } from "./ShoppingOutlined.mjs";
|
|
274
274
|
export { default as ShrinkOutlined } from "./ShrinkOutlined.mjs";
|
|
275
275
|
export { default as ShulexLogoColored } from "./ShulexLogoColored.mjs";
|
|
276
|
+
export { default as SignOutOutlined } from "./SignOutOutlined.mjs";
|
|
276
277
|
export { default as SkillOutlined } from "./SkillOutlined.mjs";
|
|
277
278
|
export { default as SlackLogoColored } from "./SlackLogoColored.mjs";
|
|
278
279
|
export { default as SleepClockFilled } from "./SleepClockFilled.mjs";
|