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

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 FeedTileProps } from './FeedTile.types';
2
+
3
+ declare const FeedTile: ({ fullWidth, icon, onClick, text }: FeedTileProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default FeedTile;
@@ -0,0 +1,10 @@
1
+ import { ReactNode } from 'react';
2
+ import { BaseButtonProps } from '../Button/Button.types';
3
+ import { Icon32 } from '../Icon/Icon.types';
4
+
5
+ export default interface FeedTileProps {
6
+ fullWidth?: boolean;
7
+ icon: Icon32;
8
+ onClick?: BaseButtonProps['onClick'];
9
+ text: ReactNode;
10
+ }
@@ -84,12 +84,21 @@ declare const IconsMap: {
84
84
  readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
85
85
  title?: string | undefined;
86
86
  }>;
87
+ readonly gift_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
88
+ title?: string | undefined;
89
+ }>;
87
90
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
88
91
  title?: string | undefined;
89
92
  }>;
93
+ readonly group_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
94
+ title?: string | undefined;
95
+ }>;
90
96
  readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
91
97
  title?: string | undefined;
92
98
  }>;
99
+ readonly heart_handShake_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
100
+ title?: string | undefined;
101
+ }>;
93
102
  readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
94
103
  title?: string | undefined;
95
104
  }>;
@@ -228,12 +228,21 @@ declare const iconsMap: {
228
228
  readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
229
229
  title?: string | undefined;
230
230
  }>;
231
+ readonly gift_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
232
+ title?: string | undefined;
233
+ }>;
231
234
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
232
235
  title?: string | undefined;
233
236
  }>;
237
+ readonly group_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
238
+ title?: string | undefined;
239
+ }>;
234
240
  readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
235
241
  title?: string | undefined;
236
242
  }>;
243
+ readonly heart_handShake_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
244
+ title?: string | undefined;
245
+ }>;
237
246
  readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
238
247
  title?: string | undefined;
239
248
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "1.8.0-development.18",
3
+ "version": "1.8.0-development.19",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {