@webstudio-is/icons 0.28.0 → 0.29.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.
@@ -11,7 +11,6 @@ const DotIcon = forwardRef(
11
11
  ...props,
12
12
  ref: forwardedRef,
13
13
  children: /* @__PURE__ */ jsx("path", {
14
- fill: "#11181C",
15
14
  d: "M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
16
15
  })
17
16
  });
@@ -34,7 +34,6 @@ const DotIcon = (0, import_react.forwardRef)(
34
34
  ...props,
35
35
  ref: forwardedRef,
36
36
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
- fill: "#11181C",
38
37
  d: "M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
39
38
  })
40
39
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@radix-ui/react-icons": "^1.1.0",
26
26
  "react": "^17.0.2",
27
- "@webstudio-is/css-vars": "^0.28.0"
27
+ "@webstudio-is/css-vars": "^0.29.0"
28
28
  },
29
29
  "module": "./lib/index.js",
30
30
  "exports": {
@@ -7,7 +7,7 @@ import type { IconProps } from "../types";
7
7
  export const DotIcon = forwardRef<SVGSVGElement, IconProps>(
8
8
  ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
9
  return (
10
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fill="#11181C" d="M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" /></svg>
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path d="M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" /></svg>
11
11
  );
12
12
  }
13
13
  );