@webstudio-is/icons 0.47.0 → 0.49.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 (39) hide show
  1. package/lib/__generated__/alert.js +29 -0
  2. package/lib/__generated__/commit.js +25 -0
  3. package/lib/__generated__/github.js +25 -0
  4. package/lib/__generated__/google.js +37 -0
  5. package/lib/__generated__/index.js +8 -0
  6. package/lib/__generated__/information.js +33 -0
  7. package/lib/__generated__/repeat-column.js +23 -0
  8. package/lib/__generated__/repeat-grid.js +23 -0
  9. package/lib/__generated__/repeat-row.js +23 -0
  10. package/lib/cjs/__generated__/alert.cjs +49 -0
  11. package/lib/cjs/__generated__/commit.cjs +45 -0
  12. package/lib/cjs/__generated__/github.cjs +45 -0
  13. package/lib/cjs/{google.cjs → __generated__/google.cjs} +20 -15
  14. package/lib/cjs/__generated__/index.cjs +8 -0
  15. package/lib/cjs/__generated__/information.cjs +53 -0
  16. package/lib/cjs/__generated__/repeat-column.cjs +43 -0
  17. package/lib/cjs/__generated__/repeat-grid.cjs +43 -0
  18. package/lib/cjs/__generated__/repeat-row.cjs +43 -0
  19. package/lib/cjs/index.cjs +0 -2
  20. package/lib/cjs/legacy.cjs +0 -1
  21. package/lib/index.js +0 -2
  22. package/lib/legacy.js +0 -2
  23. package/package.json +4 -3
  24. package/src/__generated__/alert.tsx +15 -0
  25. package/src/__generated__/commit.tsx +15 -0
  26. package/src/__generated__/github.tsx +15 -0
  27. package/src/__generated__/google.tsx +15 -0
  28. package/src/__generated__/index.ts +8 -0
  29. package/src/__generated__/information.tsx +15 -0
  30. package/src/__generated__/repeat-column.tsx +15 -0
  31. package/src/__generated__/repeat-grid.tsx +15 -0
  32. package/src/__generated__/repeat-row.tsx +15 -0
  33. package/src/index.ts +0 -2
  34. package/src/legacy.ts +0 -1
  35. package/lib/cjs/github.cjs +0 -52
  36. package/lib/github.js +0 -26
  37. package/lib/google.js +0 -26
  38. package/src/github.tsx +0 -24
  39. package/src/google.tsx +0 -24
