@elmethis/react 0.2.1 → 0.2.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.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { ElmInlineIcon, type ElmInlineIconProps, } from './components/icon/ElmInlineIcon';
2
+ export { ElmMdiIcon, type ElmMdiIconProps } from './components/icon/ElmMdiIcon';
2
3
  export { ElmImage, type ElmImageProps } from './components/media/ElmImage';
3
4
  export { ElmBlockQuote, type ElmBlockQuoteProps, } from './components/typography/ElmBlockQuote';
4
5
  export { ElmCallout, type ElmCalloutProps, } from './components/typography/ElmCallout';
package/dist/index.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  import { ElmInlineIcon } from "./components/icon/ElmInlineIcon.mjs";
2
+ import { ElmMdiIcon } from "./components/icon/ElmMdiIcon.mjs";
2
3
  import { ElmImage } from "./components/media/ElmImage.mjs";
3
4
  import { ElmBlockQuote } from "./components/typography/ElmBlockQuote.mjs";
4
5
  import { ElmCallout } from "./components/typography/ElmCallout.mjs";
@@ -10,5 +11,6 @@ export {
10
11
  ElmImage,
11
12
  ElmInlineIcon,
12
13
  ElmInlineText,
14
+ ElmMdiIcon,
13
15
  ElmParagraph
14
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/react",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },