@pleodigital/design-system-votey 1.0.37 → 1.0.39
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/assets/angular/svg-raw/icons/ui/icon_ui_arrow-right.svg +16 -0
- package/dist/assets/react/icons/ui/IconUiArrowRight.tsx +28 -0
- package/dist/assets/react/icons/ui/index.ts +1 -0
- package/dist/css/tokens.css +1 -1
- package/dist/scss/_variables_dark.scss +1 -1
- package/dist/scss/_variables_light.scss +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="icon_ui_arrow-right" clip-path="url(#clip0_545_95)">
|
|
3
|
+
<g id="icon_ui_arrow-right_2">
|
|
4
|
+
<g id="color_stroke">
|
|
5
|
+
<path id="Vector"
|
|
6
|
+
d="M24.4799 12.6568L17.9972 6.0129C17.7632 5.7737 17.3801 5.7685 17.1392 6.0025C16.9 6.2365 16.8948 6.6213 17.1288 6.8605L22.5281 12.3933H1.93613C1.6016 12.3933 1.32947 12.6654 1.32947 13C1.32947 13.3345 1.6016 13.6066 1.93613 13.6066H22.6373L16.978 19.129C16.7388 19.363 16.7336 19.7478 16.9676 19.987C17.0872 20.1084 17.2449 20.1708 17.4027 20.1708C17.5604 20.1708 17.7077 20.1136 17.8256 19.9974L24.4695 13.5148C24.7087 13.2808 24.7139 12.896 24.4799 12.6568Z"
|
|
7
|
+
fill="#151752"></path>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_545_95">
|
|
13
|
+
<rect width="26" height="26" fill="white"></rect>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiArrowRight = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 26 26"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g id="icon_ui_arrow-right" clipPath="url(#a)">
|
|
11
|
+
<g id="icon_ui_arrow-right_2">
|
|
12
|
+
<g id="color_stroke">
|
|
13
|
+
<path
|
|
14
|
+
id="Vector"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
d="m24.48 12.657-6.483-6.644a.607.607 0 0 0-.868.848l5.4 5.532H1.935a.607.607 0 0 0 0 1.214h20.701l-5.659 5.522a.607.607 0 0 0 .848.868l6.643-6.482a.607.607 0 0 0 .01-.858"
|
|
17
|
+
/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<clipPath id="a">
|
|
23
|
+
<path fill="currentColor" d="M0 0h26v26H0z" />
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgIconUiArrowRight;
|
|
@@ -2,6 +2,7 @@ export { default as IconIuDownload } from "./IconIuDownload";
|
|
|
2
2
|
export { default as IconIuSendAgainV2 } from "./IconIuSendAgainV2";
|
|
3
3
|
export { default as IconUiAgenda } from "./IconUiAgenda";
|
|
4
4
|
export { default as IconUiAnuluj } from "./IconUiAnuluj";
|
|
5
|
+
export { default as IconUiArrowRight } from "./IconUiArrowRight";
|
|
5
6
|
export { default as IconUiCalendar } from "./IconUiCalendar";
|
|
6
7
|
export { default as IconUiCameraOff } from "./IconUiCameraOff";
|
|
7
8
|
export { default as IconUiCameraOn } from "./IconUiCameraOn";
|
package/dist/css/tokens.css
CHANGED
package/package.json
CHANGED