aural-ui 2.0.4 → 2.0.7

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,24 @@
1
+ import React from "react"
2
+ import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
3
+
4
+ export const GitBranchIcon = (
5
+ props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
6
+ ) => (
7
+ <AccessibleIcon label="Git branch icon">
8
+ <svg
9
+ width="24"
10
+ height="24"
11
+ viewBox="0 0 24 24"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ {...props}
15
+ >
16
+ <path
17
+ d="M7.5 12H16.5V8.75M7.5 12V8.5M7.5 12V15.5M16.5 8.25C18.0188 8.25 19.25 7.01878 19.25 5.5C19.25 3.98122 18.0188 2.75 16.5 2.75C14.9812 2.75 13.75 3.98122 13.75 5.5C13.75 7.01878 14.9812 8.25 16.5 8.25ZM7.5 15.75C5.98122 15.75 4.75 16.9812 4.75 18.5C4.75 20.0188 5.98122 21.25 7.5 21.25C9.01878 21.25 10.25 20.0188 10.25 18.5C10.25 16.9812 9.01878 15.75 7.5 15.75ZM7.5 8.25C9.01878 8.25 10.25 7.01878 10.25 5.5C10.25 3.98122 9.01878 2.75 7.5 2.75C5.98122 2.75 4.75 3.98122 4.75 5.5C4.75 7.01878 5.98122 8.25 7.5 8.25Z"
18
+ stroke="currentColor"
19
+ strokeWidth="1.5"
20
+ strokeLinecap="square"
21
+ />
22
+ </svg>
23
+ </AccessibleIcon>
24
+ )
@@ -0,0 +1,8 @@
1
+ export const meta = {
2
+ dependencies: {
3
+ "@radix-ui/react-accessible-icon": "^1.1.7",
4
+ },
5
+ devDependencies: {},
6
+ internalDependencies: [],
7
+ tokens: [],
8
+ }