@webstudio-is/icons 0.182.0 → 0.185.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.
Files changed (41) hide show
  1. package/lib/index.js +133 -483
  2. package/lib/types/generate.d.ts +0 -1
  3. package/lib/types/src/__generated__/components.d.ts +199 -199
  4. package/lib/types/src/chevron-double-left.d.ts +2 -3
  5. package/lib/types/src/cross-circled-filled.d.ts +2 -3
  6. package/lib/types/src/cross-small.d.ts +2 -3
  7. package/lib/types/src/cross.d.ts +2 -3
  8. package/lib/types/src/gear.d.ts +3 -4
  9. package/lib/types/src/index.d.ts +0 -12
  10. package/lib/types/src/index.stories.d.ts +5 -17
  11. package/lib/types/src/magnifying-glass.d.ts +2 -3
  12. package/lib/types/src/new-folder.d.ts +2 -3
  13. package/lib/types/src/new-page.d.ts +2 -3
  14. package/lib/types/src/size.d.ts +2 -3
  15. package/lib/types/src/text-align-center.d.ts +2 -3
  16. package/lib/types/src/text-align-justify.d.ts +2 -3
  17. package/lib/types/src/text-align-right.d.ts +2 -3
  18. package/lib/types/src/text-capitalize.d.ts +2 -3
  19. package/lib/types/src/text-direction-ltr.d.ts +2 -3
  20. package/lib/types/src/text-direction-rtl.d.ts +2 -3
  21. package/lib/types/src/text-hyphen.d.ts +2 -3
  22. package/lib/types/src/text-lowercase.d.ts +2 -3
  23. package/lib/types/src/text-strikethrough.d.ts +2 -3
  24. package/lib/types/src/text-truncate.d.ts +2 -3
  25. package/lib/types/src/text-underline.d.ts +2 -3
  26. package/lib/types/src/text-uppercase.d.ts +2 -3
  27. package/lib/types/src/trash.d.ts +2 -3
  28. package/package.json +1 -1
  29. package/lib/types/src/chevron-double-down.d.ts +0 -3
  30. package/lib/types/src/chevron-double-right.d.ts +0 -3
  31. package/lib/types/src/chevron-double-up.d.ts +0 -3
  32. package/lib/types/src/cross-large.d.ts +0 -3
  33. package/lib/types/src/devices.d.ts +0 -3
  34. package/lib/types/src/justify-items-center.d.ts +0 -3
  35. package/lib/types/src/justify-items-end.d.ts +0 -3
  36. package/lib/types/src/justify-items-space-around.d.ts +0 -3
  37. package/lib/types/src/justify-items-space-between.d.ts +0 -3
  38. package/lib/types/src/justify-items-start.d.ts +0 -3
  39. package/lib/types/src/redo.d.ts +0 -3
  40. package/lib/types/src/twitter.d.ts +0 -2
  41. package/lib/types/src/undo.d.ts +0 -3
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextDirectionLTRIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextDirectionLTRIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextDirectionRTLIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextDirectionRTLIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextHyphenIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextHyphenIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextLowercaseIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextLowercaseIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextStrikethroughIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextStrikethroughIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextTruncateIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextTruncateIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextUnderlineIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextUnderlineIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TextUppercaseIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextUppercaseIcon: IconComponent;
@@ -1,3 +1,2 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const TrashIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
1
+ import type { IconComponent } from "./types";
2
+ export declare const TrashIcon: IconComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.182.0",
3
+ "version": "0.185.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const ChevronDoubleDownIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const ChevronDoubleRightIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const ChevronDoubleUpIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const CrossLargeIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const DevicesIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const JustifyItemsCenterIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const JustifyItemsEndIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const JustifyItemsSpaceAroundIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const JustifyItemsSpaceBetweenIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const JustifyItemsStartIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const RedoIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -1,2 +0,0 @@
1
- import type { IconProps } from "./types";
2
- export declare const TwitterIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const UndoIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;