@@ -0,0 +1,29 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const AlertIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 22 22",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ d: "M9.213 2.567c.784-1.393 2.79-1.393 3.573 0l8.09 14.378C21.645 18.31 20.657 20 19.089 20H2.91c-1.568 0-2.555-1.689-1.786-3.055l8.09-14.378Zm2.266.736a.55.55 0 0 0-.959 0L2.431 17.68a.55.55 0 0 0 .48.82h16.178a.55.55 0 0 0 .48-.82l-8.09-14.377Z",
16
+ clipRule: "evenodd"
17
+ }),
18
+ /* @__PURE__ */ jsx("path", {
19
+ d: "M11 7.5a.75.75 0 0 1 .75.75v3.658a.75.75 0 0 1-1.5 0V8.25A.75.75 0 0 1 11 7.5ZM10.1 15.583a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 0 1.8h-.01a.9.9 0 0 1-.9-.9Z",
20
+ clipRule: "evenodd"
21
+ })
22
+ ]
23
+ });
24
+ }
25
+ );
26
+ AlertIcon.displayName = "AlertIcon";
27
+ export {
28
+ AlertIcon
29
+ };
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const CommitIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 22 22",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ fill: "#000",
15
+ fillRule: "evenodd",
16
+ d: "M11 7.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Zm-4.691 2.5a4.751 4.751 0 0 1 9.382 0h4.459a.75.75 0 0 1 0 1.5h-4.459a4.751 4.751 0 0 1-9.382 0H1.85a.75.75 0 0 1 0-1.5h4.459Z",
17
+ clipRule: "evenodd"
18
+ })
19
+ });
20
+ }
21
+ );
22
+ CommitIcon.displayName = "CommitIcon";
23
+ export {
24
+ CommitIcon
25
+ };
@@ -0,0 +1,25 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const GithubIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 22 22",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ fill: "#11181C",
15
+ fillRule: "evenodd",
16
+ d: "M11 1C5.475 1 1 5.475 1 11a9.994 9.994 0 0 0 6.838 9.488c.5.087.687-.213.687-.476 0-.237-.013-1.024-.013-1.862-2.512.463-3.162-.612-3.362-1.175-.113-.288-.6-1.175-1.025-1.413-.35-.187-.85-.65-.013-.662.788-.013 1.35.725 1.538 1.025.9 1.512 2.337 1.087 2.912.825.088-.65.35-1.088.638-1.338-2.225-.25-4.55-1.112-4.55-4.937 0-1.088.387-1.987 1.025-2.688-.1-.25-.45-1.274.1-2.65 0 0 .837-.262 2.75 1.026a9.28 9.28 0 0 1 2.5-.338c.85 0 1.7.112 2.5.337 1.912-1.3 2.75-1.024 2.75-1.024.55 1.375.2 2.4.1 2.65.637.7 1.025 1.587 1.025 2.687 0 3.838-2.337 4.688-4.562 4.938.362.312.675.912.675 1.85 0 1.337-.013 2.412-.013 2.75 0 .262.188.574.688.474A10.016 10.016 0 0 0 21 11c0-5.525-4.475-10-10-10Z",
17
+ clipRule: "evenodd"
18
+ })
19
+ });
20
+ }
21
+ );
22
+ GithubIcon.displayName = "GithubIcon";
23
+ export {
24
+ GithubIcon
25
+ };
@@ -0,0 +1,37 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const GoogleIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 22 22",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ fill: "#4285F4",
16
+ d: "M11 9.182v3.873h5.382a4.611 4.611 0 0 1-2.01 3.009l3.246 2.518c1.891-1.745 2.982-4.31 2.982-7.355 0-.709-.064-1.39-.182-2.045H11Z"
17
+ }),
18
+ /* @__PURE__ */ jsx("path", {
19
+ fill: "#34A853",
20
+ d: "m5.396 12.903-.732.56-2.591 2.019C3.718 18.746 7.09 21 11 21c2.7 0 4.963-.89 6.618-2.418l-3.246-2.518c-.89.6-2.027.963-3.372.963-2.6 0-4.81-1.754-5.6-4.118l-.004-.006Z"
21
+ }),
22
+ /* @__PURE__ */ jsx("path", {
23
+ fill: "#FBBC05",
24
+ d: "M2.073 6.518A9.877 9.877 0 0 0 1 11c0 1.618.39 3.136 1.073 4.482C2.073 15.49 5.4 12.9 5.4 12.9c-.2-.6-.318-1.236-.318-1.9 0-.664.118-1.3.318-1.9L2.073 6.518Z"
25
+ }),
26
+ /* @__PURE__ */ jsx("path", {
27
+ fill: "#EA4335",
28
+ d: "M11 4.982c1.473 0 2.782.509 3.827 1.49l2.864-2.863C15.954 1.991 13.7 1 11 1 7.09 1 3.718 3.245 2.073 6.518L5.4 9.1c.79-2.364 3-4.118 5.6-4.118Z"
29
+ })
30
+ ]
31
+ });
32
+ }
33
+ );
34
+ GoogleIcon.displayName = "GoogleIcon";
35
+ export {
36
+ GoogleIcon
37
+ };
@@ -1,3 +1,4 @@
1
+ export * from "./alert";
1
2
  export * from "./auto-scroll";
2
3
  export * from "./blockquote";
3
4
  export * from "./box-link";
@@ -14,13 +15,17 @@ export * from "./chevron-filled-left";
14
15
  export * from "./chevron-filled-right";
15
16
  export * from "./chevron-filled-up";
16
17
  export * from "./code";
18
+ export * from "./commit";
17
19
  export * from "./dash";
18
20
  export * from "./dot";
19
21
  export * from "./drag-handle";
20
22
  export * from "./eyecon-closed";
21
23
  export * from "./eyecon-open";
24
+ export * from "./github";
25
+ export * from "./google";
22
26
  export * from "./hamburger-menu";
23
27
  export * from "./info";
28
+ export * from "./information";
24
29
  export * from "./linked";
25
30
  export * from "./list-item";
26
31
  export * from "./list";
@@ -28,6 +33,9 @@ export * from "./offline";
28
33
  export * from "./play";
29
34
  export * from "./radio-checked";
30
35
  export * from "./radio-unchecked";
36
+ export * from "./repeat-column";
37
+ export * from "./repeat-grid";
38
+ export * from "./repeat-row";
31
39
  export * from "./scroll";
32
40
  export * from "./subscript";
33
41
  export * from "./subtract";
