@linktr.ee/messaging-react 1.22.0-rc-1771906339 → 1.22.0-rc-1771907607
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/assets/index.css +1 -1
- package/dist/index.js +161 -160
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CustomMessage/MessageTag.tsx +4 -3
- package/src/styles.css +1 -2
package/package.json
CHANGED
|
@@ -11,17 +11,18 @@ interface MessageTagProps {
|
|
|
11
11
|
hasAttachment?: boolean
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
const SparkleIcon = ({ size =
|
|
14
|
+
const SparkleIcon = ({ size = 15 }: { size?: number }) => (
|
|
15
15
|
<svg
|
|
16
16
|
width={size}
|
|
17
17
|
height={size}
|
|
18
|
-
viewBox="0 0
|
|
18
|
+
viewBox="0 0 15 15"
|
|
19
19
|
fill="none"
|
|
20
20
|
aria-hidden="true"
|
|
21
21
|
>
|
|
22
22
|
<path
|
|
23
|
-
d="
|
|
23
|
+
d="M12.003 9a.985.985 0 0 1-.652.934l-3.223 1.191-1.188 3.226a.995.995 0 0 1-1.867 0l-1.195-3.226L.65 9.937a.995.995 0 0 1 0-1.867l3.227-1.195 1.187-3.226a.995.995 0 0 1 1.868 0l1.195 3.226 3.226 1.187a.99.99 0 0 1 .649.938m3-5.83a.52.52 0 0 1-.344.492l-1.702.63-.627 1.703a.525.525 0 0 1-.986 0l-.63-1.704-1.704-.627a.525.525 0 0 1 0-.986l1.703-.63.627-1.704a.526.526 0 0 1 .986 0l.631 1.703 1.704.627a.52.52 0 0 1 .342.495"
|
|
24
24
|
fill="currentColor"
|
|
25
|
+
fillOpacity={0.55}
|
|
25
26
|
/>
|
|
26
27
|
</svg>
|
|
27
28
|
)
|