@ecohouse/ui 0.1.20 → 0.1.21

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecohouse/ui",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Cross-platform presentation-only UI components for EcoHouse (React Native + React Native Web)",
@@ -0,0 +1,27 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import { colors } from "../../theme";
3
+ import { AMENITY_PATHS, type AmenityName } from "./amenityPaths";
4
+
5
+ export interface AmenityIconProps {
6
+ name: AmenityName;
7
+ size?: number;
8
+ color?: string;
9
+ }
10
+
11
+ export function AmenityIcon({ name, size = 20, color = colors.primary }: AmenityIconProps) {
12
+ return (
13
+ <Svg width={size} height={size} viewBox="0 0 20 20" fill="none">
14
+ {AMENITY_PATHS[name].map((path, index) => (
15
+ <Path
16
+ key={`${name}-${index}`}
17
+ d={path.d}
18
+ fill={path.fill ? color : "none"}
19
+ stroke={path.fill ? undefined : color}
20
+ strokeWidth={path.strokeWidth}
21
+ strokeLinecap={path.rounded ? "round" : undefined}
22
+ strokeLinejoin={path.rounded ? "round" : undefined}
23
+ />
24
+ ))}
25
+ </Svg>
26
+ );
27
+ }
@@ -0,0 +1,26 @@
1
+ import { colors } from "../../theme";
2
+ import { AMENITY_PATHS, type AmenityName } from "./amenityPaths";
3
+
4
+ export interface AmenityIconProps {
5
+ name: AmenityName;
6
+ size?: number;
7
+ color?: string;
8
+ }
9
+
10
+ export function AmenityIcon({ name, size = 20, color = colors.primary }: AmenityIconProps) {
11
+ return (
12
+ <svg width={size} height={size} viewBox="0 0 20 20" fill="none" aria-hidden>
13
+ {AMENITY_PATHS[name].map((path, index) => (
14
+ <path
15
+ key={`${name}-${index}`}
16
+ d={path.d}
17
+ fill={path.fill ? color : "none"}
18
+ stroke={path.fill ? undefined : color}
19
+ strokeWidth={path.strokeWidth}
20
+ strokeLinecap={path.rounded ? "round" : undefined}
21
+ strokeLinejoin={path.rounded ? "round" : undefined}
22
+ />
23
+ ))}
24
+ </svg>
25
+ );
26
+ }
@@ -0,0 +1,77 @@
1
+ export const amenityNames = [
2
+ "kitchen",
3
+ "wifi",
4
+ "tv",
5
+ "washer",
6
+ "ac",
7
+ "bbq",
8
+ "forestView",
9
+ "pets",
10
+ ] as const;
11
+
12
+ export type AmenityName = (typeof amenityNames)[number];
13
+
14
+ export interface AmenityPathDefinition {
15
+ d: string;
16
+ fill?: boolean;
17
+ rounded?: boolean;
18
+ strokeWidth?: number;
19
+ }
20
+
21
+ export const AMENITY_PATHS: Record<AmenityName, readonly AmenityPathDefinition[]> = {
22
+ kitchen: [
23
+ {
24
+ d: "M7.5 2.1665C7.58829 2.16659 7.67292 2.20172 7.73535 2.26416C7.79779 2.3266 7.83292 2.41122 7.83301 2.49951V17.4995C7.83301 17.5879 7.79786 17.6733 7.73535 17.7358C7.67293 17.7982 7.58821 17.8334 7.5 17.8335C7.41159 17.8335 7.32618 17.7984 7.26367 17.7358C7.20116 17.6733 7.16602 17.5879 7.16602 17.4995V11.1665H4.16602C4.07773 11.1664 3.9931 11.1313 3.93066 11.0688C3.86823 11.0064 3.83309 10.9218 3.83301 10.8335V5.8335C3.83301 4.86104 4.21959 3.92836 4.90723 3.24072C5.59486 2.55309 6.52754 2.1665 7.5 2.1665ZM6.5 3.00342C5.91495 3.21027 5.40799 3.59338 5.0498 4.1001C4.6916 4.60695 4.49967 5.21284 4.5 5.8335V10.4995H7.16602V2.76807L6.5 3.00342ZM13 9.3501L12.7783 9.20166L10.6533 7.77588L10.6494 7.77393L10.5879 7.72119C10.5694 7.70112 10.5532 7.67894 10.54 7.65479C10.527 7.63071 10.5165 7.60493 10.5098 7.57861L10.5 7.49756V2.49951C10.5001 2.41122 10.5352 2.3266 10.5977 2.26416C10.6602 2.20175 10.7447 2.1665 10.833 2.1665C10.9213 2.1665 11.0059 2.20175 11.0684 2.26416C11.1308 2.3266 11.1659 2.41122 11.166 2.49951V7.31689L11.3877 7.46533L12.2217 8.02393L13 8.54541V2.49951C13.0001 2.41122 13.0352 2.3266 13.0977 2.26416C13.1602 2.20175 13.2447 2.1665 13.333 2.1665C13.4213 2.1665 13.5059 2.20175 13.5684 2.26416C13.6308 2.32659 13.6659 2.41122 13.666 2.49951V8.54541L14.4443 8.02393L15.2783 7.46533L15.5 7.31689V2.49951C15.5001 2.41122 15.5352 2.32659 15.5977 2.26416C15.6602 2.20175 15.7447 2.1665 15.833 2.1665C15.9213 2.1665 16.0059 2.20175 16.0684 2.26416C16.1308 2.32659 16.1659 2.41122 16.166 2.49951V7.49951C16.1654 7.55363 16.1518 7.60718 16.126 7.65479C16.0998 7.70285 16.0623 7.74381 16.0166 7.77393L16.0127 7.77588L13.8877 9.20166L13.666 9.3501V17.4995C13.666 17.5879 13.6309 17.6733 13.5684 17.7358C13.5059 17.7981 13.4213 17.8335 13.333 17.8335C13.2448 17.8335 13.1601 17.7981 13.0977 17.7358C13.0351 17.6733 13 17.5879 13 17.4995V9.3501Z",
25
+ },
26
+ ],
27
+ wifi: [
28
+ {
29
+ d: "M9.99967 16.25H10.008M19.005 7.25063C16.6326 5.07666 13.471 3.75 9.99958 3.75C6.52813 3.75 3.36653 5.07666 0.994141 7.25063M3.94295 10.2025C5.55806 8.77971 7.67807 7.91667 9.99966 7.91667C12.3212 7.91667 14.4413 8.77971 16.0564 10.2025M13.0816 13.1459C12.2324 12.4802 11.1623 12.0833 9.99958 12.0833C8.81925 12.0833 7.73445 12.4923 6.87915 13.1763",
30
+ rounded: true,
31
+ strokeWidth: 2,
32
+ },
33
+ ],
34
+ tv: [
35
+ {
36
+ d: "M15.0003 14.1667V16.1667C15.0003 16.6334 15.0003 16.8667 14.9095 17.045C14.8296 17.2018 14.7021 17.3293 14.5453 17.4092C14.3671 17.5 14.1337 17.5 13.667 17.5H6.33366C5.86695 17.5 5.63359 17.5 5.45533 17.4092C5.29853 17.3293 5.17105 17.2018 5.09115 17.045C5.00033 16.8667 5.00033 16.6334 5.00033 16.1667V14.1667M5.66699 14.1667H14.3337C15.7338 14.1667 16.4339 14.1667 16.9686 13.8942C17.439 13.6545 17.8215 13.272 18.0612 12.8016C18.3337 12.2669 18.3337 11.5668 18.3337 10.1667V6.5C18.3337 5.09987 18.3337 4.3998 18.0612 3.86502C17.8215 3.39462 17.439 3.01217 16.9686 2.77248C16.4339 2.5 15.7338 2.5 14.3337 2.5H5.66699C4.26686 2.5 3.5668 2.5 3.03202 2.77248C2.56161 3.01217 2.17916 3.39462 1.93948 3.86502C1.66699 4.3998 1.66699 5.09987 1.66699 6.5V10.1667C1.66699 11.5668 1.66699 12.2669 1.93948 12.8016C2.17916 13.272 2.56161 13.6545 3.03202 13.8942C3.5668 14.1667 4.26686 14.1667 5.66699 14.1667Z",
37
+ rounded: true,
38
+ strokeWidth: 2,
39
+ },
40
+ ],
41
+ washer: [
42
+ {
43
+ d: "M15.833 1.66699H4.16634C3.7061 1.66699 3.33301 2.04009 3.33301 2.50033V17.5003C3.33301 17.9606 3.7061 18.3337 4.16634 18.3337H15.833C16.2932 18.3337 16.6663 17.9606 16.6663 17.5003V2.50033C16.6663 2.04009 16.2932 1.66699 15.833 1.66699ZM3.33301 5.00033C3.33301 5.46058 3.7061 5.83366 4.16634 5.83366H15.833C16.2933 5.83366 16.6663 5.46058 16.6663 5.00033V2.50033C16.6663 2.04009 16.2933 1.66699 15.833 1.66699H4.16634C3.7061 1.66699 3.33301 2.04009 3.33301 2.50033V5.00033ZM9.99967 15.0003C11.6105 15.0003 12.9163 13.6945 12.9163 12.0837C12.9163 10.4728 11.6105 9.16699 9.99967 9.16699C8.38884 9.16699 7.08301 10.4728 7.08301 12.0837C7.08301 13.6945 8.38884 15.0003 9.99967 15.0003Z",
44
+ strokeWidth: 1.5,
45
+ },
46
+ {
47
+ d: "M5.83333 4.58317C6.29357 4.58317 6.66667 4.21007 6.66667 3.74984C6.66667 3.2896 6.29357 2.9165 5.83333 2.9165C5.3731 2.9165 5 3.2896 5 3.74984C5 4.21007 5.3731 4.58317 5.83333 4.58317ZM8.33333 4.58317C8.79357 4.58317 9.16667 4.21007 9.16667 3.74984C9.16667 3.2896 8.79357 2.9165 8.33333 2.9165C7.8731 2.9165 7.5 3.2896 7.5 3.74984C7.5 4.21007 7.8731 4.58317 8.33333 4.58317Z",
48
+ fill: true,
49
+ },
50
+ ],
51
+ ac: [
52
+ {
53
+ d: "M17.5003 3.33301H2.50033C2.04009 3.33301 1.66699 3.7061 1.66699 4.16634V10.833C1.66699 11.2932 2.04009 11.6663 2.50033 11.6663H17.5003C17.9606 11.6663 18.3337 11.2932 18.3337 10.833V4.16634C18.3337 3.7061 17.9606 3.33301 17.5003 3.33301ZM15 8.3335H5V11.6668H15V8.3335ZM13.333 5.83301H14.9997M10 14.1665V16.6665M6.66699 15V15.8333M13.333 15V15.8333",
54
+ rounded: true,
55
+ strokeWidth: 1.5,
56
+ },
57
+ ],
58
+ bbq: [
59
+ {
60
+ d: "M15.8337 6.6665H4.16699C4.16699 7.99259 4.69378 9.26436 5.63146 10.202C6.56914 11.1397 7.84091 11.6665 9.16699 11.6665H10.8337C12.1279 11.6674 13.372 11.1664 14.3045 10.2689C15.237 9.37143 15.7851 8.14732 15.8337 6.854V6.6665ZM14.1667 16.6668C13.7246 16.6668 13.3007 16.4912 12.9882 16.1787C12.6756 15.8661 12.5 15.4422 12.5 15.0002C12.5 14.5581 12.6756 14.1342 12.9882 13.8217C13.3007 13.5091 13.7246 13.3335 14.1667 13.3335C14.6087 13.3335 15.0326 13.5091 15.3452 13.8217C15.6577 14.1342 15.8333 14.5581 15.8333 15.0002C15.8333 15.4422 15.6577 15.8661 15.3452 16.1787C15.0326 16.4912 14.6087 16.6668 14.1667 16.6668ZM12.5 11.6665L13.3333 13.3332M7.5 11.6665L5 16.6665M12.4997 15H5.83301M12.5 4.16683V3.3335M10 4.16683V3.3335M7.5 4.16683V3.3335",
61
+ rounded: true,
62
+ strokeWidth: 1.5,
63
+ },
64
+ ],
65
+ forestView: [
66
+ {
67
+ d: "M13.75 5.3335C12.9544 5.3335 12.1905 5.64979 11.6279 6.2124C11.0656 6.77497 10.75 7.53803 10.75 8.3335V11.6685C10.7518 12.2873 10.9448 12.8903 11.3027 13.395C11.6608 13.8999 12.1665 14.2815 12.75 14.4878L13.416 14.7241V10.8335C13.416 10.7453 13.4514 10.6606 13.5137 10.5981C13.5762 10.5356 13.6616 10.5005 13.75 10.5005C13.8383 10.5006 13.9229 10.5357 13.9854 10.5981C14.0477 10.6606 14.083 10.7452 14.083 10.8335V14.7241L14.75 14.4878C15.3333 14.2815 15.8383 13.8997 16.1963 13.395C16.5543 12.8902 16.7482 12.2873 16.75 11.6685V8.3335C16.75 7.53795 16.4336 6.77499 15.8711 6.2124C15.3086 5.64987 14.5455 5.33358 13.75 5.3335ZM7.8291 2.896C7.08436 2.7482 6.31242 2.82426 5.61133 3.11572C4.91011 3.4073 4.31107 3.90128 3.89062 4.53369C3.52286 5.08695 3.30559 5.72481 3.25879 6.38428L3.25 6.6665V10.0015C3.25275 10.8492 3.53644 11.672 4.05664 12.3413C4.57684 13.0106 5.30421 13.4888 6.125 13.7007L6.75 13.8618V10.8335C6.75 10.7451 6.78518 10.6607 6.84766 10.5981C6.91017 10.5356 6.9946 10.5005 7.08301 10.5005C7.17141 10.5005 7.25585 10.5356 7.31836 10.5981C7.38083 10.6607 7.41602 10.7451 7.41602 10.8335V13.8716L8.04199 13.7095C8.81342 13.5095 9.50314 13.0736 10.0156 12.4634L10.1631 12.2876L10.127 12.062C10.1052 11.9268 10.0903 11.7906 10.083 11.6538V8.33447C10.0841 7.59016 10.3115 6.86331 10.7354 6.25146L10.8564 6.07764L10.8154 5.86963C10.6713 5.14369 10.3167 4.47555 9.79688 3.94873L9.79492 3.94678L9.58691 3.75342C9.08624 3.32147 8.48085 3.02537 7.8291 2.896ZM6.75 14.5024L6.33301 14.4321C5.2853 14.255 4.3338 13.713 3.64746 12.9019C3.00409 12.1414 2.63281 11.1901 2.58789 10.1987L2.58301 9.99951V6.67432C2.59783 5.64591 2.96462 4.65276 3.62207 3.86182C4.2795 3.07106 5.18807 2.52918 6.19629 2.32666C7.20464 2.12413 8.2522 2.27381 9.16406 2.74951C10.0758 3.22524 10.7973 3.9991 11.208 4.94189L11.4355 5.4624L11.9229 5.17041C12.4746 4.84014 13.106 4.66604 13.749 4.6665H13.75C14.7223 4.66659 15.6552 5.05317 16.3428 5.74072C17.0303 6.42833 17.416 7.36114 17.416 8.3335V11.6665C17.4162 12.5117 17.1243 13.3311 16.5898 13.9858C16.0554 14.6406 15.3115 15.0911 14.4834 15.2603L14.083 15.3413V17.5005C14.0829 17.5887 14.0478 17.6734 13.9854 17.7358C13.9229 17.7982 13.8383 17.8334 13.75 17.8335C13.6616 17.8335 13.5762 17.7984 13.5137 17.7358C13.4513 17.6734 13.4161 17.5887 13.416 17.5005V15.3442L13.0186 15.2603C12.534 15.1589 12.0747 14.9608 11.6689 14.6772C11.2632 14.3937 10.919 14.0309 10.6572 13.6108L10.3584 13.1313L9.91895 13.4858C9.31479 13.9737 8.59613 14.2993 7.83105 14.4321L7.41602 14.5044V17.5005C7.4159 17.5887 7.38077 17.6734 7.31836 17.7358C7.25587 17.7982 7.17131 17.8335 7.08301 17.8335C6.99471 17.8335 6.91015 17.7982 6.84766 17.7358C6.78525 17.6734 6.75012 17.5887 6.75 17.5005V14.5024Z",
68
+ },
69
+ ],
70
+ pets: [
71
+ {
72
+ d: "M12.2491 11.2498C11.3324 9.58317 11.0482 9.1665 9.99907 9.1665C8.94991 9.1665 8.55241 9.79567 7.63574 11.4557C6.85074 12.8748 5.26407 12.9932 4.86824 14.1982C4.78741 14.419 4.74741 14.7623 4.74907 14.9998C4.74907 15.9798 5.40491 16.6665 6.24907 16.6665C7.29824 16.6665 8.74907 15.8332 9.99907 15.8332C11.2491 15.8332 12.6999 16.6665 13.7491 16.6665C14.5932 16.6665 15.2491 15.9807 15.2491 14.9998C15.2491 14.7623 15.2082 14.419 15.1274 14.1982C14.7316 12.989 13.0341 12.669 12.2491 11.2498ZM16.8232 6.73484C16.7161 6.68958 16.601 6.66634 16.4848 6.6665H16.4723C15.8598 6.6765 15.1723 7.2915 14.8115 8.2215C14.379 9.334 14.5782 10.4715 15.2598 10.7648C15.3673 10.8107 15.4823 10.8332 15.5982 10.8332C16.214 10.8332 16.9107 10.2148 17.274 9.27817C17.704 8.16567 17.5007 7.02817 16.8232 6.73484ZM7.89628 7.50016C7.94211 7.50016 7.98711 7.50016 8.03211 7.491C8.81878 7.38433 9.30961 6.36933 9.13211 5.22266C8.96295 4.14183 8.25961 3.3335 7.52211 3.3335C7.47628 3.3335 7.43128 3.3335 7.38628 3.34266C6.59961 3.44933 6.10878 4.46433 6.28628 5.611C6.45628 6.6885 7.15961 7.50016 7.89711 7.50016H7.89628ZM13.7129 5.611C13.8913 4.46433 13.4004 3.44933 12.6129 3.34266C12.5682 3.33647 12.5231 3.33341 12.4779 3.3335C11.7404 3.3335 11.0379 4.14183 10.8696 5.22267C10.6913 6.36933 11.1821 7.38433 11.9696 7.491C12.0146 7.49683 12.0596 7.50016 12.1046 7.50016C12.8421 7.50016 13.5463 6.6885 13.7129 5.611ZM4.74152 10.7648C5.42152 10.4715 5.61985 9.33234 5.18819 8.2215C4.82485 7.28484 4.12902 6.6665 3.51402 6.6665C3.39735 6.6665 3.28319 6.689 3.17485 6.73484C2.49485 7.02817 2.29652 8.16734 2.72819 9.27817C3.09152 10.2148 3.78735 10.8332 4.40235 10.8332C4.51902 10.8332 4.63319 10.8107 4.74152 10.7648Z",
73
+ rounded: true,
74
+ strokeWidth: 1.5,
75
+ },
76
+ ],
77
+ };
@@ -0,0 +1,4 @@
1
+ export { AmenityIcon } from "./AmenityIcon";
2
+ export type { AmenityIconProps } from "./AmenityIcon";
3
+ export { AMENITY_PATHS, amenityNames } from "./amenityPaths";
4
+ export type { AmenityName, AmenityPathDefinition } from "./amenityPaths";
@@ -0,0 +1,24 @@
1
+ import Svg, { Path } from "react-native-svg";
2
+ import { colors } from "../../theme";
3
+ import type { IconProps } from "../types";
4
+ import { APPLE_PATHS, GOOGLE_PLAY_PATHS } from "./storeMarkPaths";
5
+
6
+ export function AppleIcon({ size = 30, color = colors.white }: IconProps) {
7
+ return (
8
+ <Svg width={(size * 25) / 30} height={size} viewBox="0 0 25 30" fill="none">
9
+ {APPLE_PATHS.map((path) => (
10
+ <Path key={path} d={path} fill={color} />
11
+ ))}
12
+ </Svg>
13
+ );
14
+ }
15
+
16
+ export function GooglePlayIcon({ size = 30 }: IconProps) {
17
+ return (
18
+ <Svg width={(size * 27) / 30} height={size} viewBox="0 0 27 30" fill="none">
19
+ {GOOGLE_PLAY_PATHS.map((path) => (
20
+ <Path key={path.d} d={path.d} fill={path.color} />
21
+ ))}
22
+ </Svg>
23
+ );
24
+ }
@@ -0,0 +1,23 @@
1
+ import { colors } from "../../theme";
2
+ import type { IconProps } from "../types";
3
+ import { APPLE_PATHS, GOOGLE_PLAY_PATHS } from "./storeMarkPaths";
4
+
5
+ export function AppleIcon({ size = 30, color = colors.white }: IconProps) {
6
+ return (
7
+ <svg width={(size * 25) / 30} height={size} viewBox="0 0 25 30" fill="none" aria-hidden>
8
+ {APPLE_PATHS.map((path) => (
9
+ <path key={path} d={path} fill={color} />
10
+ ))}
11
+ </svg>
12
+ );
13
+ }
14
+
15
+ export function GooglePlayIcon({ size = 30 }: IconProps) {
16
+ return (
17
+ <svg width={(size * 27) / 30} height={size} viewBox="0 0 27 30" fill="none" aria-hidden>
18
+ {GOOGLE_PLAY_PATHS.map((path) => (
19
+ <path key={path.d} d={path.d} fill={path.color} />
20
+ ))}
21
+ </svg>
22
+ );
23
+ }
@@ -0,0 +1,2 @@
1
+ export { AppleIcon, GooglePlayIcon } from "./StoreIcons";
2
+ export { APPLE_PATHS, GOOGLE_PLAY_PATHS } from "./storeMarkPaths";
@@ -0,0 +1,23 @@
1
+ export const APPLE_PATHS = [
2
+ "M20.8806 15.9539C20.8958 14.804 21.2087 13.6766 21.7901 12.6765C22.3715 11.6763 23.2026 10.8361 24.206 10.2338C23.5685 9.34496 22.7276 8.6135 21.7499 8.0975C20.7723 7.58149 19.6849 7.29515 18.574 7.26122C16.2044 7.01838 13.9072 8.64554 12.6997 8.64554C11.4688 8.64554 9.6097 7.28533 7.6077 7.32554C6.31276 7.36638 5.05074 7.73402 3.9446 8.39262C2.83847 9.05123 1.92593 9.97834 1.29592 11.0836C-1.4331 15.6966 0.602506 22.4762 3.21673 26.205C4.52469 28.0309 6.0533 30.0704 8.05349 29.9981C10.0108 29.9189 10.7418 28.7796 13.1044 28.7796C15.4451 28.7796 16.1309 29.9981 18.1717 29.9521C20.272 29.9189 21.5953 28.1181 22.8573 26.275C23.7971 24.9739 24.5203 23.536 25 22.0145C23.7798 21.5107 22.7385 20.6673 22.006 19.5895C21.2734 18.5118 20.882 17.2474 20.8806 15.9539Z",
3
+ "M17.0261 4.80891C18.1712 3.46678 18.7354 1.74169 18.5988 0C16.8492 0.179399 15.2332 0.995745 14.0725 2.28638C13.5051 2.91689 13.0705 3.65041 12.7935 4.44501C12.5166 5.2396 12.4028 6.07969 12.4586 6.91725C13.3337 6.92605 14.1994 6.74087 14.9906 6.37567C15.7817 6.01047 16.4777 5.47477 17.0261 4.80891Z",
4
+ ] as const;
5
+
6
+ export const GOOGLE_PLAY_PATHS = [
7
+ {
8
+ color: "#A63E3E",
9
+ d: "M12.2558 14.3271L0.111816 27.5074C0.112957 27.5097 0.112957 27.5132 0.114097 27.5156C0.487075 28.9467 1.76455 30 3.28156 30C3.88836 30 4.45752 29.832 4.9457 29.5381L4.98448 29.5148L18.6535 21.4491L12.2558 14.3271Z",
10
+ },
11
+ {
12
+ color: "#FBBC04",
13
+ d: "M24.5415 12.0827L24.5301 12.0746L18.6286 8.57654L11.98 14.6267L18.6525 21.4478L24.5221 17.9847C25.5509 17.4155 26.2501 16.3063 26.2501 15.0279C26.2501 13.7565 25.5612 12.6531 24.5415 12.0827Z",
14
+ },
15
+ {
16
+ color: "#4285F4",
17
+ d: "M0.111779 2.49162C0.0387806 2.76689 0 3.05616 0 3.35476V26.6454C0 26.944 0.0387806 27.2333 0.11292 27.5074L12.6733 14.6642L0.111779 2.49162Z",
18
+ },
19
+ {
20
+ color: "#34A853",
21
+ d: "M12.3459 14.9999L18.6307 8.57419L4.97764 0.479377C4.48147 0.174946 3.90205 -1.23978e-05 3.2827 -1.23978e-05C1.76569 -1.23978e-05 0.485934 1.05558 0.112956 2.48792C0.112956 2.48908 0.111816 2.49025 0.111816 2.49142L12.3459 14.9999Z",
22
+ },
23
+ ] as const;
@@ -5,6 +5,9 @@ export type { IconByNameProps } from "./Icon";
5
5
  export { icons, iconNames, iconGroups, iconGroupNames, getIconsByGroup } from "./registry";
