fui-material 2.5.15 → 2.5.16
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/f-ui-kit.es.js +28 -0
- package/dist/f-ui-kit.es.js.map +1 -1
- package/dist/f-ui-kit.umd.js +2 -2
- package/dist/f-ui-kit.umd.js.map +1 -1
- package/dist/types/icons/FArrowRightCircleIcon/FArrowRightCircleIcon.d.ts +66 -0
- package/dist/types/icons/FArrowRightCircleIcon/index.d.ts +1 -0
- package/dist/types/icons/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/f-ui-kit.es.js
CHANGED
|
@@ -4137,6 +4137,33 @@ const FSafeIcon = React.forwardRef(({
|
|
|
4137
4137
|
);
|
|
4138
4138
|
});
|
|
4139
4139
|
FSafeIcon.displayName = "FSafeIcon";
|
|
4140
|
+
const FArrowRightCircleIcon = React.forwardRef(({
|
|
4141
|
+
color = "primary",
|
|
4142
|
+
size = 30,
|
|
4143
|
+
st,
|
|
4144
|
+
id,
|
|
4145
|
+
className,
|
|
4146
|
+
handleClose,
|
|
4147
|
+
["data-testid"]: dataTestId,
|
|
4148
|
+
...props
|
|
4149
|
+
}, ref) => {
|
|
4150
|
+
return /* @__PURE__ */ jsx(
|
|
4151
|
+
"svg",
|
|
4152
|
+
{
|
|
4153
|
+
ref,
|
|
4154
|
+
width: size,
|
|
4155
|
+
style: st,
|
|
4156
|
+
className: `f-icon ${handleClose ? " clicking-icon" : ""} ${color} ${className || ""}`,
|
|
4157
|
+
viewBox: "0 0 16 16",
|
|
4158
|
+
onClick: handleClose,
|
|
4159
|
+
id,
|
|
4160
|
+
"data-testid": dataTestId,
|
|
4161
|
+
...props,
|
|
4162
|
+
children: /* @__PURE__ */ jsx("path", { "fill-rule": "evenodd", d: "M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z" })
|
|
4163
|
+
}
|
|
4164
|
+
);
|
|
4165
|
+
});
|
|
4166
|
+
FArrowRightCircleIcon.displayName = "FArrowRightCircleIcon";
|
|
4140
4167
|
const styles$5 = {
|
|
4141
4168
|
"f-function-block-alert": "_f-function-block-alert_1jotv_1",
|
|
4142
4169
|
"f-function-alert": "_f-function-alert_1jotv_16",
|
|
@@ -7870,6 +7897,7 @@ export {
|
|
|
7870
7897
|
FAccordion,
|
|
7871
7898
|
FAlert,
|
|
7872
7899
|
FArrowIcon,
|
|
7900
|
+
FArrowRightCircleIcon,
|
|
7873
7901
|
FButton,
|
|
7874
7902
|
FButtonFile,
|
|
7875
7903
|
FCarousel,
|