@loomhq/lens 10.27.0 → 10.28.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,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
function SvgArrowRightAlt(props) {
|
|
3
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
|
|
4
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M 20,12 A -1,1 0 0 0 19,11 H 5 a -1,1 0 1 0 0,2 h 14 a -1,1 0 0 0 1,-1 z", fill: "currentColor" }),
|
|
5
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m 9.707,7.293 a -1,1 0 0 0 -1.414,0 l -4,4 a -1,1 0 0 0 0,1.414 l 4,4 A -1,1 0 0 0 9.707,15.293 L 6.414,12 9.707,8.707 a -1,1 0 0 0 0,-1.414 z", fill: "currentColor" })));
|
|
6
|
+
}
|
|
7
|
+
export default SvgArrowRightAlt;
|
|
@@ -13,6 +13,7 @@ export { default as SvgArrowDropUp } from "./arrow-drop-up.js";
|
|
|
13
13
|
export { default as SvgArrowForward } from "./arrow-forward.js";
|
|
14
14
|
export { default as SvgArrowLeft } from "./arrow-left.js";
|
|
15
15
|
export { default as SvgArrowRight } from "./arrow-right.js";
|
|
16
|
+
export { default as SvgArrowLeftAlt } from "./arrow-left-alt.js";
|
|
16
17
|
export { default as SvgArrowRightAlt } from "./arrow-right-alt.js";
|
|
17
18
|
export { default as SvgReplay5 } from "./replay-5.js";
|
|
18
19
|
export { default as SvgBack5 } from "./back5.js";
|
|
@@ -13,6 +13,7 @@ export { default as SvgArrowDropUp } from './arrow-drop-up.js';
|
|
|
13
13
|
export { default as SvgArrowForward } from './arrow-forward.js';
|
|
14
14
|
export { default as SvgArrowLeft } from './arrow-left.js';
|
|
15
15
|
export { default as SvgArrowRight } from './arrow-right.js';
|
|
16
|
+
export { default as SvgArrowLeftAlt } from './arrow-left-alt.js';
|
|
16
17
|
export { default as SvgArrowRightAlt } from './arrow-right-alt.js';
|
|
17
18
|
export { default as SvgReplay5 } from './replay-5.js';
|
|
18
19
|
export { default as SvgBack5 } from './back5.js';
|