6
6
  export { Icon } from "./Icon";
7
7
 
8
+ export { AmenityIcon } from "./Amenity";
9
+ export type { AmenityIconProps, AmenityName } from "./Amenity";
10
+ export { AppleIcon } from "./Store";
8
11
  export { ArrowRightIcon } from "./ArrowRight";
9
12
  export { BagIcon } from "./Bag";
10
13
  export { BellIcon } from "./Bell";
@@ -40,6 +43,7 @@ export { FacebookIcon } from "./Facebook";
40
43
  export { FiltersIcon } from "./Filters";
41
44
  export { HeartIcon } from "./Heart";
42
45
  export { GlobeIcon } from "./Globe";
46
+ export { GooglePlayIcon } from "./Store";
43
47
  export { HelpCircleIcon } from "./HelpCircle";
44
48
  export { HomeIcon } from "./Home";
45
49
  export { InstagramIcon } from "./Instagram";
@@ -1,4 +1,5 @@
1
1
  import { ArrowRightIcon } from "./ArrowRight";
2
+ import { AppleIcon, GooglePlayIcon } from "./Store";
2
3
  import { BagIcon } from "./Bag";
3
4
  import { BellIcon } from "./Bell";
4
5
  import { BuildingIcon } from "./Building";
@@ -64,6 +65,7 @@ import type { IconComponent } from "./types";
64
65
 
