ag-common 0.0.729 → 0.0.730
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/dist/ui/icons/Cog.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import type { CSSProperties } from 'react';
|
|
1
2
|
import React from 'react';
|
|
2
|
-
export declare const Cog: (
|
|
3
|
+
export declare const Cog: ({ style, }: {
|
|
4
|
+
style?: {
|
|
5
|
+
/** change the colour of the icon. default black */
|
|
6
|
+
fill?: string;
|
|
7
|
+
} & CSSProperties;
|
|
8
|
+
}) => React.JSX.Element;
|
package/dist/ui/icons/Cog.js
CHANGED
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Cog = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Cog = () => (react_1.default.createElement("svg", { viewBox: "0 0 16 16" },
|
|
8
|
+
const Cog = ({ style, }) => (react_1.default.createElement("svg", { viewBox: "0 0 16 16", style: style },
|
|
9
9
|
react_1.default.createElement("path", { d: "M.63 11.08zm.21.41v-.1zm.23.38L1 11.68zM1 11.68l-.11-.19zm-.21-.29c-.06-.1-.11-.21-.16-.31.05.1.1.21.16.31zm.32.54v-.06z" }),
|
|
10
10
|
react_1.default.createElement("path", { d: "m11.26 12.63 1.83 1.09a7.34 7.34 0 0 0 1-.94 7.48 7.48 0 0 0 1.56-2.86l-1.74-1A5.29 5.29 0 0 0 14 8a5.29 5.29 0 0 0-.08-.9l1.74-1a7.45 7.45 0 0 0-1.33-2.58 7.54 7.54 0 0 0-1.24-1.22l-1.83 1.04a6 6 0 0 0-1.11-.53v-2A8.55 8.55 0 0 0 7.94.53a8.39 8.39 0 0 0-2.26.3v2a7.23 7.23 0 0 0-1.12.54L2.78 2.28A7.46 7.46 0 0 0 .2 6.06l1.72 1a5.29 5.29 0 0 0-.08.9 5.29 5.29 0 0 0 .08.9l-1.73 1a8 8 0 0 0 .43 1.15c.05.1.1.21.16.31v.1l.11.19.12.19v.06a7.69 7.69 0 0 0 1.64 1.78l1.81-1.08a7.23 7.23 0 0 0 1.12.54v2a8.39 8.39 0 0 0 2.26.31 8.56 8.56 0 0 0 2.22-.3v-2a6 6 0 0 0 1.2-.48zm-2.39 1.52a7.57 7.57 0 0 1-.95.06 7.73 7.73 0 0 1-1-.06v-1.69a4.92 4.92 0 0 1-2.53-1.27l-1.54.92a6.22 6.22 0 0 1-1.08-1.61l1.56-.93a4.27 4.27 0 0 1 0-3.17l-1.56-.92a6.11 6.11 0 0 1 1.12-1.62l1.56.93A5 5 0 0 1 7 3.53V1.82a7.73 7.73 0 0 1 1-.06 7.57 7.57 0 0 1 .95.06v1.72a4.9 4.9 0 0 1 2.4 1.26l1.59-.94a6.31 6.31 0 0 1 1.11 1.62l-1.6.94a4.35 4.35 0 0 1 .3 1.58 4.44 4.44 0 0 1-.29 1.55l1.56.93a6.43 6.43 0 0 1-1.11 1.61l-1.58-.93a5 5 0 0 1-2.49 1.28z" }),
|
|
11
11
|
react_1.default.createElement("path", { d: "M7.92 5.49A2.59 2.59 0 0 0 5.25 8a2.59 2.59 0 0 0 2.67 2.51A2.6 2.6 0 0 0 10.6 8a2.6 2.6 0 0 0-2.68-2.51zM8 9.2A1.35 1.35 0 0 1 6.55 8 1.35 1.35 0 0 1 8 6.7 1.35 1.35 0 0 1 9.39 8 1.35 1.35 0 0 1 8 9.2z" })));
|
package/dist/ui/icons/House.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import type { CSSProperties } from 'react';
|
|
1
2
|
import React from 'react';
|
|
2
|
-
export declare const House: (
|
|
3
|
+
export declare const House: ({ style, }: {
|
|
4
|
+
style?: {
|
|
5
|
+
/** change the colour of the icon. default black */
|
|
6
|
+
fill?: string;
|
|
7
|
+
} & CSSProperties;
|
|
8
|
+
}) => React.JSX.Element;
|
package/dist/ui/icons/House.js
CHANGED
|
@@ -5,6 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.House = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const House = () => (react_1.default.createElement("svg", { fill: "none", viewBox: "5 5 35 35" },
|
|
8
|
+
const House = ({ style, }) => (react_1.default.createElement("svg", { fill: "none", viewBox: "5 5 35 35", style: style },
|
|
9
9
|
react_1.default.createElement("path", { d: "m24.155 8.781.175.164 13.072 12.842L36 23.213l-1.8-1.768L34.201 35a2 2 0 0 1-1.851 1.994l-.149.006h-20a2.001 2.001 0 0 1-1.995-1.851L10.201 35 10.2 21.446l-1.798 1.767L7 21.787 20.058 8.958a3 3 0 0 1 4.097-.177Zm-2.586 1.504-.096.087-9.273 9.109L12.201 35l4.999-.001.001-9.999c0-1.054.816-1.918 1.851-1.995l.149-.005h6c1.054 0 1.918.816 1.995 1.851l.005.149-.001 9.999 5.001.001-.001-15.52-9.299-9.136a1.001 1.001 0 0 0-1.332-.059ZM25.201 25h-6l-.001 9.999h6L25.201 25Z" })));
|
|
10
10
|
exports.House = House;
|
package/dist/ui/icons/index.d.ts
CHANGED
|
@@ -18,7 +18,11 @@ import { Undo } from './Undo';
|
|
|
18
18
|
import { UserOutline } from './UserOutline';
|
|
19
19
|
import { Warning } from './Warning';
|
|
20
20
|
declare const icons: {
|
|
21
|
-
Cog: (
|
|
21
|
+
Cog: ({ style, }: {
|
|
22
|
+
style?: {
|
|
23
|
+
fill?: string;
|
|
24
|
+
} & import("react").CSSProperties;
|
|
25
|
+
}) => import("react").JSX.Element;
|
|
22
26
|
Checkmark: ({ style, }: {
|
|
23
27
|
style?: {
|
|
24
28
|
fill?: string;
|
|
@@ -47,7 +51,11 @@ declare const icons: {
|
|
|
47
51
|
Hamburger: ({ className }: {
|
|
48
52
|
className?: string;
|
|
49
53
|
}) => import("react").JSX.Element;
|
|
50
|
-
House: (
|
|
54
|
+
House: ({ style, }: {
|
|
55
|
+
style?: {
|
|
56
|
+
fill?: string;
|
|
57
|
+
} & import("react").CSSProperties;
|
|
58
|
+
}) => import("react").JSX.Element;
|
|
51
59
|
HorizontalDots: import("react").JSX.Element;
|
|
52
60
|
Magnify: ({ style, }: {
|
|
53
61
|
style?: {
|
package/package.json
CHANGED