@webstudio-is/icons 0.123.0 → 0.125.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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const FolderIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -85,6 +85,7 @@ export * from "./embed";
85
85
  export * from "./external-link";
86
86
  export * from "./eyecon-closed";
87
87
  export * from "./eyecon-open";
88
+ export * from "./folder";
88
89
  export * from "./footer";
89
90
  export * from "./form-text-area";
90
91
  export * from "./form-text-field";
@@ -100,8 +101,7 @@ export * from "./heading";
100
101
  export * from "./help";
101
102
  export * from "./home";
102
103
  export * from "./image";
103
- export * from "./info";
104
- export * from "./information";
104
+ export * from "./info-circle";
105
105
  export * from "./item";
106
106
  export * from "./j-c-center";
107
107
  export * from "./j-c-end";
@@ -114,6 +114,7 @@ export * from "./link-2-unlinked";
114
114
  export * from "./link-2";
115
115
  export * from "./link";
116
116
  export * from "./list-item";
117
+ export * from "./list-view";
117
118
  export * from "./list";
118
119
  export * from "./loading-dots";
119
120
  export * from "./menu-ellipses";
@@ -143,6 +144,8 @@ export * from "./reset";
143
144
  export * from "./scroll";
144
145
  export * from "./section-link";
145
146
  export * from "./select";
147
+ export * from "./shadow-inset";
148
+ export * from "./shadow-normal";
146
149
  export * from "./shrink";
147
150
  export * from "./slider";
148
151
  export * from "./slot-component";
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const InfoCircleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const ListViewIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
2
  import type { IconProps } from "../types";
3
- export declare const InformationIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export declare const ShadowInsetIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const ShadowNormalIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1 @@
1
+ export declare const FolderIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M6.838 2.687c-.063-.021-.147-.03-.625-.03H3.92c-.347 0-.568 0-.735.014a.643.643 0 0 0-.235.046.55.55 0 0 0-.24.24.643.643 0 0 0-.046.235c-.013.167-.014.388-.014.735v.099h4.983a21.92 21.92 0 0 0-.292-.684c-.18-.39-.249-.48-.298-.528a.55.55 0 0 0-.205-.127Zm2.2 1.339-.104-.256c-.143-.35-.317-.767-.414-.975-.176-.38-.329-.676-.567-.91a1.85 1.85 0 0 0-.691-.427c-.297-.102-.618-.102-.971-.101H3.895c-.315 0-.59 0-.816.019-.24.02-.484.063-.719.183a1.85 1.85 0 0 0-.808.808c-.12.235-.164.479-.183.719-.019.227-.019.501-.019.816v6.578c0 .481 0 .881.027 1.208.028.34.088.658.24.957.235.461.61.836 1.07 1.071.3.153.618.213.958.24.327.027.727.027 1.209.027h6.293c.481 0 .881 0 1.208-.027.34-.027.658-.087.957-.24a2.45 2.45 0 0 0 1.071-1.07c.153-.3.213-.617.24-.958.027-.327.027-.727.027-1.208V7.53c0-.482 0-.882-.027-1.21-.027-.34-.087-.657-.24-.956a2.45 2.45 0 0 0-1.07-1.071c-.3-.153-.617-.213-.958-.24a16.033 16.033 0 0 0-1.208-.027H9.038Zm-.453 1.3H11.12c.515 0 .862 0 1.13.022.26.022.386.06.472.103.216.11.392.287.503.503.043.086.081.213.103.473.022.267.022.614.022 1.129v2.897c0 .515 0 .862-.022 1.13-.022.26-.06.387-.103.472a1.15 1.15 0 0 1-.503.503c-.085.043-.213.082-.473.103-.267.022-.614.022-1.129.022H4.88c-.515 0-.862 0-1.13-.022-.26-.021-.386-.06-.472-.103a1.15 1.15 0 0 1-.503-.503c-.043-.085-.081-.213-.103-.473a15.479 15.479 0 0 1-.022-1.129V5.326h5.935Z\" clip-rule=\"evenodd\"/></svg>";
@@ -85,6 +85,7 @@ export { EmbedIcon } from "./embed";
85
85
  export { ExternalLinkIcon } from "./external-link";
86
86
  export { EyeconClosedIcon } from "./eyecon-closed";
87
87
  export { EyeconOpenIcon } from "./eyecon-open";
88
+ export { FolderIcon } from "./folder";
88
89
  export { FooterIcon } from "./footer";
89
90
  export { FormTextAreaIcon } from "./form-text-area";
90
91
  export { FormTextFieldIcon } from "./form-text-field";
@@ -100,8 +101,7 @@ export { HeadingIcon } from "./heading";
100
101
  export { HelpIcon } from "./help";
101
102
  export { HomeIcon } from "./home";
102
103
  export { ImageIcon } from "./image";
103
- export { InfoIcon } from "./info";
104
- export { InformationIcon } from "./information";
104
+ export { InfoCircleIcon } from "./info-circle";
105
105
  export { ItemIcon } from "./item";
106
106
  export { JCCenterIcon } from "./j-c-center";
107
107
  export { JCEndIcon } from "./j-c-end";
@@ -114,6 +114,7 @@ export { Link2UnlinkedIcon } from "./link-2-unlinked";
114
114
  export { Link2Icon } from "./link-2";
