@shulex/icons 1.0.41 → 1.0.43

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("g", { clipPath: "url(#clip0_7770_613)" }, /* @__PURE__ */ React.createElement("path", { fill: "#010101", d: "M4 0h16q4 0 4 4v16q0 4-4 4H4q-4 0-4-4V4q0-4 4-4" }), /* @__PURE__ */ React.createElement("path", { fill: "#EE1D51", d: "M15.15 22a1.37 1.37 0 1 0 0-2.74h-.2a1.37 1.37 0 1 1 0 2.74z" }), /* @__PURE__ */ React.createElement("path", { fill: "#66C8CF", d: "M14.95 19.26h-.21a1.37 1.37 0 1 0 0 2.74h.2a1.37 1.37 0 1 1 0-2.74" }), /* @__PURE__ */ React.createElement("path", { fill: "#010101", d: "M14 20.68a1 1 0 1 0 2 0 1 1 0 0 0-2 0" }), /* @__PURE__ */ React.createElement("path", { fill: "#fff", d: "M4.42 18.95v.7h.81v2.65h.82v-2.64h.66l.23-.71zm6.67 0v.7h.81v2.65h.81v-2.64h.67l.23-.71zm-4 .4a.4.4 0 0 1 .4-.4.4.4 0 0 1 .28.67.4.4 0 0 1-.56 0 .4.4 0 0 1-.12-.28m0 .67h.8v2.28h-.8zm1.14-1.07v3.35h.8v-.87l.24-.22.77 1.1h.86L9.78 20.7l1-.98h-.96l-.8.79v-1.56zm8.57 0v3.35h.8v-.87l.24-.22.78 1.1h.85l-1.11-1.61 1-.98h-.97l-.8.79v-1.56zm-1.85 3.01c.76 0 1.38-.61 1.38-1.37s-.62-1.37-1.38-1.37h-.02c-.76 0-1.38.61-1.38 1.37s.62 1.37 1.38 1.37zm-.68-1.37a.67.67 0 0 1 1.34 0 .67.67 0 0 1-.93.62.7.7 0 0 1-.41-.62" }), /* @__PURE__ */ React.createElement("path", { fill: "#EE1D52", d: "M15.39 7.42a6.3 6.3 0 0 0 3.66 1.16v-2.6q-.39 0-.77-.09v2.06a6.3 6.3 0 0 1-3.66-1.17v5.33c0 1.79-.99 3.43-2.57 4.27-1.59.84-3.5.74-5-.25a4.86 4.86 0 0 0 8.34-3.38zm.95-2.64a3.6 3.6 0 0 1-.95-2.13v-.33h-.73c.18 1.02.8 1.92 1.68 2.46m-7.59 9.3a2.2 2.2 0 0 1-.05-2.61 2.2 2.2 0 0 1 2.5-.83V7.97a5 5 0 0 0-.77-.05V10c-1.11-.35-2.3.2-2.74 1.27a2.2 2.2 0 0 0 1.06 2.8" }), /* @__PURE__ */ React.createElement("path", { fill: "#fff", d: "M14.68 6.78a6.2 6.2 0 0 0 3.64 1.17V5.89a3.7 3.7 0 0 1-1.94-1.1 3.7 3.7 0 0 1-1.66-2.47h-1.9v10.43a2.21 2.21 0 0 1-3.97 1.33A2.21 2.21 0 0 1 10.5 10V7.92a4.82 4.82 0 0 0-3.35 8.2 4.82 4.82 0 0 0 7.52-4z" }), /* @__PURE__ */ React.createElement("path", { fill: "#69C9D0", d: "M18.32 5.92v-.56q-1.06-.01-1.95-.56c.52.57 1.2.96 1.95 1.12m-3.62-3.6-.04-.3v-.34H12v10.5a2.22 2.22 0 0 1-3.22 1.97 2.22 2.22 0 0 0 4-1.33V2.32zm-4.23 5.64v-.6a4.85 4.85 0 0 0-3.37 8.85 4.86 4.86 0 0 1 3.37-8.25" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "clip0_7770_613" }, /* @__PURE__ */ React.createElement("path", { fill: "#fff", d: "M0 0H24V24H0z" }))));
4
+ const TiktokLogoColored = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: true });
5
+ const RefIcon = React.forwardRef(TiktokLogoColored);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "TiktokLogoColored";
8
+ }
9
+ export default RefIcon;
@@ -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 24 24", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M14.94 19.92a.67.67 0 1 1-.47 1.14.7.7 0 0 1-.2-.47c0-.37.3-.67.67-.67M12.81 2.32v10.43q0 .52-.22.96.2-.43.2-.9V2.33zM9.81 9.9q.3 0 .61.08V10q-.3-.1-.6-.1M14.68 6.78c.99.71 2.17 1.12 3.38 1.16a6.3 6.3 0 0 1-3.38-1.12z" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M20 0q4 0 4 4v16q0 4-4 4H4q-4 0-4-4V4q0-4 4-4zM8.23 18.95v3.35h.8v-.87l.24-.22.77 1.1h.86L9.78 20.7l1-.98h-.96l-.8.79v-1.56zm8.57 0v3.35h.8v-.87l.24-.22.78 1.1h.85l-1.11-1.61 1-.98h-.97l-.79.79v-1.56zm-12.38 0v.7h.82v2.65h.81v-2.64h.66l.23-.71zm2.67 1.07v2.28h.8v-2.28zm4-1.07v.7h.81v2.65h.81v-2.64h.67l.23-.71zm3.84.27c-.76 0-1.38.61-1.38 1.37s.62 1.37 1.38 1.37h.02c.76 0 1.38-.61 1.38-1.37s-.62-1.37-1.38-1.37zm-7.44-.27a.4.4 0 1 0 .28.67.4.4 0 0 0-.28-.68M12 1.68v10.5a2.22 2.22 0 0 1-3.03 2.05l-.13-.15-.16-.09a2.2 2.2 0 0 1 .01-2.52 2.2 2.2 0 0 1 2.5-.83V7.97a5 5 0 0 0-.73-.05v-.55A4.85 4.85 0 0 0 7.1 16.2a4.86 4.86 0 0 1 .73-7.4 4.82 4.82 0 0 0-.67 7.32c.73.48 1.57.77 2.44.81-.9-.03-1.78-.3-2.55-.81a4.87 4.87 0 0 0 8.34-3.38V7.42a6.3 6.3 0 0 0 3.66 1.16v-2.6q-.37 0-.73-.08v-.54q-1 0-1.88-.51l-.06-.07-.1-.07c-.5-.57-.82-1.3-.9-2.06v-.33h-.68l-.04-.3v-.34z", clipRule: "evenodd" }));
4
+ const TiktokLogoFilled = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(TiktokLogoFilled);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "TiktokLogoFilled";
8
+ }
9
+ export default RefIcon;
@@ -310,6 +310,8 @@ export { default as ThumbsdownFilled } from './ThumbsdownFilled';
310
310
  export { default as ThumbsdownOutlined } from './ThumbsdownOutlined';
