aural-ui 2.0.1 → 2.0.2

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,32 @@
1
+ import React from "react"
2
+ import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
3
+
4
+ export const CapitalALetterIcon = (
5
+ props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
6
+ ) => {
7
+ return (
8
+ <AccessibleIcon label="Capital A Letter Icon">
9
+ <svg
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ width="16"
12
+ height="16"
13
+ viewBox="0 0 16 16"
14
+ fill="none"
15
+ {...props}
16
+ >
17
+ <path
18
+ d="M3.33301 13L8.16634 2.66663L12.9997 13"
19
+ stroke="currentColor"
20
+ strokeWidth="1.5"
21
+ strokeLinecap="square"
22
+ />
23
+ <path
24
+ d="M5.5 9.33337H10.8333"
25
+ stroke="currentColor"
26
+ strokeWidth="1.5"
27
+ strokeLinecap="square"
28
+ />
29
+ </svg>
30
+ </AccessibleIcon>
31
+ )
32
+ }
@@ -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
+ }