@embedreach/components 0.1.42 → 0.1.43
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/chunks/index.js +23 -22
- package/dist/index.umd.js +23 -22
- package/dist/styles.css +22 -18
- package/package.json +1 -1
package/dist/chunks/index.js
CHANGED
|
@@ -24227,8 +24227,8 @@ const outline$2 = "reach-styles-module__outline___gFp3i";
|
|
|
24227
24227
|
const secondary$2 = "reach-styles-module__secondary___Pd-e3";
|
|
24228
24228
|
const ghost = "reach-styles-module__ghost___GcnJq";
|
|
24229
24229
|
const link = "reach-styles-module__link___EgS2H";
|
|
24230
|
-
const sizeDefault = "reach-styles-module__sizeDefault___8kU5A";
|
|
24231
|
-
const sizeSm = "reach-styles-module__sizeSm___zPIEh";
|
|
24230
|
+
const sizeDefault$1 = "reach-styles-module__sizeDefault___8kU5A";
|
|
24231
|
+
const sizeSm$1 = "reach-styles-module__sizeSm___zPIEh";
|
|
24232
24232
|
const sizeLg = "reach-styles-module__sizeLg___D2G8z";
|
|
24233
24233
|
const sizeIcon = "reach-styles-module__sizeIcon___5XkYW";
|
|
24234
24234
|
const styles$6 = {
|
|
@@ -24239,8 +24239,8 @@ const styles$6 = {
|
|
|
24239
24239
|
secondary: secondary$2,
|
|
24240
24240
|
ghost,
|
|
24241
24241
|
link,
|
|
24242
|
-
sizeDefault,
|
|
24243
|
-
sizeSm,
|
|
24242
|
+
sizeDefault: sizeDefault$1,
|
|
24243
|
+
sizeSm: sizeSm$1,
|
|
24244
24244
|
sizeLg,
|
|
24245
24245
|
sizeIcon
|
|
24246
24246
|
};
|
|
@@ -24269,13 +24269,6 @@ const buttonVariants = cva([styles$6.base], {
|
|
|
24269
24269
|
const Button$1 = React.forwardRef(
|
|
24270
24270
|
({ className: className2, variant, size: size2, asChild = false, ...props }, ref) => {
|
|
24271
24271
|
const Comp = asChild ? Slot$2 : "button";
|
|
24272
|
-
console.log(
|
|
24273
|
-
`BUTTON VARIANTS`,
|
|
24274
|
-
size2,
|
|
24275
|
-
variant,
|
|
24276
|
-
className2,
|
|
24277
|
-
buttonVariants({ variant, size: size2, className: className2 })
|
|
24278
|
-
);
|
|
24279
24272
|
return /* @__PURE__ */ jsx(
|
|
24280
24273
|
Comp,
|
|
24281
24274
|
{
|
|
@@ -24336,7 +24329,7 @@ const BigSelector = ({ onClick, title: title2, subtitle, icon, selected, disable
|
|
|
24336
24329
|
"button",
|
|
24337
24330
|
{
|
|
24338
24331
|
onClick,
|
|
24339
|
-
className: `flex flex-col items-center justify-center rounded-lg border-[3px] p-4 transition-all duration-300 ease-in-out ${disabled ? "opacity-50 cursor-not-allowed" : selected ? "scale-[1.02] hover:scale-[1.04] border-primary
|
|
24332
|
+
className: `flex flex-col items-center justify-center rounded-lg border-[3px] p-4 transition-all duration-300 ease-in-out ${disabled ? "opacity-50 cursor-not-allowed" : selected ? "scale-[1.02] hover:scale-[1.04] [border-color:hsl(var(--reach-primary))] [background-color:hsl(var(--reach-primary)/0.05)]" : "border-gray-200 hover:[border-color:hsl(var(--reach-primary))] hover:bg-gray-50"}`,
|
|
24340
24333
|
children: [
|
|
24341
24334
|
icon,
|
|
24342
24335
|
/* @__PURE__ */ jsxs("div", { className: "text-center", children: [
|
|
@@ -33132,6 +33125,10 @@ const destructive$1 = "reach-styles-module__destructive___RLaRD";
|
|
|
33132
33125
|
const outline$1 = "reach-styles-module__outline___L2VtW";
|
|
33133
33126
|
const google = "reach-styles-module__google___HcEij";
|
|
33134
33127
|
const date = "reach-styles-module__date___-6BC4";
|
|
33128
|
+
const sizeDefault = "reach-styles-module__sizeDefault___iGTp4";
|
|
33129
|
+
const sizeSm = "reach-styles-module__sizeSm___6T2oK";
|
|
33130
|
+
const iconOnly = "reach-styles-module__iconOnly___8vUSp";
|
|
33131
|
+
const iconOnlySm = "reach-styles-module__iconOnlySm___9ZKv9";
|
|
33135
33132
|
const container = "reach-styles-module__container___6PQqs";
|
|
33136
33133
|
const styles$2 = {
|
|
33137
33134
|
base: base$1,
|
|
@@ -33141,6 +33138,10 @@ const styles$2 = {
|
|
|
33141
33138
|
outline: outline$1,
|
|
33142
33139
|
google,
|
|
33143
33140
|
date,
|
|
33141
|
+
sizeDefault,
|
|
33142
|
+
sizeSm,
|
|
33143
|
+
iconOnly,
|
|
33144
|
+
iconOnlySm,
|
|
33144
33145
|
container
|
|
33145
33146
|
};
|
|
33146
33147
|
const badgeVariants = cva([styles$2.base], {
|
|
@@ -33154,11 +33155,11 @@ const badgeVariants = cva([styles$2.base], {
|
|
|
33154
33155
|
date: styles$2.date
|
|
33155
33156
|
},
|
|
33156
33157
|
size: {
|
|
33157
|
-
default: styles$2
|
|
33158
|
-
sm: styles$2
|
|
33158
|
+
default: styles$2.sizeDefault,
|
|
33159
|
+
sm: styles$2.sizeSm
|
|
33159
33160
|
},
|
|
33160
33161
|
iconOnly: {
|
|
33161
|
-
true: styles$2
|
|
33162
|
+
true: styles$2.iconOnly,
|
|
33162
33163
|
false: ""
|
|
33163
33164
|
}
|
|
33164
33165
|
},
|
|
@@ -33166,7 +33167,7 @@ const badgeVariants = cva([styles$2.base], {
|
|
|
33166
33167
|
{
|
|
33167
33168
|
iconOnly: true,
|
|
33168
33169
|
size: "sm",
|
|
33169
|
-
class: styles$2
|
|
33170
|
+
class: styles$2.iconOnlySm
|
|
33170
33171
|
}
|
|
33171
33172
|
],
|
|
33172
33173
|
defaultVariants: {
|
|
@@ -33176,13 +33177,13 @@ const badgeVariants = cva([styles$2.base], {
|
|
|
33176
33177
|
}
|
|
33177
33178
|
});
|
|
33178
33179
|
const Badge = React.forwardRef(
|
|
33179
|
-
({ className: className2, variant, size: size2, iconOnly, truncate, ...props }, ref) => {
|
|
33180
|
+
({ className: className2, variant, size: size2, iconOnly: iconOnly2, truncate, ...props }, ref) => {
|
|
33180
33181
|
return /* @__PURE__ */ jsx(
|
|
33181
33182
|
"div",
|
|
33182
33183
|
{
|
|
33183
33184
|
ref,
|
|
33184
33185
|
className: cn$1(
|
|
33185
|
-
badgeVariants({ variant, size: size2, iconOnly }),
|
|
33186
|
+
badgeVariants({ variant, size: size2, iconOnly: iconOnly2 }),
|
|
33186
33187
|
truncate && "max-w-[90px]",
|
|
33187
33188
|
className2
|
|
33188
33189
|
),
|
|
@@ -41950,8 +41951,8 @@ const SelectEmailOrSMS = ({
|
|
|
41950
41951
|
/* @__PURE__ */ jsxs(
|
|
41951
41952
|
Button$1,
|
|
41952
41953
|
{
|
|
41953
|
-
|
|
41954
|
-
|
|
41954
|
+
variant: selectedChannels.includes("email") ? "default" : "outline",
|
|
41955
|
+
className: `${buttonStyle}`,
|
|
41955
41956
|
onClick: toggleEmail,
|
|
41956
41957
|
children: [
|
|
41957
41958
|
/* @__PURE__ */ jsx("span", { children: /* @__PURE__ */ jsx(iconDefinitions.EmailIcon, { size: 15 }) }),
|
|
@@ -41962,8 +41963,8 @@ const SelectEmailOrSMS = ({
|
|
|
41962
41963
|
/* @__PURE__ */ jsxs(
|
|
41963
41964
|
Button$1,
|
|
41964
41965
|
{
|
|
41965
|
-
|
|
41966
|
-
|
|
41966
|
+
variant: selectedChannels.includes("sms") ? "default" : "outline",
|
|
41967
|
+
className: `${buttonStyle}`,
|
|
41967
41968
|
onClick: toggleSMS,
|
|
41968
41969
|
children: [
|
|
41969
41970
|
/* @__PURE__ */ jsx("span", { children: /* @__PURE__ */ jsx(iconDefinitions.SmsIcon, { size: 15 }) }),
|
package/dist/index.umd.js
CHANGED
|
@@ -24244,8 +24244,8 @@
|
|
|
24244
24244
|
const secondary$2 = "reach-styles-module__secondary___Pd-e3";
|
|
24245
24245
|
const ghost = "reach-styles-module__ghost___GcnJq";
|
|
24246
24246
|
const link = "reach-styles-module__link___EgS2H";
|
|
24247
|
-
const sizeDefault = "reach-styles-module__sizeDefault___8kU5A";
|
|
24248
|
-
const sizeSm = "reach-styles-module__sizeSm___zPIEh";
|
|
24247
|
+
const sizeDefault$1 = "reach-styles-module__sizeDefault___8kU5A";
|
|
24248
|
+
const sizeSm$1 = "reach-styles-module__sizeSm___zPIEh";
|
|
24249
24249
|
const sizeLg = "reach-styles-module__sizeLg___D2G8z";
|
|
24250
24250
|
const sizeIcon = "reach-styles-module__sizeIcon___5XkYW";
|
|
24251
24251
|
const styles$6 = {
|
|
@@ -24256,8 +24256,8 @@
|
|
|
24256
24256
|
secondary: secondary$2,
|
|
24257
24257
|
ghost,
|
|
24258
24258
|
link,
|
|
24259
|
-
sizeDefault,
|
|
24260
|
-
sizeSm,
|
|
24259
|
+
sizeDefault: sizeDefault$1,
|
|
24260
|
+
sizeSm: sizeSm$1,
|
|
24261
24261
|
sizeLg,
|
|
24262
24262
|
sizeIcon
|
|
24263
24263
|
};
|
|
@@ -24286,13 +24286,6 @@
|
|
|
24286
24286
|
const Button$2 = React__namespace.forwardRef(
|
|
24287
24287
|
({ className: className2, variant, size: size3, asChild = false, ...props }, ref) => {
|
|
24288
24288
|
const Comp = asChild ? Slot$2 : "button";
|
|
24289
|
-
console.log(
|
|
24290
|
-
`BUTTON VARIANTS`,
|
|
24291
|
-
size3,
|
|
24292
|
-
variant,
|
|
24293
|
-
className2,
|
|
24294
|
-
buttonVariants({ variant, size: size3, className: className2 })
|
|
24295
|
-
);
|
|
24296
24289
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
24297
24290
|
Comp,
|
|
24298
24291
|
{
|
|
@@ -24353,7 +24346,7 @@
|
|
|
24353
24346
|
"button",
|
|
24354
24347
|
{
|
|
24355
24348
|
onClick,
|
|
24356
|
-
className: `flex flex-col items-center justify-center rounded-lg border-[3px] p-4 transition-all duration-300 ease-in-out ${disabled ? "opacity-50 cursor-not-allowed" : selected ? "scale-[1.02] hover:scale-[1.04] border-primary
|
|
24349
|
+
className: `flex flex-col items-center justify-center rounded-lg border-[3px] p-4 transition-all duration-300 ease-in-out ${disabled ? "opacity-50 cursor-not-allowed" : selected ? "scale-[1.02] hover:scale-[1.04] [border-color:hsl(var(--reach-primary))] [background-color:hsl(var(--reach-primary)/0.05)]" : "border-gray-200 hover:[border-color:hsl(var(--reach-primary))] hover:bg-gray-50"}`,
|
|
24357
24350
|
children: [
|
|
24358
24351
|
icon,
|
|
24359
24352
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-center", children: [
|
|
@@ -33149,6 +33142,10 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
33149
33142
|
const outline$1 = "reach-styles-module__outline___L2VtW";
|
|
33150
33143
|
const google = "reach-styles-module__google___HcEij";
|
|
33151
33144
|
const date = "reach-styles-module__date___-6BC4";
|
|
33145
|
+
const sizeDefault = "reach-styles-module__sizeDefault___iGTp4";
|
|
33146
|
+
const sizeSm = "reach-styles-module__sizeSm___6T2oK";
|
|
33147
|
+
const iconOnly = "reach-styles-module__iconOnly___8vUSp";
|
|
33148
|
+
const iconOnlySm = "reach-styles-module__iconOnlySm___9ZKv9";
|
|
33152
33149
|
const container = "reach-styles-module__container___6PQqs";
|
|
33153
33150
|
const styles$2 = {
|
|
33154
33151
|
base: base$1,
|
|
@@ -33158,6 +33155,10 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
33158
33155
|
outline: outline$1,
|
|
33159
33156
|
google,
|
|
33160
33157
|
date,
|
|
33158
|
+
sizeDefault,
|
|
33159
|
+
sizeSm,
|
|
33160
|
+
iconOnly,
|
|
33161
|
+
iconOnlySm,
|
|
33161
33162
|
container
|
|
33162
33163
|
};
|
|
33163
33164
|
const badgeVariants = cva([styles$2.base], {
|
|
@@ -33171,11 +33172,11 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
33171
33172
|
date: styles$2.date
|
|
33172
33173
|
},
|
|
33173
33174
|
size: {
|
|
33174
|
-
default: styles$2
|
|
33175
|
-
sm: styles$2
|
|
33175
|
+
default: styles$2.sizeDefault,
|
|
33176
|
+
sm: styles$2.sizeSm
|
|
33176
33177
|
},
|
|
33177
33178
|
iconOnly: {
|
|
33178
|
-
true: styles$2
|
|
33179
|
+
true: styles$2.iconOnly,
|
|
33179
33180
|
false: ""
|
|
33180
33181
|
}
|
|
33181
33182
|
},
|
|
@@ -33183,7 +33184,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
33183
33184
|
{
|
|
33184
33185
|
iconOnly: true,
|
|
33185
33186
|
size: "sm",
|
|
33186
|
-
class: styles$2
|
|
33187
|
+
class: styles$2.iconOnlySm
|
|
33187
33188
|
}
|
|
33188
33189
|
],
|
|
33189
33190
|
defaultVariants: {
|
|
@@ -33193,13 +33194,13 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
33193
33194
|
}
|
|
33194
33195
|
});
|
|
33195
33196
|
const Badge = React__namespace.forwardRef(
|
|
33196
|
-
({ className: className2, variant, size: size3, iconOnly, truncate, ...props }, ref) => {
|
|
33197
|
+
({ className: className2, variant, size: size3, iconOnly: iconOnly2, truncate, ...props }, ref) => {
|
|
33197
33198
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
33198
33199
|
"div",
|
|
33199
33200
|
{
|
|
33200
33201
|
ref,
|
|
33201
33202
|
className: cn$1(
|
|
33202
|
-
badgeVariants({ variant, size: size3, iconOnly }),
|
|
33203
|
+
badgeVariants({ variant, size: size3, iconOnly: iconOnly2 }),
|
|
33203
33204
|
truncate && "max-w-[90px]",
|
|
33204
33205
|
className2
|
|
33205
33206
|
),
|
|
@@ -41967,8 +41968,8 @@ ${message2 ?? ""}`);
|
|
|
41967
41968
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
41968
41969
|
Button$2,
|
|
41969
41970
|
{
|
|
41970
|
-
|
|
41971
|
-
|
|
41971
|
+
variant: selectedChannels.includes("email") ? "default" : "outline",
|
|
41972
|
+
className: `${buttonStyle}`,
|
|
41972
41973
|
onClick: toggleEmail,
|
|
41973
41974
|
children: [
|
|
41974
41975
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: /* @__PURE__ */ jsxRuntime.jsx(iconDefinitions.EmailIcon, { size: 15 }) }),
|
|
@@ -41979,8 +41980,8 @@ ${message2 ?? ""}`);
|
|
|
41979
41980
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
41980
41981
|
Button$2,
|
|
41981
41982
|
{
|
|
41982
|
-
|
|
41983
|
-
|
|
41983
|
+
variant: selectedChannels.includes("sms") ? "default" : "outline",
|
|
41984
|
+
className: `${buttonStyle}`,
|
|
41984
41985
|
onClick: toggleSMS,
|
|
41985
41986
|
children: [
|
|
41986
41987
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: /* @__PURE__ */ jsxRuntime.jsx(iconDefinitions.SmsIcon, { size: 15 }) }),
|
package/dist/styles.css
CHANGED
|
@@ -2253,10 +2253,6 @@ video {
|
|
|
2253
2253
|
--tw-text-opacity: 1;
|
|
2254
2254
|
color: rgb(217 119 6 / var(--tw-text-opacity, 1));
|
|
2255
2255
|
}
|
|
2256
|
-
.text-black {
|
|
2257
|
-
--tw-text-opacity: 1;
|
|
2258
|
-
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
2259
|
-
}
|
|
2260
2256
|
.text-blue-500 {
|
|
2261
2257
|
--tw-text-opacity: 1;
|
|
2262
2258
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -2655,6 +2651,12 @@ video {
|
|
|
2655
2651
|
.running {
|
|
2656
2652
|
animation-play-state: running;
|
|
2657
2653
|
}
|
|
2654
|
+
.\[background-color\:hsl\(var\(--reach-primary\)\/0\.05\)\] {
|
|
2655
|
+
background-color: hsl(var(--reach-primary)/0.05);
|
|
2656
|
+
}
|
|
2657
|
+
.\[border-color\:hsl\(var\(--reach-primary\)\)\] {
|
|
2658
|
+
border-color: hsl(var(--reach-primary));
|
|
2659
|
+
}
|
|
2658
2660
|
.file\:border-0::file-selector-button {
|
|
2659
2661
|
border-width: 0px;
|
|
2660
2662
|
}
|
|
@@ -2699,9 +2701,6 @@ video {
|
|
|
2699
2701
|
--tw-border-opacity: 1;
|
|
2700
2702
|
border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
|
|
2701
2703
|
}
|
|
2702
|
-
.hover\:border-primary:hover {
|
|
2703
|
-
border-color: hsl(var(--primary));
|
|
2704
|
-
}
|
|
2705
2704
|
.hover\:bg-accent:hover {
|
|
2706
2705
|
background-color: hsl(var(--accent));
|
|
2707
2706
|
}
|
|
@@ -2828,6 +2827,9 @@ video {
|
|
|
2828
2827
|
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2829
2828
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2830
2829
|
}
|
|
2830
|
+
.hover\:\[border-color\:hsl\(var\(--reach-primary\)\)\]:hover {
|
|
2831
|
+
border-color: hsl(var(--reach-primary));
|
|
2832
|
+
}
|
|
2831
2833
|
.focus\:border-indigo-500:focus {
|
|
2832
2834
|
--tw-border-opacity: 1;
|
|
2833
2835
|
border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
|
|
@@ -6078,10 +6080,6 @@ body {
|
|
|
6078
6080
|
--tw-text-opacity: 1;
|
|
6079
6081
|
color: rgb(217 119 6 / var(--tw-text-opacity, 1));
|
|
6080
6082
|
}
|
|
6081
|
-
.text-black {
|
|
6082
|
-
--tw-text-opacity: 1;
|
|
6083
|
-
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
6084
|
-
}
|
|
6085
6083
|
.text-blue-500 {
|
|
6086
6084
|
--tw-text-opacity: 1;
|
|
6087
6085
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -6482,6 +6480,12 @@ body {
|
|
|
6482
6480
|
.running {
|
|
6483
6481
|
animation-play-state: running;
|
|
6484
6482
|
}
|
|
6483
|
+
.\[background-color\:hsl\(var\(--reach-primary\)\/0\.05\)\] {
|
|
6484
|
+
background-color: hsl(var(--reach-primary)/0.05);
|
|
6485
|
+
}
|
|
6486
|
+
.\[border-color\:hsl\(var\(--reach-primary\)\)\] {
|
|
6487
|
+
border-color: hsl(var(--reach-primary));
|
|
6488
|
+
}
|
|
6485
6489
|
.file\:border-0::file-selector-button {
|
|
6486
6490
|
border-width: 0px;
|
|
6487
6491
|
}
|
|
@@ -6526,9 +6530,6 @@ body {
|
|
|
6526
6530
|
--tw-border-opacity: 1;
|
|
6527
6531
|
border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
|
|
6528
6532
|
}
|
|
6529
|
-
.hover\:border-primary:hover {
|
|
6530
|
-
border-color: hsl(var(--primary));
|
|
6531
|
-
}
|
|
6532
6533
|
.hover\:bg-accent:hover {
|
|
6533
6534
|
background-color: hsl(var(--accent));
|
|
6534
6535
|
}
|
|
@@ -6655,6 +6656,9 @@ body {
|
|
|
6655
6656
|
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
6656
6657
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
6657
6658
|
}
|
|
6659
|
+
.hover\:\[border-color\:hsl\(var\(--reach-primary\)\)\]:hover {
|
|
6660
|
+
border-color: hsl(var(--reach-primary));
|
|
6661
|
+
}
|
|
6658
6662
|
.focus\:border-indigo-500:focus {
|
|
6659
6663
|
--tw-border-opacity: 1;
|
|
6660
6664
|
border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
|
|
@@ -7804,14 +7808,14 @@ body {
|
|
|
7804
7808
|
}
|
|
7805
7809
|
|
|
7806
7810
|
/* Sizes */
|
|
7807
|
-
.reach-styles-
|
|
7811
|
+
.reach-styles-module__sizeDefault___iGTp4 {
|
|
7808
7812
|
padding-left: 0.625rem;
|
|
7809
7813
|
padding-right: 0.625rem;
|
|
7810
7814
|
padding-top: 0.125rem;
|
|
7811
7815
|
padding-bottom: 0.125rem;
|
|
7812
7816
|
}
|
|
7813
7817
|
|
|
7814
|
-
.reach-styles-
|
|
7818
|
+
.reach-styles-module__sizeSm___6T2oK {
|
|
7815
7819
|
padding-left: 0.375rem;
|
|
7816
7820
|
padding-right: 0.375rem;
|
|
7817
7821
|
padding-top: 0.125rem;
|
|
@@ -7820,14 +7824,14 @@ body {
|
|
|
7820
7824
|
}
|
|
7821
7825
|
|
|
7822
7826
|
/* Icon Only */
|
|
7823
|
-
.reach-styles-
|
|
7827
|
+
.reach-styles-module__iconOnly___8vUSp {
|
|
7824
7828
|
height: 1.25rem;
|
|
7825
7829
|
width: 1.25rem;
|
|
7826
7830
|
justify-content: center;
|
|
7827
7831
|
padding: 0px;
|
|
7828
7832
|
}
|
|
7829
7833
|
|
|
7830
|
-
.reach-styles-
|
|
7834
|
+
.reach-styles-module__iconOnlySm___9ZKv9 {
|
|
7831
7835
|
height: 1rem;
|
|
7832
7836
|
width: 1rem;
|
|
7833
7837
|
}
|