@@ -0,0 +1,33 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const InformationIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ fill: "#707375",
16
+ fillRule: "evenodd",
17
+ 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",
18
+ clipRule: "evenodd"
19
+ }),
20
+ /* @__PURE__ */ jsx("path", {
21
+ fill: "#707375",
22
+ fillRule: "evenodd",
23
+ 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",
24
+ clipRule: "evenodd"
25
+ })
26
+ ]
27
+ });
28
+ }
29
+ );
30
+ InformationIcon.displayName = "InformationIcon";
31
+ export {
32
+ InformationIcon
33
+ };
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const RepeatColumnIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ fill: "#11181C",
15
+ d: "M6.335 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM6.335 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM7.005 11.337c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99c0-.37-.3-.67-.67-.67h-1.99Z"
16
+ })
17
+ });
18
+ }
19
+ );
20
+ RepeatColumnIcon.displayName = "RepeatColumnIcon";
21
+ export {
22
+ RepeatColumnIcon
23
+ };
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const RepeatGridIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ fill: "#11181C",
15
+ d: "M1.333 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM1.333 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM4.663 12.007c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM6.335 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM9.665 7.005c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM6.335 12.007c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM14.667 2.003c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM11.337 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM14.667 12.007c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99Z"
16
+ })
17
+ });
18
+ }
19
+ );
20
+ RepeatGridIcon.displayName = "RepeatGridIcon";
21
+ export {
22
+ RepeatGridIcon
23
+ };
@@ -0,0 +1,23 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const RepeatRowIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ fill: "#11181C",
15
+ d: "M1.333 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM6.335 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM12.007 6.335c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99c0-.37-.3-.67-.67-.67h-1.99Z"
16
+ })
17
+ });
18
+ }
19
+ );
20
+ RepeatRowIcon.displayName = "RepeatRowIcon";
21
+ export {
22
+ RepeatRowIcon
23
+ };
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var alert_exports = {};
20
+ __export(alert_exports, {
21
+ AlertIcon: () => AlertIcon
22
+ });
23
+ module.exports = __toCommonJS(alert_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const AlertIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 22 22",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: [
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ d: "M9.213 2.567c.784-1.393 2.79-1.393 3.573 0l8.09 14.378C21.645 18.31 20.657 20 19.089 20H2.91c-1.568 0-2.555-1.689-1.786-3.055l8.09-14.378Zm2.266.736a.55.55 0 0 0-.959 0L2.431 17.68a.55.55 0 0 0 .48.82h16.178a.55.55 0 0 0 .48-.82l-8.09-14.377Z",
39
+ clipRule: "evenodd"
40
+ }),
41
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
42
+ d: "M11 7.5a.75.75 0 0 1 .75.75v3.658a.75.75 0 0 1-1.5 0V8.25A.75.75 0 0 1 11 7.5ZM10.1 15.583a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 0 1.8h-.01a.9.9 0 0 1-.9-.9Z",
43
+ clipRule: "evenodd"
44
+ })
45
+ ]
46
+ });
47
+ }
48
+ );
49
+ AlertIcon.displayName = "AlertIcon";
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var commit_exports = {};
20
+ __export(commit_exports, {
21
+ CommitIcon: () => CommitIcon
22
+ });
23
+ module.exports = __toCommonJS(commit_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const CommitIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 22 22",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ fill: "#000",
38
+ fillRule: "evenodd",
39
+ d: "M11 7.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Zm-4.691 2.5a4.751 4.751 0 0 1 9.382 0h4.459a.75.75 0 0 1 0 1.5h-4.459a4.751 4.751 0 0 1-9.382 0H1.85a.75.75 0 0 1 0-1.5h4.459Z",
40
+ clipRule: "evenodd"
41
+ })
42
+ });
43
+ }
44
+ );
45
+ CommitIcon.displayName = "CommitIcon";
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var github_exports = {};
20
+ __export(github_exports, {
21
+ GithubIcon: () => GithubIcon
22
+ });
23
+ module.exports = __toCommonJS(github_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const GithubIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 22 22",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ fill: "#11181C",
38
+ fillRule: "evenodd",
39
+ d: "M11 1C5.475 1 1 5.475 1 11a9.994 9.994 0 0 0 6.838 9.488c.5.087.687-.213.687-.476 0-.237-.013-1.024-.013-1.862-2.512.463-3.162-.612-3.362-1.175-.113-.288-.6-1.175-1.025-1.413-.35-.187-.85-.65-.013-.662.788-.013 1.35.725 1.538 1.025.9 1.512 2.337 1.087 2.912.825.088-.65.35-1.088.638-1.338-2.225-.25-4.55-1.112-4.55-4.937 0-1.088.387-1.987 1.025-2.688-.1-.25-.45-1.274.1-2.65 0 0 .837-.262 2.75 1.026a9.28 9.28 0 0 1 2.5-.338c.85 0 1.7.112 2.5.337 1.912-1.3 2.75-1.024 2.75-1.024.55 1.375.2 2.4.1 2.65.637.7 1.025 1.587 1.025 2.687 0 3.838-2.337 4.688-4.562 4.938.362.312.675.912.675 1.85 0 1.337-.013 2.412-.013 2.75 0 .262.188.574.688.474A10.016 10.016 0 0 0 21 11c0-5.525-4.475-10-10-10Z",
40
+ clipRule: "evenodd"
41
+ })
42
+ });
43
+ }
44
+ );
45
+ GithubIcon.displayName = "GithubIcon";
@@ -1,9 +1,7 @@
1
1
  "use strict";
