@syscore/ui-library 1.6.0 → 1.7.1

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,54 @@
1
+ import { cn } from "../../lib/utils";
2
+
3
+ export function UtilityRevisionsHide({ className }: { className?: string }) {
4
+ return (
5
+ <div
6
+ className={cn(
7
+ "size-4 flex items-center justify-center text-gray-500",
8
+ className,
9
+ )}
10
+ >
11
+ <svg
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ width="17"
14
+ height="15"
15
+ viewBox="0 0 17 15"
16
+ fill="none"
17
+ className={cn("size-[14px] text-inherit")}
18
+ >
19
+ <path
20
+ d="M5.48682 6.27734L0.75 11.0142V13.3826H7.85523L10.2236 11.0142"
21
+ fill="#F6EFD0"
22
+ />
23
+ <path
24
+ d="M5.48682 6.27734L0.75 11.0142V13.3826H7.85523L10.2236 11.0142"
25
+ stroke="currentColor"
26
+ strokeWidth="1.5"
27
+ strokeLinecap="round"
28
+ strokeLinejoin="round"
29
+ />
30
+ <path
31
+ d="M15.7502 7.06576L12.1187 10.6973C11.8235 10.9866 11.4267 11.1487 11.0134 11.1487C10.6001 11.1487 10.2033 10.9866 9.90816 10.6973L5.80291 6.59208C5.51361 6.29693 5.35156 5.90011 5.35156 5.48682C5.35156 5.07353 5.51361 4.67671 5.80291 4.38156L9.43448 0.75"
32
+ stroke="currentColor"
33
+ strokeWidth="1.5"
34
+ strokeLinecap="round"
35
+ strokeLinejoin="round"
36
+ />
37
+ <path
38
+ d="M12.75 3.72266L15.72 0.752693"
39
+ stroke="currentColor"
40
+ strokeWidth="1.5"
41
+ strokeLinecap="round"
42
+ strokeLinejoin="round"
43
+ />
44
+ <path
45
+ d="M12.75 0.75L15.72 3.71996"
46
+ stroke="currentColor"
47
+ strokeWidth="1.5"
48
+ strokeLinecap="round"
49
+ strokeLinejoin="round"
50
+ />
51
+ </svg>
52
+ </div>
53
+ );
54
+ }