65
66
  export const icons = {
66
67
  areaExpand: AreaExpandIcon,
68
+ apple: AppleIcon,
67
69
  arrowRight: ArrowRightIcon,
68
70
  bag: BagIcon,
69
71
  bell: BellIcon,
@@ -88,6 +90,7 @@ export const icons = {
88
90
  guests: GuestsIcon,
89
91
  heart: HeartIcon,
90
92
  globe: GlobeIcon,
93
+ googlePlay: GooglePlayIcon,
91
94
  helpCircle: HelpCircleIcon,
92
95
  home: HomeIcon,
93
96
  instagram: InstagramIcon,
@@ -182,7 +185,7 @@ export const iconGroups = {
182
185
  "whatsApp",
183
186
  ],
184
187
  communication: ["mail", "phone"],
185
- social: ["facebook", "instagram", "linkedin"],
188
+ social: ["apple", "facebook", "googlePlay", "instagram", "linkedin"],
186
189
  interface: [
187
190
  "areaExpand",
188
191
  "globe",
package/src/index.ts CHANGED
@@ -70,6 +70,8 @@ export type {
70
70
 
71
71
  export {
72
72
  Icon,
73
+ AmenityIcon,
74
+ AppleIcon,
73
75
  icons,
74
76
  iconNames,
75
77
  iconGroups,
@@ -106,6 +108,7 @@ export {
106
108
  FiltersIcon,
107
109
  HeartIcon,
108
110
  GlobeIcon,
111
+ GooglePlayIcon,
109
112
  HelpCircleIcon,
110
113
  HomeIcon,
111
114
  InstagramIcon,
@@ -143,6 +146,8 @@ export type {
143
146
  IconByNameProps,
144
147
  MenuIconProps,
145
148
  StarIconProps,
149
+ AmenityIconProps,
150
+ AmenityName,
146
151
  } from "./icons";
147
152
 
148
153
  export {