2
- var __create = Object.create;
3
2
  var __defProp = Object.defineProperty;
4
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
5
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
6
  var __export = (target, all) => {
9
7
  for (var name in all)
@@ -17,10 +15,6 @@ var __copyProps = (to, from, except, desc) => {
17
15
  }
18
16
  return to;
19
17
  };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
- mod
23
- ));
24
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
19
  var google_exports = {};
26
20
  __export(google_exports, {
@@ -28,22 +22,33 @@ __export(google_exports, {
28
22
  });
29
23
  module.exports = __toCommonJS(google_exports);
30
24
  var import_jsx_runtime = require("react/jsx-runtime");
31
- var React = __toESM(require("react"), 1);
32
- const GoogleIcon = React.forwardRef(
33
- ({ color = "currentColor", ...props }, forwardedRef) => {
25
+ var import_react = require("react");
26
+ const GoogleIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
34
28
  return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
35
- role: "img",
36
- viewBox: "0 0 24 24",
37
29
  xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 22 22",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
38
34
  ...props,
39
35
  ref: forwardedRef,
40
36
  children: [
41
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", {
42
- children: "Google"
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ fill: "#4285F4",
39
+ d: "M11 9.182v3.873h5.382a4.611 4.611 0 0 1-2.01 3.009l3.246 2.518c1.891-1.745 2.982-4.31 2.982-7.355 0-.709-.064-1.39-.182-2.045H11Z"
40
+ }),
41
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
42
+ fill: "#34A853",
43
+ d: "m5.396 12.903-.732.56-2.591 2.019C3.718 18.746 7.09 21 11 21c2.7 0 4.963-.89 6.618-2.418l-3.246-2.518c-.89.6-2.027.963-3.372.963-2.6 0-4.81-1.754-5.6-4.118l-.004-.006Z"
44
+ }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
46
+ fill: "#FBBC05",
47
+ d: "M2.073 6.518A9.877 9.877 0 0 0 1 11c0 1.618.39 3.136 1.073 4.482C2.073 15.49 5.4 12.9 5.4 12.9c-.2-.6-.318-1.236-.318-1.9 0-.664.118-1.3.318-1.9L2.073 6.518Z"
43
48
  }),
44
49
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
45
- d: "M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z",
46
- fill: color
50
+ fill: "#EA4335",
51
+ d: "M11 4.982c1.473 0 2.782.509 3.827 1.49l2.864-2.863C15.954 1.991 13.7 1 11 1 7.09 1 3.718 3.245 2.073 6.518L5.4 9.1c.79-2.364 3-4.118 5.6-4.118Z"
47
52
  })
48
53
  ]
49
54
  });
@@ -15,6 +15,7 @@ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "defau
15
15
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
16
  var generated_exports = {};
17
17
  module.exports = __toCommonJS(generated_exports);
18
+ __reExport(generated_exports, require("./alert"), module.exports);
18
19
  __reExport(generated_exports, require("./auto-scroll"), module.exports);
19
20
  __reExport(generated_exports, require("./blockquote"), module.exports);
20
21
  __reExport(generated_exports, require("./box-link"), module.exports);
@@ -31,13 +32,17 @@ __reExport(generated_exports, require("./chevron-filled-left"), module.exports);
31
32
  __reExport(generated_exports, require("./chevron-filled-right"), module.exports);
32
33
  __reExport(generated_exports, require("./chevron-filled-up"), module.exports);
33
34
  __reExport(generated_exports, require("./code"), module.exports);
35
+ __reExport(generated_exports, require("./commit"), module.exports);
34
36
  __reExport(generated_exports, require("./dash"), module.exports);
35
37
  __reExport(generated_exports, require("./dot"), module.exports);
36
38
  __reExport(generated_exports, require("./drag-handle"), module.exports);
37
39
  __reExport(generated_exports, require("./eyecon-closed"), module.exports);
