@goodhood-web/ui 1.8.0-development.19 → 1.8.0-development.20

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,4 @@
1
+ import { default as MenuTileProps } from './MenuTile.type';
2
+
3
+ declare const MenuTile: ({ fullWidth, icon, primaryText, secondaryText, ...props }: MenuTileProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default MenuTile;
@@ -1,7 +1,7 @@
1
1
  import { ButtonProps } from '../Button/Button.types';
2
2
  import { Icon32 } from '../Icon/Icon.types';
3
3
 
4
- export default interface TileProps extends Omit<ButtonProps, 'children'> {
4
+ export default interface MenuTileProps extends Omit<ButtonProps, 'children'> {
5
5
  fullWidth?: boolean;
6
6
  icon?: Icon32;
7
7
  primaryText?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "1.8.0-development.19",
3
+ "version": "1.8.0-development.20",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {