@sikka/hawa 0.1.56 → 0.1.57
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/.github/{ISSUE_TEMPLATE.yml → ISSUE_TEMPLATE/1.bug_report.yml} +11 -4
- package/.github/ISSUE_TEMPLATE/custom.md +10 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/dist/index.js +9 -13
- package/dist/index.mjs +14 -17
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignUpForm.tsx +3 -1
- package/src/elements/Card.tsx +9 -11
- package/src/elements/HawaItemCard.tsx +2 -2
- package/src/elements/HawaRadio.tsx +0 -1
- package/src/elements/InterfaceSettings.tsx +0 -5
|
@@ -80,6 +80,17 @@ body:
|
|
|
80
80
|
- 'Other'
|
|
81
81
|
validations:
|
|
82
82
|
required: true
|
|
83
|
+
- type: dropdown
|
|
84
|
+
attributes:
|
|
85
|
+
label: Which section is the component from?
|
|
86
|
+
multiple: false
|
|
87
|
+
options:
|
|
88
|
+
- 'Blocks'
|
|
89
|
+
- 'Layout'
|
|
90
|
+
- 'Elements'
|
|
91
|
+
- 'Other'
|
|
92
|
+
validations:
|
|
93
|
+
required: false
|
|
83
94
|
- type: textarea
|
|
84
95
|
attributes:
|
|
85
96
|
label: Additional context
|
|
@@ -87,7 +98,3 @@ body:
|
|
|
87
98
|
Any extra information that might help us investigate. For example, browser details, hosting platform, etc. Also, if possible, pinpoint the version that introduced the issue to help narrow down the scope.
|
|
88
99
|
placeholder: |
|
|
89
100
|
The issue seems to have started from version 1.0.1. I tested it on both Chrome and Firefox, and the issue persists on both browsers.
|
|
90
|
-
|
|
91
|
-
or
|
|
92
|
-
|
|
93
|
-
I am hosting the application on Vercel, and the issue seems to be specific to the hosted version, as I cannot reproduce it locally.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
package/dist/index.js
CHANGED
|
@@ -1197,7 +1197,6 @@ var HawaRadio = function(_param) {
|
|
|
1197
1197
|
var dir = window.getComputedStyle(ref.current.parentNode).direction;
|
|
1198
1198
|
setParentDirection(dir);
|
|
1199
1199
|
}
|
|
1200
|
-
console.log("how many times");
|
|
1201
1200
|
});
|
|
1202
1201
|
switch(design){
|
|
1203
1202
|
case "tabs":
|
|
@@ -4515,12 +4514,13 @@ var CardDescription = React33.forwardRef(function(_param, ref) /* @__PURE__ */ {
|
|
|
4515
4514
|
});
|
|
4516
4515
|
CardDescription.displayName = "CardDescription";
|
|
4517
4516
|
var CardContent = React33.forwardRef(function(_param, ref) /* @__PURE__ */ {
|
|
4518
|
-
var className = _param.className, props = _object_without_properties(_param, [
|
|
4517
|
+
var headless = _param.headless, className = _param.className, props = _object_without_properties(_param, [
|
|
4518
|
+
"headless",
|
|
4519
4519
|
"className"
|
|
4520
4520
|
]);
|
|
4521
4521
|
return React33.createElement("div", _object_spread({
|
|
4522
4522
|
ref: ref,
|
|
4523
|
-
className: cn("p-6",
|
|
4523
|
+
className: cn("p-6", headless ? "pt-6" : "pt-0", className)
|
|
4524
4524
|
}, props));
|
|
4525
4525
|
});
|
|
4526
4526
|
CardContent.displayName = "CardContent";
|
|
@@ -6419,7 +6419,7 @@ var HawaItemCard = function(_param) {
|
|
|
6419
6419
|
d: "M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z"
|
|
6420
6420
|
}))))), header && /* @__PURE__ */ import_react49.default.createElement("h5", {
|
|
6421
6421
|
className: "mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"
|
|
6422
|
-
}, header), content && /* @__PURE__ */ import_react49.default.createElement("
|
|
6422
|
+
}, header), content && /* @__PURE__ */ import_react49.default.createElement("span", {
|
|
6423
6423
|
className: "w-full font-normal text-gray-700 dark:text-gray-400"
|
|
6424
6424
|
}, content), actions || counts ? /* @__PURE__ */ import_react49.default.createElement("div", {
|
|
6425
6425
|
className: (0, import_clsx25.default)("mt-3 flex items-center rounded-b-lg dark:text-white ", actions && counts ? "justify-between" : "justify-end")
|
|
@@ -6868,9 +6868,7 @@ var InterfaceSettings = function(_param) {
|
|
|
6868
6868
|
className: "h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90"
|
|
6869
6869
|
}, /* @__PURE__ */ import_react57.default.createElement("path", {
|
|
6870
6870
|
d: "M7.5 0C7.77614 0 8 0.223858 8 0.5V2.5C8 2.77614 7.77614 3 7.5 3C7.22386 3 7 2.77614 7 2.5V0.5C7 0.223858 7.22386 0 7.5 0ZM2.1967 2.1967C2.39196 2.00144 2.70854 2.00144 2.90381 2.1967L4.31802 3.61091C4.51328 3.80617 4.51328 4.12276 4.31802 4.31802C4.12276 4.51328 3.80617 4.51328 3.61091 4.31802L2.1967 2.90381C2.00144 2.70854 2.00144 2.39196 2.1967 2.1967ZM0.5 7C0.223858 7 0 7.22386 0 7.5C0 7.77614 0.223858 8 0.5 8H2.5C2.77614 8 3 7.77614 3 7.5C3 7.22386 2.77614 7 2.5 7H0.5ZM2.1967 12.8033C2.00144 12.608 2.00144 12.2915 2.1967 12.0962L3.61091 10.682C3.80617 10.4867 4.12276 10.4867 4.31802 10.682C4.51328 10.8772 4.51328 11.1938 4.31802 11.3891L2.90381 12.8033C2.70854 12.9986 2.39196 12.9986 2.1967 12.8033ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM10.682 4.31802C10.4867 4.12276 10.4867 3.80617 10.682 3.61091L12.0962 2.1967C12.2915 2.00144 12.608 2.00144 12.8033 2.1967C12.9986 2.39196 12.9986 2.70854 12.8033 2.90381L11.3891 4.31802C11.1938 4.51328 10.8772 4.51328 10.682 4.31802ZM8 12.5C8 12.2239 7.77614 12 7.5 12C7.22386 12 7 12.2239 7 12.5V14.5C7 14.7761 7.22386 15 7.5 15C7.77614 15 8 14.7761 8 14.5V12.5ZM10.682 10.682C10.8772 10.4867 11.1938 10.4867 11.3891 10.682L12.8033 12.0962C12.9986 12.2915 12.9986 12.608 12.8033 12.8033C12.608 12.9986 12.2915 12.9986 12.0962 12.8033L10.682 11.3891C10.4867 11.1938 10.4867 10.8772 10.682 10.682ZM5.5 7.5C5.5 6.39543 6.39543 5.5 7.5 5.5C8.60457 5.5 9.5 6.39543 9.5 7.5C9.5 8.60457 8.60457 9.5 7.5 9.5C6.39543 9.5 5.5 8.60457 5.5 7.5ZM7.5 4.5C5.84315 4.5 4.5 5.84315 4.5 7.5C4.5 9.15685 5.84315 10.5 7.5 10.5C9.15685 10.5 10.5 9.15685 10.5 7.5C10.5 5.84315 9.15685 4.5 7.5 4.5Z",
|
|
6871
|
-
fill: "currentColor"
|
|
6872
|
-
"fill-rule": "evenodd",
|
|
6873
|
-
"clip-rule": "evenodd"
|
|
6871
|
+
fill: "currentColor"
|
|
6874
6872
|
}))
|
|
6875
6873
|
},
|
|
6876
6874
|
{
|
|
@@ -6882,9 +6880,6 @@ var InterfaceSettings = function(_param) {
|
|
|
6882
6880
|
viewBox: "0 0 24 24",
|
|
6883
6881
|
fill: "none",
|
|
6884
6882
|
stroke: "currentColor",
|
|
6885
|
-
"stroke-width": "2",
|
|
6886
|
-
"stroke-linecap": "round",
|
|
6887
|
-
"stroke-linejoin": "round",
|
|
6888
6883
|
className: "h-[1.2rem] w-[1.2rem] transition-all dark:rotate-0 dark:scale-100"
|
|
6889
6884
|
}, /* @__PURE__ */ import_react57.default.createElement("path", {
|
|
6890
6885
|
d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"
|
|
@@ -9010,7 +9005,7 @@ var import_clsx36 = __toESM(require("clsx"));
|
|
|
9010
9005
|
var SignUpForm = function(props) {
|
|
9011
9006
|
var methods = (0, import_react_hook_form4.useForm)();
|
|
9012
9007
|
var errors = methods.formState.errors, handleSubmit = methods.handleSubmit, control = methods.control;
|
|
9013
|
-
var _field_value, _field_value1, _field_value2
|
|
9008
|
+
var _field_value, _field_value1, _field_value2;
|
|
9014
9009
|
return /* @__PURE__ */ import_react76.default.createElement("div", {
|
|
9015
9010
|
className: "flex flex-col gap-4"
|
|
9016
9011
|
}, /* @__PURE__ */ import_react76.default.createElement(Card, {
|
|
@@ -9053,6 +9048,7 @@ var SignUpForm = function(props) {
|
|
|
9053
9048
|
if (fld === "email") {
|
|
9054
9049
|
var _field_value1;
|
|
9055
9050
|
return /* @__PURE__ */ import_react76.default.createElement(import_react_hook_form4.Controller, {
|
|
9051
|
+
key: i,
|
|
9056
9052
|
control: control,
|
|
9057
9053
|
name: "email",
|
|
9058
9054
|
render: function(param) {
|
|
@@ -9081,6 +9077,7 @@ var SignUpForm = function(props) {
|
|
|
9081
9077
|
if (fld === "username") {
|
|
9082
9078
|
var _field_value2;
|
|
9083
9079
|
return /* @__PURE__ */ import_react76.default.createElement(import_react_hook_form4.Controller, {
|
|
9080
|
+
key: i,
|
|
9084
9081
|
control: control,
|
|
9085
9082
|
name: "username",
|
|
9086
9083
|
render: function(param) {
|
|
@@ -9151,11 +9148,10 @@ var SignUpForm = function(props) {
|
|
|
9151
9148
|
return /* @__PURE__ */ import_react76.default.createElement(HawaTextField, {
|
|
9152
9149
|
width: "full",
|
|
9153
9150
|
type: "text",
|
|
9154
|
-
defaultValue: (_field_value2 = field.value) !== null && _field_value2 !== void 0 ? _field_value2 : "",
|
|
9155
9151
|
label: props.texts.refCode,
|
|
9156
9152
|
placeholder: props.texts.passwordPlaceholder,
|
|
9157
9153
|
helpertext: (_errors_password = errors.password) === null || _errors_password === void 0 ? void 0 : _errors_password.message,
|
|
9158
|
-
value: (
|
|
9154
|
+
value: (_field_value2 = field.value) !== null && _field_value2 !== void 0 ? _field_value2 : "",
|
|
9159
9155
|
onChange: field.onChange
|
|
9160
9156
|
});
|
|
9161
9157
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -781,7 +781,6 @@ var HawaRadio = ({
|
|
|
781
781
|
const dir = window.getComputedStyle(ref.current.parentNode).direction;
|
|
782
782
|
setParentDirection(dir);
|
|
783
783
|
}
|
|
784
|
-
console.log("how many times");
|
|
785
784
|
});
|
|
786
785
|
switch (design) {
|
|
787
786
|
case "tabs":
|
|
@@ -4408,14 +4407,16 @@ var CardDescription = React33.forwardRef(({ className, ...props }, ref) => /* @_
|
|
|
4408
4407
|
}
|
|
4409
4408
|
));
|
|
4410
4409
|
CardDescription.displayName = "CardDescription";
|
|
4411
|
-
var CardContent = React33.forwardRef(
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4410
|
+
var CardContent = React33.forwardRef(
|
|
4411
|
+
({ headless, className, ...props }, ref) => /* @__PURE__ */ React33.createElement(
|
|
4412
|
+
"div",
|
|
4413
|
+
{
|
|
4414
|
+
ref,
|
|
4415
|
+
className: cn("p-6", headless ? "pt-6" : "pt-0", className),
|
|
4416
|
+
...props
|
|
4417
|
+
}
|
|
4418
|
+
)
|
|
4419
|
+
);
|
|
4419
4420
|
CardContent.displayName = "CardContent";
|
|
4420
4421
|
var CardFooter = React33.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ React33.createElement(
|
|
4421
4422
|
"div",
|
|
@@ -6224,7 +6225,7 @@ var HawaItemCard = ({
|
|
|
6224
6225
|
},
|
|
6225
6226
|
/* @__PURE__ */ React54.createElement("path", { d: "M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z" })
|
|
6226
6227
|
)
|
|
6227
|
-
))), header && /* @__PURE__ */ React54.createElement("h5", { className: "mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white" }, header), content && /* @__PURE__ */ React54.createElement("
|
|
6228
|
+
))), header && /* @__PURE__ */ React54.createElement("h5", { className: "mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white" }, header), content && /* @__PURE__ */ React54.createElement("span", { className: "w-full font-normal text-gray-700 dark:text-gray-400" }, content), actions || counts ? /* @__PURE__ */ React54.createElement(
|
|
6228
6229
|
"div",
|
|
6229
6230
|
{
|
|
6230
6231
|
className: clsx25(
|
|
@@ -6722,9 +6723,7 @@ var InterfaceSettings = ({
|
|
|
6722
6723
|
"path",
|
|
6723
6724
|
{
|
|
6724
6725
|
d: "M7.5 0C7.77614 0 8 0.223858 8 0.5V2.5C8 2.77614 7.77614 3 7.5 3C7.22386 3 7 2.77614 7 2.5V0.5C7 0.223858 7.22386 0 7.5 0ZM2.1967 2.1967C2.39196 2.00144 2.70854 2.00144 2.90381 2.1967L4.31802 3.61091C4.51328 3.80617 4.51328 4.12276 4.31802 4.31802C4.12276 4.51328 3.80617 4.51328 3.61091 4.31802L2.1967 2.90381C2.00144 2.70854 2.00144 2.39196 2.1967 2.1967ZM0.5 7C0.223858 7 0 7.22386 0 7.5C0 7.77614 0.223858 8 0.5 8H2.5C2.77614 8 3 7.77614 3 7.5C3 7.22386 2.77614 7 2.5 7H0.5ZM2.1967 12.8033C2.00144 12.608 2.00144 12.2915 2.1967 12.0962L3.61091 10.682C3.80617 10.4867 4.12276 10.4867 4.31802 10.682C4.51328 10.8772 4.51328 11.1938 4.31802 11.3891L2.90381 12.8033C2.70854 12.9986 2.39196 12.9986 2.1967 12.8033ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM10.682 4.31802C10.4867 4.12276 10.4867 3.80617 10.682 3.61091L12.0962 2.1967C12.2915 2.00144 12.608 2.00144 12.8033 2.1967C12.9986 2.39196 12.9986 2.70854 12.8033 2.90381L11.3891 4.31802C11.1938 4.51328 10.8772 4.51328 10.682 4.31802ZM8 12.5C8 12.2239 7.77614 12 7.5 12C7.22386 12 7 12.2239 7 12.5V14.5C7 14.7761 7.22386 15 7.5 15C7.77614 15 8 14.7761 8 14.5V12.5ZM10.682 10.682C10.8772 10.4867 11.1938 10.4867 11.3891 10.682L12.8033 12.0962C12.9986 12.2915 12.9986 12.608 12.8033 12.8033C12.608 12.9986 12.2915 12.9986 12.0962 12.8033L10.682 11.3891C10.4867 11.1938 10.4867 10.8772 10.682 10.682ZM5.5 7.5C5.5 6.39543 6.39543 5.5 7.5 5.5C8.60457 5.5 9.5 6.39543 9.5 7.5C9.5 8.60457 8.60457 9.5 7.5 9.5C6.39543 9.5 5.5 8.60457 5.5 7.5ZM7.5 4.5C5.84315 4.5 4.5 5.84315 4.5 7.5C4.5 9.15685 5.84315 10.5 7.5 10.5C9.15685 10.5 10.5 9.15685 10.5 7.5C10.5 5.84315 9.15685 4.5 7.5 4.5Z",
|
|
6725
|
-
fill: "currentColor"
|
|
6726
|
-
"fill-rule": "evenodd",
|
|
6727
|
-
"clip-rule": "evenodd"
|
|
6726
|
+
fill: "currentColor"
|
|
6728
6727
|
}
|
|
6729
6728
|
)
|
|
6730
6729
|
)
|
|
@@ -6740,9 +6739,6 @@ var InterfaceSettings = ({
|
|
|
6740
6739
|
viewBox: "0 0 24 24",
|
|
6741
6740
|
fill: "none",
|
|
6742
6741
|
stroke: "currentColor",
|
|
6743
|
-
"stroke-width": "2",
|
|
6744
|
-
"stroke-linecap": "round",
|
|
6745
|
-
"stroke-linejoin": "round",
|
|
6746
6742
|
className: "h-[1.2rem] w-[1.2rem] transition-all dark:rotate-0 dark:scale-100"
|
|
6747
6743
|
},
|
|
6748
6744
|
/* @__PURE__ */ React62.createElement("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
@@ -9379,6 +9375,7 @@ var SignUpForm = (props) => {
|
|
|
9379
9375
|
return /* @__PURE__ */ React88.createElement(
|
|
9380
9376
|
Controller4,
|
|
9381
9377
|
{
|
|
9378
|
+
key: i,
|
|
9382
9379
|
control,
|
|
9383
9380
|
name: "email",
|
|
9384
9381
|
render: ({ field }) => /* @__PURE__ */ React88.createElement(
|
|
@@ -9408,6 +9405,7 @@ var SignUpForm = (props) => {
|
|
|
9408
9405
|
return /* @__PURE__ */ React88.createElement(
|
|
9409
9406
|
Controller4,
|
|
9410
9407
|
{
|
|
9408
|
+
key: i,
|
|
9411
9409
|
control,
|
|
9412
9410
|
name: "username",
|
|
9413
9411
|
render: ({ field }) => /* @__PURE__ */ React88.createElement(
|
|
@@ -9479,7 +9477,6 @@ var SignUpForm = (props) => {
|
|
|
9479
9477
|
{
|
|
9480
9478
|
width: "full",
|
|
9481
9479
|
type: "text",
|
|
9482
|
-
defaultValue: field.value ?? "",
|
|
9483
9480
|
label: props.texts.refCode,
|
|
9484
9481
|
placeholder: props.texts.passwordPlaceholder,
|
|
9485
9482
|
helpertext: errors.password?.message,
|
package/package.json
CHANGED
|
@@ -119,6 +119,7 @@ export const SignUpForm: FC<SignUpFormTypes> = (props) => {
|
|
|
119
119
|
if (fld === "email") {
|
|
120
120
|
return (
|
|
121
121
|
<Controller
|
|
122
|
+
key={i}
|
|
122
123
|
control={control}
|
|
123
124
|
name="email"
|
|
124
125
|
render={({ field }) => (
|
|
@@ -147,6 +148,7 @@ export const SignUpForm: FC<SignUpFormTypes> = (props) => {
|
|
|
147
148
|
if (fld === "username") {
|
|
148
149
|
return (
|
|
149
150
|
<Controller
|
|
151
|
+
key={i}
|
|
150
152
|
control={control}
|
|
151
153
|
name="username"
|
|
152
154
|
render={({ field }) => (
|
|
@@ -213,7 +215,7 @@ export const SignUpForm: FC<SignUpFormTypes> = (props) => {
|
|
|
213
215
|
<HawaTextField
|
|
214
216
|
width="full"
|
|
215
217
|
type="text"
|
|
216
|
-
defaultValue={field.value ?? ""}
|
|
218
|
+
// defaultValue={field.value ?? ""}
|
|
217
219
|
label={props.texts.refCode}
|
|
218
220
|
placeholder={props.texts.passwordPlaceholder}
|
|
219
221
|
helpertext={errors.password?.message}
|
package/src/elements/Card.tsx
CHANGED
|
@@ -64,17 +64,15 @@ type CardContentProps = {
|
|
|
64
64
|
headless?: boolean
|
|
65
65
|
} & React.HTMLAttributes<HTMLDivElement>
|
|
66
66
|
|
|
67
|
-
const CardContent = React.forwardRef<
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
/>
|
|
77
|
-
))
|
|
67
|
+
const CardContent = React.forwardRef<HTMLDivElement, CardContentProps>(
|
|
68
|
+
({ headless, className, ...props }, ref) => (
|
|
69
|
+
<div
|
|
70
|
+
ref={ref}
|
|
71
|
+
className={cn("p-6", headless ? "pt-6" : "pt-0", className)}
|
|
72
|
+
{...props}
|
|
73
|
+
/>
|
|
74
|
+
)
|
|
75
|
+
)
|
|
78
76
|
CardContent.displayName = "CardContent"
|
|
79
77
|
|
|
80
78
|
const CardFooter = React.forwardRef<
|
|
@@ -136,9 +136,9 @@ export const HawaItemCard: FC<ItemCardTypes> = ({
|
|
|
136
136
|
</h5>
|
|
137
137
|
)}
|
|
138
138
|
{content && (
|
|
139
|
-
<
|
|
139
|
+
<span className="w-full font-normal text-gray-700 dark:text-gray-400">
|
|
140
140
|
{content}
|
|
141
|
-
</
|
|
141
|
+
</span>
|
|
142
142
|
)}
|
|
143
143
|
{actions || counts ? (
|
|
144
144
|
<div
|
|
@@ -59,8 +59,6 @@ export const InterfaceSettings: FC<TypographyTypes> = ({
|
|
|
59
59
|
<path
|
|
60
60
|
d="M7.5 0C7.77614 0 8 0.223858 8 0.5V2.5C8 2.77614 7.77614 3 7.5 3C7.22386 3 7 2.77614 7 2.5V0.5C7 0.223858 7.22386 0 7.5 0ZM2.1967 2.1967C2.39196 2.00144 2.70854 2.00144 2.90381 2.1967L4.31802 3.61091C4.51328 3.80617 4.51328 4.12276 4.31802 4.31802C4.12276 4.51328 3.80617 4.51328 3.61091 4.31802L2.1967 2.90381C2.00144 2.70854 2.00144 2.39196 2.1967 2.1967ZM0.5 7C0.223858 7 0 7.22386 0 7.5C0 7.77614 0.223858 8 0.5 8H2.5C2.77614 8 3 7.77614 3 7.5C3 7.22386 2.77614 7 2.5 7H0.5ZM2.1967 12.8033C2.00144 12.608 2.00144 12.2915 2.1967 12.0962L3.61091 10.682C3.80617 10.4867 4.12276 10.4867 4.31802 10.682C4.51328 10.8772 4.51328 11.1938 4.31802 11.3891L2.90381 12.8033C2.70854 12.9986 2.39196 12.9986 2.1967 12.8033ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM10.682 4.31802C10.4867 4.12276 10.4867 3.80617 10.682 3.61091L12.0962 2.1967C12.2915 2.00144 12.608 2.00144 12.8033 2.1967C12.9986 2.39196 12.9986 2.70854 12.8033 2.90381L11.3891 4.31802C11.1938 4.51328 10.8772 4.51328 10.682 4.31802ZM8 12.5C8 12.2239 7.77614 12 7.5 12C7.22386 12 7 12.2239 7 12.5V14.5C7 14.7761 7.22386 15 7.5 15C7.77614 15 8 14.7761 8 14.5V12.5ZM10.682 10.682C10.8772 10.4867 11.1938 10.4867 11.3891 10.682L12.8033 12.0962C12.9986 12.2915 12.9986 12.608 12.8033 12.8033C12.608 12.9986 12.2915 12.9986 12.0962 12.8033L10.682 11.3891C10.4867 11.1938 10.4867 10.8772 10.682 10.682ZM5.5 7.5C5.5 6.39543 6.39543 5.5 7.5 5.5C8.60457 5.5 9.5 6.39543 9.5 7.5C9.5 8.60457 8.60457 9.5 7.5 9.5C6.39543 9.5 5.5 8.60457 5.5 7.5ZM7.5 4.5C5.84315 4.5 4.5 5.84315 4.5 7.5C4.5 9.15685 5.84315 10.5 7.5 10.5C9.15685 10.5 10.5 9.15685 10.5 7.5C10.5 5.84315 9.15685 4.5 7.5 4.5Z"
|
|
61
61
|
fill="currentColor"
|
|
62
|
-
fill-rule="evenodd"
|
|
63
|
-
clip-rule="evenodd"
|
|
64
62
|
></path>
|
|
65
63
|
</svg>
|
|
66
64
|
),
|
|
@@ -75,9 +73,6 @@ export const InterfaceSettings: FC<TypographyTypes> = ({
|
|
|
75
73
|
viewBox="0 0 24 24"
|
|
76
74
|
fill="none"
|
|
77
75
|
stroke="currentColor"
|
|
78
|
-
stroke-width="2"
|
|
79
|
-
stroke-linecap="round"
|
|
80
|
-
stroke-linejoin="round"
|
|
81
76
|
className="h-[1.2rem] w-[1.2rem] transition-all dark:rotate-0 dark:scale-100"
|
|
82
77
|
>
|
|
83
78
|
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"></path>
|