38
40
  __reExport(generated_exports, require("./eyecon-open"), module.exports);
41
+ __reExport(generated_exports, require("./github"), module.exports);
42
+ __reExport(generated_exports, require("./google"), module.exports);
39
43
  __reExport(generated_exports, require("./hamburger-menu"), module.exports);
40
44
  __reExport(generated_exports, require("./info"), module.exports);
45
+ __reExport(generated_exports, require("./information"), module.exports);
41
46
  __reExport(generated_exports, require("./linked"), module.exports);
42
47
  __reExport(generated_exports, require("./list-item"), module.exports);
43
48
  __reExport(generated_exports, require("./list"), module.exports);
@@ -45,6 +50,9 @@ __reExport(generated_exports, require("./offline"), module.exports);
45
50
  __reExport(generated_exports, require("./play"), module.exports);
46
51
  __reExport(generated_exports, require("./radio-checked"), module.exports);
47
52
  __reExport(generated_exports, require("./radio-unchecked"), module.exports);
53
+ __reExport(generated_exports, require("./repeat-column"), module.exports);
54
+ __reExport(generated_exports, require("./repeat-grid"), module.exports);
55
+ __reExport(generated_exports, require("./repeat-row"), module.exports);
48
56
  __reExport(generated_exports, require("./scroll"), module.exports);
49
57
  __reExport(generated_exports, require("./subscript"), module.exports);
50
58
  __reExport(generated_exports, require("./subtract"), module.exports);
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var information_exports = {};
20
+ __export(information_exports, {
21
+ InformationIcon: () => InformationIcon
22
+ });
23
+ module.exports = __toCommonJS(information_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const InformationIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: [
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ fill: "#707375",
39
+ fillRule: "evenodd",
40
+ 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",
41
+ clipRule: "evenodd"
42
+ }),
43
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
44
+ fill: "#707375",
45
+ fillRule: "evenodd",
46
+ 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",
47
+ clipRule: "evenodd"
48
+ })
49
+ ]
50
+ });
51
+ }
52
+ );
53
+ InformationIcon.displayName = "InformationIcon";
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var repeat_column_exports = {};
20
+ __export(repeat_column_exports, {
21
+ RepeatColumnIcon: () => RepeatColumnIcon
22
+ });
23
+ module.exports = __toCommonJS(repeat_column_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const RepeatColumnIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ fill: "#11181C",
38
+ d: "M6.335 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM6.335 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM7.005 11.337c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99c0-.37-.3-.67-.67-.67h-1.99Z"
39
+ })
40
+ });
41
+ }
42
+ );
43
+ RepeatColumnIcon.displayName = "RepeatColumnIcon";
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var repeat_grid_exports = {};
20
+ __export(repeat_grid_exports, {
21
+ RepeatGridIcon: () => RepeatGridIcon
22
+ });
23
+ module.exports = __toCommonJS(repeat_grid_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const RepeatGridIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ fill: "#11181C",
38
+ d: "M1.333 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM1.333 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM4.663 12.007c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM6.335 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM9.665 7.005c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM6.335 12.007c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM14.667 2.003c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM11.337 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM14.667 12.007c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99Z"
39
+ })
40
+ });
41
+ }
42
+ );
43
+ RepeatGridIcon.displayName = "RepeatGridIcon";
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var repeat_row_exports = {};
20
+ __export(repeat_row_exports, {
21
+ RepeatRowIcon: () => RepeatRowIcon
22
+ });
23
+ module.exports = __toCommonJS(repeat_row_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const RepeatRowIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ fill: "#11181C",
38
+ d: "M1.333 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM6.335 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM12.007 6.335c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99c0-.37-.3-.67-.67-.67h-1.99Z"
39
+ })
40
+ });
41
+ }
42
+ );
43
+ RepeatRowIcon.displayName = "RepeatRowIcon";
package/lib/cjs/index.cjs CHANGED
@@ -22,8 +22,6 @@ __reExport(src_exports, require("./brush"), module.exports);
22
22
  __reExport(src_exports, require("./form"), module.exports);
23
23
  __reExport(src_exports, require("./undo"), module.exports);
24
24
  __reExport(src_exports, require("./redo"), module.exports);
25
- __reExport(src_exports, require("./google"), module.exports);
26
- __reExport(src_exports, require("./github"), module.exports);
27
25
  __reExport(src_exports, require("./devices"), module.exports);
28
26
  __reExport(src_exports, require("./body"), module.exports);
29
27
  __reExport(src_exports, require("./types"), module.exports);
