@webstudio-is/icons 0.210.0 → 0.211.0

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.
@@ -101,6 +101,7 @@ var HeaderIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0
101
101
  var HeadingIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4 8h8M4 13.333V2.667M12 13.333V2.667"/></svg>`;
102
102
  var HelpIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6.057 6c.161-.446.48-.821.898-1.06a2.11 2.11 0 0 1 1.391-.248c.48.08.914.322 1.227.684.313.361.484.831.484 1.29 0 1.334-2.059 2-2.059 2"/><circle cx="8" cy="8" r="6.5" stroke="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8 11.333h0"/></svg>`;
103
103
  var HomeIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M10 14V8.667A.667.667 0 0 0 9.333 8H6.667A.667.667 0 0 0 6 8.667V14"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2 6.667a1.333 1.333 0 0 1 .473-1.019l4.666-4a1.333 1.333 0 0 1 1.722 0l4.666 4A1.332 1.332 0 0 1 14 6.667v6A1.334 1.334 0 0 1 12.667 14H3.333A1.334 1.334 0 0 1 2 12.667v-6Z"/></svg>`;
104
+ var HtmlElementIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M13.556 2H3.444C2.647 2 2 2.647 2 3.444v10.112C2 14.353 2.647 15 3.444 15h10.112c.797 0 1.444-.647 1.444-1.444V3.444C15 2.647 14.353 2 13.556 2Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M10.5 10 12 8.5 10.5 7M6 7 4.5 8.5 6 10m3.188-4.5-1.876 6"/></svg>`;
104
105
  var ImageIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12.667 2H3.333C2.597 2 2 2.597 2 3.333v9.334C2 13.403 2.597 14 3.333 14h9.334c.736 0 1.333-.597 1.333-1.333V3.333C14 2.597 13.403 2 12.667 2Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6 7.333a1.333 1.333 0 1 0 0-2.666 1.333 1.333 0 0 0 0 2.666ZM14 10l-2.057-2.057a1.333 1.333 0 0 0-1.886 0L4 14"/></svg>`;
105
106
  var InfoCircleIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><circle cx="8" cy="8" r="6.5" stroke="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8 11.516V7.853"/><rect width="1.4" height="1.4" x="7.3" y="4.484" fill="currentColor" rx=".7"/></svg>`;
106
107
  var ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2 6h.007M5.333 10H14M5.333 6H14"/></svg>`;
@@ -311,6 +312,7 @@ export {
311
312
  HeadingIcon,
312
313
  HelpIcon,
313
314
  HomeIcon,
315
+ HtmlElementIcon,
314
316
  ImageIcon,
315
317
  InfoCircleIcon,
316
318
  ItemIcon,
package/lib/index.js CHANGED
@@ -3094,6 +3094,43 @@ var HomeIcon = forwardRef(
3094
3094
  }
3095
3095
  );
3096
3096
  HomeIcon.displayName = "HomeIcon";
