@pleodigital/design-system-votey 1.0.121 → 1.0.122
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_fullscreen.svg +3 -0
- package/dist/assets/angular/svg-raw/icons/ui/icon_ui_share_screen.svg +3 -0
- package/dist/assets/react/icons/ui/IconUiFullscreen.tsx +16 -0
- package/dist/assets/react/icons/ui/IconUiShareScreen.tsx +16 -0
- package/dist/assets/react/icons/ui/index.ts +2 -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,3 @@
|
|
|
1
|
+
<svg width="27" height="27" viewBox="0 0 27 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.9375 17.2212H14.0625V11.9467L16.425 14.3027L17.2277 13.5L13.5 9.77878L9.77878 13.5L10.5815 14.2962L12.9375 11.9402V17.2212ZM5.19244 21.375C4.67456 21.375 4.24219 21.2016 3.89531 20.8547C3.54844 20.5078 3.375 20.0754 3.375 19.5576V7.44244C3.375 6.92456 3.54844 6.49219 3.89531 6.14531C4.24219 5.79844 4.67456 5.625 5.19244 5.625H21.8076C22.3254 5.625 22.7578 5.79844 23.1047 6.14531C23.4516 6.49219 23.625 6.92456 23.625 7.44244V19.5576C23.625 20.0754 23.4516 20.5078 23.1047 20.8547C22.7578 21.2016 22.3254 21.375 21.8076 21.375H5.19244ZM5.19244 20.25H21.8076C21.9808 20.25 22.1395 20.1779 22.2837 20.0337C22.4279 19.8895 22.5 19.7308 22.5 19.5576V7.44244C22.5 7.26919 22.4279 7.11047 22.2837 6.96628C22.1395 6.82209 21.9808 6.75 21.8076 6.75H5.19244C5.01919 6.75 4.86047 6.82209 4.71628 6.96628C4.57209 7.11047 4.5 7.26919 4.5 7.44244V19.5576C4.5 19.7308 4.57209 19.8895 4.71628 20.0337C4.86047 20.1779 5.01919 20.25 5.19244 20.25Z" fill="#07064E"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiFullscreen = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 17 17"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
d="M2.125 14.875V9.208h1.417v3.259l8.925-8.925H9.208V2.125h5.667v5.667h-1.417V4.533l-8.925 8.925h3.259v1.417z"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
export default SvgIconUiFullscreen;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiShareScreen = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 27 27"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
d="M12.938 17.221h1.124v-5.274l2.363 2.356.803-.803L13.5 9.779 9.779 13.5l.803.796 2.355-2.356zm-7.746 4.154q-.776 0-1.297-.52-.52-.521-.52-1.297V7.442q0-.776.52-1.297.521-.52 1.297-.52h16.616q.776 0 1.297.52.52.521.52 1.297v12.116q0 .776-.52 1.297-.521.52-1.297.52zm0-1.125h16.616a.66.66 0 0 0 .476-.216.66.66 0 0 0 .216-.476V7.442a.66.66 0 0 0-.216-.476.66.66 0 0 0-.476-.216H5.192a.66.66 0 0 0-.476.216.66.66 0 0 0-.216.476v12.116q0 .26.216.476a.66.66 0 0 0 .476.216"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
export default SvgIconUiShareScreen;
|
|
@@ -24,6 +24,7 @@ export { default as IconUiEml } from "./IconUiEml";
|
|
|
24
24
|
export { default as IconUiExclamationMark } from "./IconUiExclamationMark";
|
|
25
25
|
export { default as IconUiExpandArrow } from "./IconUiExpandArrow";
|
|
26
26
|
export { default as IconUiFullScreen } from "./IconUiFullScreen";
|
|
27
|
+
export { default as IconUiFullscreen } from "./IconUiFullscreen";
|
|
27
28
|
export { default as IconUiGoTo } from "./IconUiGoTo";
|
|
28
29
|
export { default as IconUiHand } from "./IconUiHand";
|
|
29
30
|
export { default as IconUiHangUp } from "./IconUiHangUp";
|
|
@@ -55,6 +56,7 @@ export { default as IconUiReportProblem } from "./IconUiReportProblem";
|
|
|
55
56
|
export { default as IconUiRtf } from "./IconUiRtf";
|
|
56
57
|
export { default as IconUiSendAgainV1 } from "./IconUiSendAgainV1";
|
|
57
58
|
export { default as IconUiSettings } from "./IconUiSettings";
|
|
59
|
+
export { default as IconUiShareScreen } from "./IconUiShareScreen";
|
|
58
60
|
export { default as IconUiStatusEdit } from "./IconUiStatusEdit";
|
|
59
61
|
export { default as IconUiStatusExclusion } from "./IconUiStatusExclusion";
|
|
60
62
|
export { default as IconUiTif } from "./IconUiTif";
|
package/dist/css/tokens.css
CHANGED
package/package.json
CHANGED