@@ -21,7 +21,6 @@ __export(legacy_exports, {
21
21
  ButtonIcon: () => import_react_icons.ButtonIcon,
22
22
  CheckCircledIcon: () => import_react_icons.CheckCircledIcon,
23
23
  CheckIcon: () => import_react_icons.CheckIcon,
24
- CommitIcon: () => import_react_icons.CommitIcon,
25
24
  CrossCircledIcon: () => import_react_icons.CrossCircledIcon,
26
25
  DotFilledIcon: () => import_react_icons.DotFilledIcon,
27
26
  DotsHorizontalIcon: () => import_react_icons.DotsHorizontalIcon,
package/lib/index.js CHANGED
@@ -5,8 +5,6 @@ export * from "./brush";
5
5
  export * from "./form";
6
6
  export * from "./undo";
7
7
  export * from "./redo";
8
- export * from "./google";
9
- export * from "./github";
10
8
  export * from "./devices";
11
9
  export * from "./body";
12
10
  export * from "./types";
package/lib/legacy.js CHANGED
@@ -13,7 +13,6 @@ import {
13
13
  DotFilledIcon,
14
14
  TriangleRightIcon,
15
15
  TriangleDownIcon,
16
- CommitIcon,
17
16
  InputIcon,
18
17
  ButtonIcon,
19
18
  HeadingIcon,
@@ -25,7 +24,6 @@ export {
25
24
  ButtonIcon,
26
25
  CheckCircledIcon,
27
26
  CheckIcon,
28
- CommitIcon,
29
27
  CrossCircledIcon,
30
28
  DotFilledIcon,
31
29
  DotsHorizontalIcon,
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.47.0",
3
+ "version": "0.49.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
7
7
  "type": "module",
8
8
  "devDependencies": {
9
- "@storybook/react": "^6.5.14",
9
+ "@storybook/react": "^6.5.16",
10
10
  "@svgo/jsx": "^0.4.2",
11
11
  "@types/react": "^17.0.24",
12
12
  "tsx": "^3.9.0",
@@ -22,10 +22,11 @@
22
22
  "dependencies": {
23
23
  "@radix-ui/react-icons": "^1.1.0",
24
24
  "react": "^17.0.2",
25
- "@webstudio-is/css-vars": "^0.47.0"
25
+ "@webstudio-is/css-vars": "^0.49.0"
26
26
  },
27
27
  "module": "./lib/index.js",
28
28
  "exports": {
29
+ "source": "./src/index.ts",
29
30
  "import": "./lib/index.js",
30
31
  "require": "./lib/cjs/index.cjs"
31
32
  },
@@ -0,0 +1,15 @@
1
+ // Generated from icons/alert.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const AlertIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path d="M9.213 2.567c.784-1.393 2.79-1.393 3.573 0l8.09 14.378C21.645 18.31 20.657 20 19.089 20H2.91c-1.568 0-2.555-1.689-1.786-3.055l8.09-14.378Zm2.266.736a.55.55 0 0 0-.959 0L2.431 17.68a.55.55 0 0 0 .48.82h16.178a.55.55 0 0 0 .48-.82l-8.09-14.377Z" clipRule="evenodd" /><path d="M11 7.5a.75.75 0 0 1 .75.75v3.658a.75.75 0 0 1-1.5 0V8.25A.75.75 0 0 1 11 7.5ZM10.1 15.583a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 0 1.8h-.01a.9.9 0 0 1-.9-.9Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ AlertIcon.displayName = "AlertIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/commit.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const CommitIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fill="#000" fillRule="evenodd" d="M11 7.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Zm-4.691 2.5a4.751 4.751 0 0 1 9.382 0h4.459a.75.75 0 0 1 0 1.5h-4.459a4.751 4.751 0 0 1-9.382 0H1.85a.75.75 0 0 1 0-1.5h4.459Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ CommitIcon.displayName = "CommitIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/github.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const GithubIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fill="#11181C" fillRule="evenodd" d="M11 1C5.475 1 1 5.475 1 11a9.994 9.994 0 0 0 6.838 9.488c.5.087.687-.213.687-.476 0-.237-.013-1.024-.013-1.862-2.512.463-3.162-.612-3.362-1.175-.113-.288-.6-1.175-1.025-1.413-.35-.187-.85-.65-.013-.662.788-.013 1.35.725 1.538 1.025.9 1.512 2.337 1.087 2.912.825.088-.65.35-1.088.638-1.338-2.225-.25-4.55-1.112-4.55-4.937 0-1.088.387-1.987 1.025-2.688-.1-.25-.45-1.274.1-2.65 0 0 .837-.262 2.75 1.026a9.28 9.28 0 0 1 2.5-.338c.85 0 1.7.112 2.5.337 1.912-1.3 2.75-1.024 2.75-1.024.55 1.375.2 2.4.1 2.65.637.7 1.025 1.587 1.025 2.687 0 3.838-2.337 4.688-4.562 4.938.362.312.675.912.675 1.85 0 1.337-.013 2.412-.013 2.75 0 .262.188.574.688.474A10.016 10.016 0 0 0 21 11c0-5.525-4.475-10-10-10Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ GithubIcon.displayName = "GithubIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/google.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const GoogleIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fill="#4285F4" d="M11 9.182v3.873h5.382a4.611 4.611 0 0 1-2.01 3.009l3.246 2.518c1.891-1.745 2.982-4.31 2.982-7.355 0-.709-.064-1.39-.182-2.045H11Z" /><path fill="#34A853" d="m5.396 12.903-.732.56-2.591 2.019C3.718 18.746 7.09 21 11 21c2.7 0 4.963-.89 6.618-2.418l-3.246-2.518c-.89.6-2.027.963-3.372.963-2.6 0-4.81-1.754-5.6-4.118l-.004-.006Z" /><path fill="#FBBC05" d="M2.073 6.518A9.877 9.877 0 0 0 1 11c0 1.618.39 3.136 1.073 4.482C2.073 15.49 5.4 12.9 5.4 12.9c-.2-.6-.318-1.236-.318-1.9 0-.664.118-1.3.318-1.9L2.073 6.518Z" /><path fill="#EA4335" d="M11 4.982c1.473 0 2.782.509 3.827 1.49l2.864-2.863C15.954 1.991 13.7 1 11 1 7.09 1 3.718 3.245 2.073 6.518L5.4 9.1c.79-2.364 3-4.118 5.6-4.118Z" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ GoogleIcon.displayName = "GoogleIcon";
@@ -1,3 +1,4 @@
1
+ export * from "./alert";
1
2
  export * from "./auto-scroll";
2
3
  export * from "./blockquote";
3
4
  export * from "./box-link";
@@ -14,13 +15,17 @@ export * from "./chevron-filled-left";
14
15
  export * from "./chevron-filled-right";
15
16
  export * from "./chevron-filled-up";
16
17
  export * from "./code";
18
+ export * from "./commit";
17
19
  export * from "./dash";
18
20
  export * from "./dot";
19
21
  export * from "./drag-handle";
20
22
  export * from "./eyecon-closed";
21
23
  export * from "./eyecon-open";
24
+ export * from "./github";
25
+ export * from "./google";
22
26
  export * from "./hamburger-menu";
23
27
  export * from "./info";
28
+ export * from "./information";
24
29
  export * from "./linked";
25
30
  export * from "./list-item";
26
31
  export * from "./list";
@@ -28,6 +33,9 @@ export * from "./offline";
28
33
  export * from "./play";
29
34
  export * from "./radio-checked";
30
35
  export * from "./radio-unchecked";
36
+ export * from "./repeat-column";
37
+ export * from "./repeat-grid";
38
+ export * from "./repeat-row";
31
39
  export * from "./scroll";
32
40
  export * from "./subscript";
33
41
  export * from "./subtract";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/information.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const InformationIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
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="#707375" fillRule="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" clipRule="evenodd" /><path fill="#707375" fillRule="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" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ InformationIcon.displayName = "InformationIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/repeat-column.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const RepeatColumnIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
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="M6.335 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM6.335 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM7.005 11.337c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99c0-.37-.3-.67-.67-.67h-1.99Z" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ RepeatColumnIcon.displayName = "RepeatColumnIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/repeat-grid.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const RepeatGridIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
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="M1.333 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM1.333 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM4.663 12.007c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM6.335 2.003c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM9.665 7.005c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM6.335 12.007c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM14.667 2.003c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99ZM11.337 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM14.667 12.007c0-.37-.3-.67-.67-.67h-1.99c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99Z" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ RepeatGridIcon.displayName = "RepeatGridIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/repeat-row.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const RepeatRowIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
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="M1.333 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM6.335 7.005c0-.37.3-.67.67-.67h1.99c.37 0 .67.3.67.67v1.99c0 .37-.3.67-.67.67h-1.99a.67.67 0 0 1-.67-.67v-1.99ZM12.007 6.335c-.37 0-.67.3-.67.67v1.99c0 .37.3.67.67.67h1.99c.37 0 .67-.3.67-.67v-1.99c0-.37-.3-.67-.67-.67h-1.99Z" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ RepeatRowIcon.displayName = "RepeatRowIcon";
package/src/index.ts CHANGED
@@ -5,8 +5,6 @@ export * from "./brush";
5
5
  export * from "./form";
6
6
  export * from "./undo";
7
7
  export * from "./redo";
8
- export * from "./google";
9
- export * from "./github";
10
8
  export * from "./devices";
11
9
  export * from "./body";
12
10
  export * from "./types";
package/src/legacy.ts CHANGED
@@ -13,7 +13,6 @@ export {
13
13
  DotFilledIcon,
14
14
  TriangleRightIcon,
15
15
  TriangleDownIcon,
16
- CommitIcon,
17
16
  InputIcon,
18
17
  ButtonIcon,
19
18
  HeadingIcon,
@@ -1,52 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
- mod
23
- ));
24
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
- var github_exports = {};
26
- __export(github_exports, {
27
- GithubIcon: () => GithubIcon
28
- });
29
- module.exports = __toCommonJS(github_exports);
30
- var import_jsx_runtime = require("react/jsx-runtime");
31
- var React = __toESM(require("react"), 1);
32
- const GithubIcon = React.forwardRef(
33
- ({ color = "currentColor", ...props }, forwardedRef) => {
34
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
35
- role: "img",
36
- viewBox: "0 0 24 24",
37
- xmlns: "http://www.w3.org/2000/svg",
38
- ...props,
39
- ref: forwardedRef,
40
- children: [
41
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", {
42
- children: "GitHub"
43
- }),
44
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
45
- d: "M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12",
46
- fill: color
47
- })
48
- ]
49
- });
50
- }
51
- );
52
- GithubIcon.displayName = "GithubIcon";
package/lib/github.js DELETED
@@ -1,26 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import * as React from "react";
3
- const GithubIcon = React.forwardRef(
4
- ({ color = "currentColor", ...props }, forwardedRef) => {
5
- return /* @__PURE__ */ jsxs("svg", {
6
- role: "img",
7
- viewBox: "0 0 24 24",
8
- xmlns: "http://www.w3.org/2000/svg",
9
- ...props,
10
- ref: forwardedRef,
11
- children: [
12
- /* @__PURE__ */ jsx("title", {
13
- children: "GitHub"
14
- }),
15
- /* @__PURE__ */ jsx("path", {
16
- d: "M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12",
17
- fill: color
18
- })
19
- ]
20
- });
21
- }
22
- );
23
- GithubIcon.displayName = "GithubIcon";
24
- export {
25
- GithubIcon
26
- };
package/lib/google.js DELETED
@@ -1,26 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import * as React from "react";
3
- const GoogleIcon = React.forwardRef(
4
- ({ color = "currentColor", ...props }, forwardedRef) => {
5
- return /* @__PURE__ */ jsxs("svg", {
6
- role: "img",
7
- viewBox: "0 0 24 24",
8
- xmlns: "http://www.w3.org/2000/svg",
9
- ...props,
10
- ref: forwardedRef,
11
- children: [
12
- /* @__PURE__ */ jsx("title", {
13
- children: "Google"
14
- }),
15
- /* @__PURE__ */ jsx("path", {
16
- d: "M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z",
17
- fill: color
18
- })
19
- ]
20
- });
21
- }
22
- );
23
- GoogleIcon.displayName = "GoogleIcon";
24
- export {
25
- GoogleIcon
26
- };
package/src/github.tsx DELETED
@@ -1,24 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
-
4
- export const GithubIcon = React.forwardRef<SVGSVGElement, IconProps>(
5
- ({ color = "currentColor", ...props }, forwardedRef) => {
6
- return (
7
- <svg
8
- role="img"
9
- viewBox="0 0 24 24"
10
- xmlns="http://www.w3.org/2000/svg"
11
- {...props}
12
- ref={forwardedRef}
13
- >
14
- <title>GitHub</title>
15
- <path
16
- d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
17
- fill={color}
18
- />
19
- </svg>
20
- );
21
- }
22
- );
23
-
24
- GithubIcon.displayName = "GithubIcon";
package/src/google.tsx DELETED
@@ -1,24 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
-
4
- export const GoogleIcon = React.forwardRef<SVGSVGElement, IconProps>(
5
- ({ color = "currentColor", ...props }, forwardedRef) => {
6
- return (
7
- <svg
8
- role="img"
9
- viewBox="0 0 24 24"
10
- xmlns="http://www.w3.org/2000/svg"
11
- {...props}
12
- ref={forwardedRef}
13
- >
14
- <title>Google</title>
15
- <path
16
- d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z"
17
- fill={color}
18
- />
19
- </svg>
20
- );
21
- }
22
- );
23
-
24
- GoogleIcon.displayName = "GoogleIcon";