@microbit/ui 0.1.0-alpha.25 → 0.1.0-alpha.26
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/package.json +1 -1
- package/src/ExternalLink.tsx +1 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microbit/ui",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.26",
|
|
4
4
|
"description": "micro:bit design-system primitives: react-aria-components + Panda CSS with a design language ported from Chakra UI v2. Ships as source; see README for the consumption setup.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/ExternalLink.tsx
CHANGED
|
@@ -38,10 +38,6 @@ export const ExternalLink = ({ children, ...props }: ExternalLinkProps) => (
|
|
|
38
38
|
{", "}
|
|
39
39
|
<FormattedMessage {...uiMessage("ui.new-tab-notice")} />
|
|
40
40
|
</VisuallyHidden>
|
|
41
|
-
<Icon
|
|
42
|
-
as={RiExternalLinkLine}
|
|
43
|
-
aria-hidden
|
|
44
|
-
css={{ verticalAlign: "text-bottom", ml: 1 }}
|
|
45
|
-
/>
|
|
41
|
+
<Icon as={RiExternalLinkLine} aria-hidden css={{ ml: 1 }} />
|
|
46
42
|
</Link>
|
|
47
43
|
);
|