@pleodigital/design-system-votey 1.0.79 → 1.0.80
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_status-exclusion.svg +1 -0
- package/dist/assets/react/icons/ui/IconUiStatusExclusion.tsx +27 -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 @@
|
|
|
1
|
+
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path d="M7 14c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7" fill="#f56161"/><path d="m8.41 7 1.79-1.79A.996.996 0 1 0 8.79 3.8L7 5.59 5.21 3.8A.996.996 0 1 0 3.8 5.21L5.59 7 3.8 8.79a.996.996 0 0 0 .71 1.7c.26 0 .51-.1.71-.29l1.79-1.79L8.8 10.2c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41L8.43 7z" fill="#fff"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h14v14H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiStatusExclusion = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 14 14"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g clipPath="url(#a)">
|
|
11
|
+
<path
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
d="M7 14c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="m8.41 7 1.79-1.79A.996.996 0 1 0 8.79 3.8L7 5.59 5.21 3.8A.996.996 0 1 0 3.8 5.21L5.59 7 3.8 8.79a.996.996 0 0 0 .71 1.7c.26 0 .51-.1.71-.29l1.79-1.79L8.8 10.2c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41L8.43 7z"
|
|
18
|
+
/>
|
|
19
|
+
</g>
|
|
20
|
+
<defs>
|
|
21
|
+
<clipPath id="a">
|
|
22
|
+
<path fill="currentColor" d="M0 0h14v14H0z" />
|
|
23
|
+
</clipPath>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgIconUiStatusExclusion;
|
|
@@ -55,6 +55,7 @@ export { default as IconUiRtf } from "./IconUiRtf";
|
|
|
55
55
|
export { default as IconUiSendAgainV1 } from "./IconUiSendAgainV1";
|
|
56
56
|
export { default as IconUiSettings } from "./IconUiSettings";
|
|
57
57
|
export { default as IconUiStatusEdit } from "./IconUiStatusEdit";
|
|
58
|
+
export { default as IconUiStatusExclusion } from "./IconUiStatusExclusion";
|
|
58
59
|
export { default as IconUiTif } from "./IconUiTif";
|
|
59
60
|
export { default as IconUiTimeV1 } from "./IconUiTimeV1";
|
|
60
61
|
export { default as IconUiTimeV2 } from "./IconUiTimeV2";
|
package/dist/css/tokens.css
CHANGED
package/package.json
CHANGED