311
311
  export { default as ThumbsupFilled } from './ThumbsupFilled';
312
312
  export { default as ThumbsupOutlined } from './ThumbsupOutlined';
313
+ export { default as TiktokLogoColored } from './TiktokLogoColored';
314
+ export { default as TiktokLogoFilled } from './TiktokLogoFilled';
313
315
  export { default as ToolFilled } from './ToolFilled';
314
316
  export { default as ToolOutlined } from './ToolOutlined';
315
317
  export { default as ToolsOutlined } from './ToolsOutlined';
@@ -310,6 +310,8 @@ export { default as ThumbsdownFilled } from "./ThumbsdownFilled.mjs";
310
310
  export { default as ThumbsdownOutlined } from "./ThumbsdownOutlined.mjs";
311
311
  export { default as ThumbsupFilled } from "./ThumbsupFilled.mjs";
312
312
  export { default as ThumbsupOutlined } from "./ThumbsupOutlined.mjs";
313
+ export { default as TiktokLogoColored } from "./TiktokLogoColored.mjs";
314
+ export { default as TiktokLogoFilled } from "./TiktokLogoFilled.mjs";
313
315
  export { default as ToolFilled } from "./ToolFilled.mjs";
314
316
  export { default as ToolOutlined } from "./ToolOutlined.mjs";
315
317
  export { default as ToolsOutlined } from "./ToolsOutlined.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shulex/icons",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "private": false,
5
5
  "description": "Shulex 图标组件库",
6
6
  "license": "MIT",