aural-ui 2.1.16 → 2.1.18
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/icons/column-wide-add-icon/ColumnWideAddIcon.stories.tsx +968 -0
- package/dist/icons/column-wide-add-icon/index.tsx +38 -0
- package/dist/icons/column-wide-add-icon/meta.ts +8 -0
- package/dist/icons/index.ts +2 -0
- package/dist/icons/pocket-studio-icon/PocketStudioIcon.stories.tsx +892 -0
- package/dist/icons/pocket-studio-icon/index.tsx +51 -0
- package/dist/icons/pocket-studio-icon/meta.ts +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from "react"
|
|
2
|
+
import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
|
|
3
|
+
|
|
4
|
+
export interface ColumnWideAddIconProps extends React.SVGProps<SVGSVGElement> {
|
|
5
|
+
withAccessibility?: boolean
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const ColumnWideAddIcon = (props: ColumnWideAddIconProps) => {
|
|
9
|
+
const { withAccessibility = true, ...svgProps } = props
|
|
10
|
+
|
|
11
|
+
const svg = (
|
|
12
|
+
<svg
|
|
13
|
+
width="56"
|
|
14
|
+
height="56"
|
|
15
|
+
viewBox="0 0 56 56"
|
|
16
|
+
fill="none"
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
{...svgProps}
|
|
19
|
+
>
|
|
20
|
+
<g>
|
|
21
|
+
<path
|
|
22
|
+
d="M6.41669 44.9166H4.91669V46.4166H6.41669V44.9166ZM6.41669 11.0833V9.58325H4.91669V11.0833H6.41669ZM28 44.9166V46.4166H29.5V44.9166H28ZM49.5834 11.0833H51.0834V9.58325H49.5834V11.0833ZM48.0834 23.9166V25.4166H51.0834V23.9166H49.5834H48.0834ZM29.5 11.6666V10.1666H26.5V11.6666H28H29.5ZM6.41669 44.9166H7.91669V11.0833H6.41669H4.91669V44.9166H6.41669ZM28 44.9166V43.4166H6.41669V44.9166V46.4166H28V44.9166ZM49.5834 11.0833H48.0834V23.9166H49.5834H51.0834V11.0833H49.5834ZM6.41669 11.0833V12.5833H28V11.0833V9.58325H6.41669V11.0833ZM28 11.0833V12.5833H49.5834V11.0833V9.58325H28V11.0833ZM28 44.9166H29.5V11.6666H28H26.5V44.9166H28Z"
|
|
23
|
+
fill="currentColor"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M45.8333 32.0833V30.5833H42.8333V32.0833H44.3333H45.8333ZM42.8333 47.2499V48.7499H45.8333V47.2499H44.3333H42.8333ZM36.75 38.1666H35.25V41.1666H36.75V39.6666V38.1666ZM51.9167 41.1666H53.4167V38.1666H51.9167V39.6666V41.1666ZM44.3333 32.0833H42.8333V39.6666H44.3333H45.8333V32.0833H44.3333ZM44.3333 39.6666H42.8333V47.2499H44.3333H45.8333V39.6666H44.3333ZM36.75 39.6666V41.1666H44.3333V39.6666V38.1666H36.75V39.6666ZM44.3333 39.6666V41.1666H51.9167V39.6666V38.1666H44.3333V39.6666Z"
|
|
27
|
+
fill="currentColor"
|
|
28
|
+
/>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
if (withAccessibility) {
|
|
34
|
+
return <AccessibleIcon label="Column Wide Add Icon">{svg}</AccessibleIcon>
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return svg
|
|
38
|
+
}
|
package/dist/icons/index.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from "./chevron-left-icon"
|
|
|
23
23
|
export * from "./chevron-right-icon"
|
|
24
24
|
export * from "./chevron-up-icon"
|
|
25
25
|
export * from "./circle-tick-icon"
|
|
26
|
+
export * from "./column-wide-add-icon"
|
|
26
27
|
export * from "./coin-icon"
|
|
27
28
|
export * from "./coin-icon-toons"
|
|
28
29
|
export * from "./command-icon"
|
|
@@ -73,6 +74,7 @@ export * from "./paper-plane-icon"
|
|
|
73
74
|
export * from "./pause-icon"
|
|
74
75
|
export * from "./pencil-icon"
|
|
75
76
|
export * from "./plus-icon"
|
|
77
|
+
export * from "./pocket-studio-icon"
|
|
76
78
|
export * from "./phone-icon"
|
|
77
79
|
export * from "./search-icon"
|
|
78
80
|
export * from "./setting-icon"
|