@webstudio-is/icons 0.191.4 → 0.192.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,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const ChevronDoubleLeftIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const CrossCircledFilledIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const CrossSmallIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const CrossIcon: IconComponent;
@@ -0,0 +1,7 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const gearIconCssVars: ({ fill, }: {
3
+ fill: string;
4
+ }) => {
5
+ "--ws-gear-icon-fill": string;
6
+ };
7
+ export declare const GearIcon: IconComponent;
@@ -0,0 +1,24 @@
1
+ export * from "./__generated__/components";
2
+ export * from "./types";
3
+ export * from "./trash";
4
+ export * from "./size";
5
+ export * from "./gear";
6
+ export * from "./new-page";
7
+ export * from "./new-folder";
8
+ export * from "./chevron-double-left";
9
+ export * from "./cross-circled-filled";
10
+ export * from "./cross";
11
+ export * from "./magnifying-glass";
12
+ export * from "./cross-small";
13
+ export * from "./text-align-center";
14
+ export * from "./text-align-justify";
15
+ export * from "./text-align-right";
16
+ export * from "./text-capitalize";
17
+ export * from "./text-hyphen";
18
+ export * from "./text-lowercase";
19
+ export * from "./text-strikethrough";
20
+ export * from "./text-truncate";
21
+ export * from "./text-underline";
22
+ export * from "./text-uppercase";
23
+ export * from "./text-direction-ltr";
24
+ export * from "./text-direction-rtl";
@@ -0,0 +1,7 @@
1
+ import type { ReactNode } from "react";
2
+ import type { Meta } from "@storybook/react";
3
+ export declare const Icons: ({ testColor }: {
4
+ testColor: boolean;
5
+ }) => ReactNode;
6
+ declare const IconsMeta: Meta<typeof Icons>;
7
+ export default IconsMeta;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const MagnifyingGlassIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const NewFolderIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const NewPageIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const SizeIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextAlignCenterIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextAlignJustifyIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextAlignRightIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextCapitalizeIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextDirectionLTRIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextDirectionRTLIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextHyphenIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextLowercaseIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextStrikethroughIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextTruncateIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextUnderlineIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TextUppercaseIcon: IconComponent;
@@ -0,0 +1,2 @@
1
+ import type { IconComponent } from "./types";
2
+ export declare const TrashIcon: IconComponent;
@@ -0,0 +1,9 @@
1
+ import type { SVGAttributes, RefAttributes, ForwardRefExoticComponent } from "react";
2
+ export interface IconProps extends SVGAttributes<SVGElement> {
3
+ children?: never;
4
+ color?: string;
5
+ size?: number | string;
6
+ }
7
+ export type IconComponent = ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
8
+ export type IconRecord = Record<string, IconComponent>;
9
+ export type IconRecords = Record<string, IconRecord>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.191.4",
3
+ "version": "0.192.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",