@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.
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Base';
3
+ export declare function GoAhead(props: BaseProps): JSX.Element;
4
+ export declare namespace GoAhead {
5
+ var displayName: string;
6
+ }
@@ -5,6 +5,7 @@ export * from './Certificate';
5
5
  export * from './CircularCheck';
6
6
  export * from './CircularInformation';
7
7
  export * from './Download';
8
+ export * from './GoAhead';
8
9
  export * from './GoBack';
9
10
  export * from './Multimedia';
10
11
  export * from './Loader';
@@ -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
  }),