aural-ui 2.1.9 → 2.1.11

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,26 @@
1
+ import React from "react"
2
+ import { AccessibleIcon } from "@radix-ui/react-accessible-icon"
3
+
4
+ export const PhoneIcon = (
5
+ props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
6
+ ) => {
7
+ return (
8
+ <AccessibleIcon label="Phone icon">
9
+ <svg
10
+ width="14"
11
+ height="14"
12
+ viewBox="0 0 14 14"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ {...props}
16
+ >
17
+ <path
18
+ d="M5.68752 11.2298H8.31252M3.35419 1.02148H10.6459V12.9798H3.35419V1.02148Z"
19
+ stroke="currentColor"
20
+ strokeWidth="1.2"
21
+ strokeLinecap="square"
22
+ />
23
+ </svg>
24
+ </AccessibleIcon>
25
+ )
26
+ }
@@ -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
+ }