@eclass/ui-kit 1.13.1 → 1.14.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.
- package/dist/atoms/Icons/GoAhead.d.ts +6 -0
- package/dist/atoms/Icons/index.d.ts +1 -0
- package/dist/eclass-ui-kit.es.js +16 -0
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +21 -21
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/molecules/Buttons/BtnTertiary.d.ts +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -26540,6 +26540,19 @@ function Download(props) {
|
|
|
26540
26540
|
}));
|
|
26541
26541
|
}
|
|
26542
26542
|
Download.displayName = "Download";
|
|
26543
|
+
function GoAhead(props) {
|
|
26544
|
+
return /* @__PURE__ */ jsx(Base, __spreadProps(__spreadValues({}, props), {
|
|
26545
|
+
w: "8px",
|
|
26546
|
+
h: "16px",
|
|
26547
|
+
viewBox: "0 0 8 16",
|
|
26548
|
+
title: "goAhead",
|
|
26549
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
26550
|
+
d: "M2.07407 12L8 6L2.07407 5.18061e-07L-8.65485e-07 2.1L3.85185 6L-1.83588e-07 9.9L2.07407 12V12Z",
|
|
26551
|
+
fill: "currentColor"
|
|
26552
|
+
})
|
|
26553
|
+
}));
|
|
26554
|
+
}
|
|
26555
|
+
GoAhead.displayName = "GoAhead";
|
|
26543
26556
|
function GoBack(props) {
|
|
26544
26557
|
return /* @__PURE__ */ jsx(Base, __spreadProps(__spreadValues({}, props), {
|
|
26545
26558
|
w: "8px",
|
|
@@ -27120,6 +27133,9 @@ function BtnTertiary({
|
|
|
27120
27133
|
const white = vars("colors-neutral-white");
|
|
27121
27134
|
const colorIcon = withoutColor ? vars("colors-main-blueGrey") : blue;
|
|
27122
27135
|
const btnIcons = {
|
|
27136
|
+
ahead: /* @__PURE__ */ jsx(GoAhead, {
|
|
27137
|
+
color: colorIcon
|
|
27138
|
+
}),
|
|
27123
27139
|
answer: /* @__PURE__ */ jsx(TextBubble, {
|
|
27124
27140
|
color: colorIcon
|
|
27125
27141
|
}),
|