aural-ui 2.0.4 → 2.0.5
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/components/button/Button.stories.tsx +74 -4
- package/dist/components/button/index.tsx +47 -2
- package/dist/components/dialog/Dialog.stories.tsx +331 -167
- package/dist/components/dialog/index.tsx +190 -51
- package/dist/icons/git-branch-icon/GitBranchIcon.stories.tsx +1208 -0
- package/dist/icons/git-branch-icon/index.tsx +24 -0
- package/dist/icons/git-branch-icon/meta.ts +8 -0
- package/dist/icons/git-fork-icon/GitForkIcon.stories.tsx +1185 -0
- package/dist/icons/git-fork-icon/index.tsx +22 -0
- package/dist/icons/git-fork-icon/meta.ts +8 -0
- package/dist/icons/import-left-arrow-folder-icon/ImportLeftArrowFolderIcon.stories.tsx +1325 -0
- package/dist/icons/import-left-arrow-folder-icon/index.tsx +25 -0
- package/dist/icons/import-left-arrow-folder-icon/meta.ts +8 -0
- package/dist/icons/index.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from "react"
|
|
2
|
+
import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
|
|
3
|
+
|
|
4
|
+
export const GitForkIcon = (
|
|
5
|
+
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
|
|
6
|
+
) => (
|
|
7
|
+
<AccessibleIcon label="Git fork 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="M6.5 12H5.75V12.75H6.5V12ZM17.5 12V12.75C17.9142 12.75 18.25 12.4142 18.25 12H17.5ZM11.25 12V16H12.75V12H11.25ZM12 11.25H6.5V12.75H12V11.25ZM7.25 12V8H5.75V12H7.25ZM12 12.75H17.5V11.25H12V12.75ZM18.25 12V8H16.75V12H18.25ZM8.5 5.5C8.5 6.60457 7.60457 7.5 6.5 7.5V9C8.433 9 10 7.433 10 5.5H8.5ZM6.5 7.5C5.39543 7.5 4.5 6.60457 4.5 5.5H3C3 7.433 4.567 9 6.5 9V7.5ZM4.5 5.5C4.5 4.39543 5.39543 3.5 6.5 3.5V2C4.567 2 3 3.567 3 5.5H4.5ZM6.5 3.5C7.60457 3.5 8.5 4.39543 8.5 5.5H10C10 3.567 8.433 2 6.5 2V3.5ZM19.5 5.5C19.5 6.60457 18.6046 7.5 17.5 7.5V9C19.433 9 21 7.433 21 5.5H19.5ZM17.5 7.5C16.3954 7.5 15.5 6.60457 15.5 5.5H14C14 7.433 15.567 9 17.5 9V7.5ZM15.5 5.5C15.5 4.39543 16.3954 3.5 17.5 3.5V2C15.567 2 14 3.567 14 5.5H15.5ZM17.5 3.5C18.6046 3.5 19.5 4.39543 19.5 5.5H21C21 3.567 19.433 2 17.5 2V3.5ZM14 18.5C14 19.6046 13.1046 20.5 12 20.5V22C13.933 22 15.5 20.433 15.5 18.5H14ZM12 20.5C10.8954 20.5 10 19.6046 10 18.5H8.5C8.5 20.433 10.067 22 12 22V20.5ZM10 18.5C10 17.3954 10.8954 16.5 12 16.5V15C10.067 15 8.5 16.567 8.5 18.5H10ZM12 16.5C13.1046 16.5 14 17.3954 14 18.5H15.5C15.5 16.567 13.933 15 12 15V16.5Z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
</AccessibleIcon>
|
|
22
|
+
)
|