3097
+ var HtmlElementIcon = forwardRef(
3098
+ ({ fill = "none", size = 16, ...props }, forwardedRef) => {
3099
+ return /* @__PURE__ */ jsxs(
3100
+ "svg",
3101
+ {
3102
+ xmlns: "http://www.w3.org/2000/svg",
3103
+ viewBox: "0 0 16 16",
3104
+ width: size,
3105
+ height: size,
3106
+ fill,
3107
+ ...props,
3108
+ ref: forwardedRef,
3109
+ children: [
3110
+ /* @__PURE__ */ jsx(
3111
+ "path",
3112
+ {
3113
+ stroke: "currentColor",
3114
+ strokeLinecap: "round",
3115
+ strokeLinejoin: "round",
3116
+ d: "M13.556 2H3.444C2.647 2 2 2.647 2 3.444v10.112C2 14.353 2.647 15 3.444 15h10.112c.797 0 1.444-.647 1.444-1.444V3.444C15 2.647 14.353 2 13.556 2Z"
3117
+ }
3118
+ ),
3119
+ /* @__PURE__ */ jsx(
3120
+ "path",
3121
+ {
3122
+ stroke: "currentColor",
3123
+ strokeLinecap: "round",
3124
+ strokeLinejoin: "round",
3125
+ d: "M10.5 10 12 8.5 10.5 7M6 7 4.5 8.5 6 10m3.188-4.5-1.876 6"
3126
+ }
3127
+ )
3128
+ ]
3129
+ }
3130
+ );
3131
+ }
3132
+ );
3133
+ HtmlElementIcon.displayName = "HtmlElementIcon";
3097
3134
  var ImageIcon = forwardRef(
3098
3135
  ({ fill = "none", size = 16, ...props }, forwardedRef) => {
3099
3136
  return /* @__PURE__ */ jsxs(
@@ -7001,6 +7038,7 @@ export {
7001
7038
  HeadingIcon,
7002
7039
  HelpIcon,
7003
7040
  HomeIcon,
7041
+ HtmlElementIcon,
7004
7042
  ImageIcon,
7005
7043
  InfoCircleIcon,
7006
7044
  ItemIcon,
@@ -101,6 +101,7 @@ export declare const HeaderIcon: IconComponent;
101
101
  export declare const HeadingIcon: IconComponent;
102
102
  export declare const HelpIcon: IconComponent;
103
103
  export declare const HomeIcon: IconComponent;
104
+ export declare const HtmlElementIcon: IconComponent;
104
105
  export declare const ImageIcon: IconComponent;
105
106
  export declare const InfoCircleIcon: IconComponent;
106
107
  export declare const ItemIcon: IconComponent;
@@ -100,6 +100,7 @@ export declare const HeaderIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fil
100
100
  export declare const HeadingIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 8h8M4 13.333V2.667M12 13.333V2.667\"/></svg>";
101
101
  export declare const HelpIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M6.057 6c.161-.446.48-.821.898-1.06a2.11 2.11 0 0 1 1.391-.248c.48.08.914.322 1.227.684.313.361.484.831.484 1.29 0 1.334-2.059 2-2.059 2\"/><circle cx=\"8\" cy=\"8\" r=\"6.5\" stroke=\"currentColor\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 11.333h0\"/></svg>";
102
102
  export declare const HomeIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M10 14V8.667A.667.667 0 0 0 9.333 8H6.667A.667.667 0 0 0 6 8.667V14\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M2 6.667a1.333 1.333 0 0 1 .473-1.019l4.666-4a1.333 1.333 0 0 1 1.722 0l4.666 4A1.332 1.332 0 0 1 14 6.667v6A1.334 1.334 0 0 1 12.667 14H3.333A1.334 1.334 0 0 1 2 12.667v-6Z\"/></svg>";
103
+ export declare const HtmlElementIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M13.556 2H3.444C2.647 2 2 2.647 2 3.444v10.112C2 14.353 2.647 15 3.444 15h10.112c.797 0 1.444-.647 1.444-1.444V3.444C15 2.647 14.353 2 13.556 2Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M10.5 10 12 8.5 10.5 7M6 7 4.5 8.5 6 10m3.188-4.5-1.876 6\"/></svg>";
103
104
  export declare const ImageIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12.667 2H3.333C2.597 2 2 2.597 2 3.333v9.334C2 13.403 2.597 14 3.333 14h9.334c.736 0 1.333-.597 1.333-1.333V3.333C14 2.597 13.403 2 12.667 2Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M6 7.333a1.333 1.333 0 1 0 0-2.666 1.333 1.333 0 0 0 0 2.666ZM14 10l-2.057-2.057a1.333 1.333 0 0 0-1.886 0L4 14\"/></svg>";
104
105
  export declare const InfoCircleIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><circle cx=\"8\" cy=\"8\" r=\"6.5\" stroke=\"currentColor\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 11.516V7.853\"/><rect width=\"1.4\" height=\"1.4\" x=\"7.3\" y=\"4.484\" fill=\"currentColor\" rx=\".7\"/></svg>";
105
106
  export declare const ItemIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M2 6h.007M5.333 10H14M5.333 6H14\"/></svg>";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.210.0",
3
+ "version": "0.211.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",