115
115
  export { LinkIcon } from "./link";
116
116
  export { ListItemIcon } from "./list-item";
117
+ export { ListViewIcon } from "./list-view";
117
118
  export { ListIcon } from "./list";
118
119
  export { LoadingDotsIcon } from "./loading-dots";
119
120
  export { MenuEllipsesIcon } from "./menu-ellipses";
@@ -143,6 +144,8 @@ export { ResetIcon } from "./reset";
143
144
  export { ScrollIcon } from "./scroll";
144
145
  export { SectionLinkIcon } from "./section-link";
145
146
  export { SelectIcon } from "./select";
147
+ export { ShadowInsetIcon } from "./shadow-inset";
148
+ export { ShadowNormalIcon } from "./shadow-normal";
146
149
  export { ShrinkIcon } from "./shrink";
147
150
  export { SliderIcon } from "./slider";
148
151
  export { SlotComponentIcon } from "./slot-component";
@@ -0,0 +1 @@
1
+ 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;\"><path d=\"M8 13.35a5.35 5.35 0 1 0 0-10.7 5.35 5.35 0 0 0 0 10.7ZM14.65 8a6.65 6.65 0 1 1-13.3 0 6.65 6.65 0 0 1 13.3 0Z\" clip-rule=\"evenodd\"/><path d=\"M8.8 4.913a.8.8 0 0 1-.8.8h-.009a.8.8 0 0 1 0-1.6H8a.8.8 0 0 1 .8.8ZM8 11.737a.65.65 0 0 1-.65-.65v-3.43a.65.65 0 1 1 1.3 0v3.43a.65.65 0 0 1-.65.65Z\" clip-rule=\"evenodd\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const ListViewIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill=\"#11181C\" fill-rule=\"evenodd\" d=\"M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM2.65 6.65v2.7h10.7v-2.7H2.65Zm10.7-1.3H2.65V5.2c0-.57 0-.96.025-1.26.024-.294.068-.446.122-.553.13-.254.336-.46.59-.59.107-.054.259-.098.552-.122.301-.024.69-.025 1.261-.025h5.6c.57 0 .96 0 1.26.025.294.024.446.068.553.122.254.13.46.336.59.59.054.107.098.26.122.552.025.301.025.69.025 1.261v.15Zm0 5.3H2.65v.15c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26v-.15Z\" clip-rule=\"evenodd\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const ShadowInsetIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 14 14\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M1.65 7a5.35 5.35 0 1 1 10.7 0 5.35 5.35 0 0 1-10.7 0ZM7 .35a6.65 6.65 0 1 0 0 13.3A6.65 6.65 0 0 0 7 .35ZM4.315 7a2.685 2.685 0 0 1 5.37 0 .65.65 0 1 0 1.3 0 3.985 3.985 0 1 0-7.97 0 .65.65 0 0 0 1.3 0Z\" clip-rule=\"evenodd\"/></svg>";
@@ -0,0 +1 @@
1
+ export declare const ShadowNormalIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 12 14\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M1.985 5.665a4.015 4.015 0 1 1 8.03 0 4.015 4.015 0 0 1-8.03 0ZM6 .35a5.315 5.315 0 1 0 0 10.63A5.315 5.315 0 0 0 6 .35Zm5.64 10.957a.65.65 0 0 0-.919-.919 6.681 6.681 0 0 1-9.448.006.65.65 0 1 0-.92.919c3.116 3.116 8.17 3.112 11.288-.006Z\" clip-rule=\"evenodd\"/></svg>";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.123.0",
3
+ "version": "0.125.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import type { IconProps } from "../types";
3
- export declare const InfoIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -1 +0,0 @@
1
- export declare const InfoIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path d=\"M8.76 5.628a.75.75 0 1 0-1.5 0v2.828a.75.75 0 1 0 1.5 0V5.628ZM8 9.626a.75.75 0 1 0 0 1.5h.007a.75.75 0 1 0 0-1.5H8Z\"/><path fill-rule=\"evenodd\" d=\"M8 2.35a5.65 5.65 0 1 0 0 11.3 5.65 5.65 0 0 0 0-11.3ZM4.924 4.924a4.35 4.35 0 1 1 6.152 6.152 4.35 4.35 0 0 1-6.152-6.152Z\" clip-rule=\"evenodd\"/></svg>";
@@ -1 +0,0 @@
1
- export declare const InformationIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill=\"#707375\" fill-rule=\"evenodd\" d=\"M8 2.65a5.35 5.35 0 1 0 0 10.7 5.35 5.35 0 0 0 0-10.7ZM1.35 8a6.65 6.65 0 1 1 13.3 0 6.65 6.65 0 0 1-13.3 0Z\" clip-rule=\"evenodd\"/><path fill=\"#707375\" fill-rule=\"evenodd\" d=\"M7.2 11.087a.8.8 0 0 1 .8-.8h.009a.8.8 0 0 1 0 1.6H8a.8.8 0 0 1-.8-.8ZM8 4.263a.65.65 0 0 1 .65.65v3.43a.65.65 0 0 1-1.3 0v-3.43a.65.65 0 0 1 .65-.65Z\" clip-rule=\"evenodd\"/></svg>";