@pleodigital/design-system-votey 1.0.122 → 1.0.124
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_go_fullscreen.svg +3 -0
- package/dist/assets/react/icons/ui/IconUiGoFullscreen.tsx +16 -0
- package/dist/assets/react/icons/ui/index.ts +1 -1
- 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
- package/dist/assets/angular/svg-raw/icons/ui/icon_ui_fullscreen.svg +0 -3
- package/dist/assets/react/icons/ui/IconUiFullscreen.tsx +0 -16
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiGoFullscreen = (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
|
+
<path
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
d="M7.125 18.875v-5.667h1.417v3.259l8.925-8.925h-3.259V6.125h5.667v5.667h-1.417V8.533l-8.925 8.925h3.259v1.417z"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
export default SvgIconUiGoFullscreen;
|
|
@@ -24,8 +24,8 @@ 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";
|
|
28
27
|
export { default as IconUiGoTo } from "./IconUiGoTo";
|
|
28
|
+
export { default as IconUiGoFullscreen } from "./IconUiGoFullscreen";
|
|
29
29
|
export { default as IconUiHand } from "./IconUiHand";
|
|
30
30
|
export { default as IconUiHangUp } from "./IconUiHangUp";
|
|
31
31
|
export { default as IconUiInProgress } from "./IconUiInProgress";
|
package/dist/css/tokens.css
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
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;
|