@webstudio-is/icons 0.133.0 → 0.134.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.
- package/lib/__generated__/svg/index.js +12 -0
- package/lib/index.js +673 -637
- package/lib/types/src/__generated__/dynamic-page.d.ts +3 -0
- package/lib/types/src/__generated__/index.d.ts +3 -0
- package/lib/types/src/__generated__/maximize.d.ts +3 -0
- package/lib/types/src/__generated__/minimize.d.ts +3 -0
- package/lib/types/src/__generated__/svg/dynamic-page.d.ts +1 -0
- package/lib/types/src/__generated__/svg/index.d.ts +3 -0
- package/lib/types/src/__generated__/svg/maximize.d.ts +1 -0
- package/lib/types/src/__generated__/svg/minimize.d.ts +1 -0
- package/package.json +1 -1
|
@@ -82,6 +82,7 @@ export * from "./div";
|
|
|
82
82
|
export * from "./dot";
|
|
83
83
|
export * from "./dotted-border";
|
|
84
84
|
export * from "./drag-handle";
|
|
85
|
+
export * from "./dynamic-page";
|
|
85
86
|
export * from "./email";
|
|
86
87
|
export * from "./embed";
|
|
87
88
|
export * from "./external-link";
|
|
@@ -119,9 +120,11 @@ export * from "./list-item";
|
|
|
119
120
|
export * from "./list-view";
|
|
120
121
|
export * from "./list";
|
|
121
122
|
export * from "./loading-dots";
|
|
123
|
+
export * from "./maximize";
|
|
122
124
|
export * from "./menu-ellipses";
|
|
123
125
|
export * from "./mic-off";
|
|
124
126
|
export * from "./mic";
|
|
127
|
+
export * from "./minimize";
|
|
125
128
|
export * from "./minus";
|
|
126
129
|
export * from "./navigation-menu";
|
|
127
130
|
export * from "./no-wrap";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DynamicPageIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill-rule=\"evenodd\" d=\"M8.55 2.308a9.96 9.96 0 0 0-.543-.008H6.08c-.515 0-.862 0-1.13.022-.26.022-.386.06-.472.103a1.15 1.15 0 0 0-.503.503c-.043.086-.081.213-.103.473-.022.267-.022.614-.022 1.13v1.24c0 .514 0 2.86.022 3.128.022.26.06.388.103.473.11.217.287.392.503.503.086.043.213.081.473.103.267.022.614.022 1.129.022h3.84c.515 0 .862 0 1.13-.022.26-.022.386-.06.472-.103a1.15 1.15 0 0 0 .503-.503c.043-.085.081-.213.103-.473.021-.267.022-2.614.022-3.129v2.673c0-.277-.002-2.436-.008-2.543H10.14c-.15 0-.3 0-.427-.01a1.263 1.263 0 0 1-.48-.126 1.25 1.25 0 0 1-.547-.546 1.263 1.263 0 0 1-.126-.48c-.01-.128-.01-.277-.01-.428V2.308Zm.903-1.095a2.451 2.451 0 0 0-.427-.145C8.743 1 8.45 1 8.071 1H6.053c-.481 0-.881 0-1.208.027-.34.028-.658.088-.957.24a2.45 2.45 0 0 0-1.071 1.07c-.153.3-.213.618-.24.958-.027.327-.027.727-.027 1.209v1.293c0 .481 0 2.881.027 3.208.027.34.087.658.24.957.235.461.61.836 1.07 1.071.3.153.617.213.958.24.327.027.727.027 1.208.027h3.894c.481 0 .881 0 1.208-.027.34-.027.658-.087.957-.24a2.45 2.45 0 0 0 1.071-1.07c.152-.3.213-.617.24-.958.027-.327.027-2.727.027-3.208v2.646-.064c0-.378 0-2.672-.068-2.955a2.445 2.445 0 0 0-.293-.708c-.152-.25-.36-.457-.628-.724l-.045-.045-1.913-1.913-.045-.045c-.267-.268-.475-.476-.723-.628a2.452 2.452 0 0 0-.281-.148Zm.397 2.006V4.29c0 .15 0 .241.004.306.065.004.156.004.306.004h1.07L9.85 3.22Z\" clip-rule=\"evenodd\"/><path fill-rule=\"evenodd\" d=\"M8 11c.65 0 .65.141.65.5v.403c.42.173.754.508.927.928h3.173a.65.65 0 1 1 0 1.3H9.577a1.706 1.706 0 0 1-3.154 0H3.25a.65.65 0 1 1 0-1.3h3.173c.173-.42.508-.755.927-.928V11.5c0-.359 0-.5.65-.5Zm0 2.075a.405.405 0 1 0 0 .811.405.405 0 0 0 0-.811Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -82,6 +82,7 @@ export { DivIcon } from "./div";
|
|
|
82
82
|
export { DotIcon } from "./dot";
|
|
83
83
|
export { DottedBorderIcon } from "./dotted-border";
|
|
84
84
|
export { DragHandleIcon } from "./drag-handle";
|
|
85
|
+
export { DynamicPageIcon } from "./dynamic-page";
|
|
85
86
|
export { EmailIcon } from "./email";
|
|
86
87
|
export { EmbedIcon } from "./embed";
|
|
87
88
|
export { ExternalLinkIcon } from "./external-link";
|
|
@@ -119,9 +120,11 @@ export { ListItemIcon } from "./list-item";
|
|
|
119
120
|
export { ListViewIcon } from "./list-view";
|
|
120
121
|
export { ListIcon } from "./list";
|
|
121
122
|
export { LoadingDotsIcon } from "./loading-dots";
|
|
123
|
+
export { MaximizeIcon } from "./maximize";
|
|
122
124
|
export { MenuEllipsesIcon } from "./menu-ellipses";
|
|
123
125
|
export { MicOffIcon } from "./mic-off";
|
|
124
126
|
export { MicIcon } from "./mic";
|
|
127
|
+
export { MinimizeIcon } from "./minimize";
|
|
125
128
|
export { MinusIcon } from "./minus";
|
|
126
129
|
export { NavigationMenuIcon } from "./navigation-menu";
|
|
127
130
|
export { NoWrapIcon } from "./no-wrap";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MaximizeIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path d=\"M10.333 3.65a.65.65 0 0 1 0-1.3H14a.65.65 0 0 1 .65.65v3.667a.65.65 0 1 1-1.3 0V4.569l-3.168 3.168a.65.65 0 1 1-.92-.919l3.169-3.168h-2.098ZM7.737 9.263a.65.65 0 0 1 0 .919L4.57 13.35h2.098a.65.65 0 1 1 0 1.3H3a.65.65 0 0 1-.65-.65v-3.667a.65.65 0 0 1 1.3 0v2.098l3.168-3.168a.65.65 0 0 1 .92 0Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MinimizeIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path d=\"M14.46 2.54a.65.65 0 0 1 0 .92L11.29 6.628h2.098a.65.65 0 1 1 0 1.3H9.722a.65.65 0 0 1-.65-.65V3.61a.65.65 0 1 1 1.3 0V5.71L13.54 2.54a.65.65 0 0 1 .92 0ZM2.96 9.722a.65.65 0 0 1 .65-.65h3.667a.65.65 0 0 1 .65.65v3.667a.65.65 0 0 1-1.3 0V11.29L3.46 14.46a.65.65 0 0 1-.92-.92l3.169-3.168H3.61a.65.65 0 0 1-.65-.65Z\" clip-rule=\"evenodd\"/></svg>";
|