mautourco-components 0.2.9 → 0.2.11
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/components/atoms/Button/Button.css +28 -0
- package/dist/components/atoms/Button/Button.d.ts +1 -1
- package/dist/components/atoms/Button/Button.js +2 -1
- package/dist/components/atoms/Chip/Chip.css +2238 -0
- package/dist/components/atoms/Chip/Chip.d.ts +27 -0
- package/dist/components/atoms/Chip/Chip.js +37 -0
- package/dist/components/atoms/Divider/Divider.css +2135 -0
- package/dist/components/atoms/Divider/Divider.d.ts +14 -0
- package/dist/components/atoms/Divider/Divider.js +16 -0
- package/dist/components/atoms/Icon/Icon.d.ts +3 -2
- package/dist/components/atoms/Icon/Icon.js +3 -117
- package/dist/components/atoms/Icon/icons/ArrowRightOutlineIcon.d.ts +8 -0
- package/dist/components/atoms/Icon/icons/ArrowRightOutlineIcon.js +36 -0
- package/dist/components/atoms/Icon/icons/Building2OutlineIcon.d.ts +8 -0
- package/dist/components/atoms/Icon/icons/Building2OutlineIcon.js +36 -0
- package/dist/components/atoms/Icon/icons/CalendarRangeOutlineIcon.d.ts +8 -0
- package/dist/components/atoms/Icon/icons/CalendarRangeOutlineIcon.js +36 -0
- package/dist/components/atoms/Icon/icons/PlaneLandingOutlineIcon.d.ts +8 -0
- package/dist/components/atoms/Icon/icons/PlaneLandingOutlineIcon.js +36 -0
- package/dist/components/atoms/Icon/icons/PlaneTakeoffOutlineIcon.d.ts +8 -0
- package/dist/components/atoms/Icon/icons/PlaneTakeoffOutlineIcon.js +36 -0
- package/dist/components/atoms/Icon/icons/registry.d.ts +55 -0
- package/dist/components/atoms/Icon/icons/registry.js +99 -0
- package/dist/components/molecules/FeatureRow/FeatureRow.css +2130 -0
- package/dist/components/molecules/FeatureRow/FeatureRow.d.ts +17 -0
- package/dist/components/molecules/FeatureRow/FeatureRow.js +22 -0
- package/dist/components/molecules/LocationDropdown/LocationDropdown.d.ts +1 -0
- package/dist/components/molecules/LocationDropdown/LocationDropdown.js +17 -4
- package/dist/components/molecules/Pagination/Pagination.css +2168 -0
- package/dist/components/molecules/Pagination/Pagination.d.ts +16 -0
- package/dist/components/molecules/Pagination/Pagination.js +90 -0
- package/dist/components/molecules/SectionTitle/SectionTitle.css +2112 -0
- package/dist/components/molecules/SectionTitle/SectionTitle.d.ts +16 -0
- package/dist/components/molecules/SectionTitle/SectionTitle.js +21 -0
- package/dist/components/molecules/Stepper/Stepper.css +2144 -0
- package/dist/components/molecules/Stepper/Stepper.d.ts +18 -0
- package/dist/components/molecules/Stepper/Stepper.js +33 -0
- package/dist/components/organisms/CarBookingCard/CarBookingCard.css +2313 -0
- package/dist/components/organisms/CarBookingCard/CarBookingCard.d.ts +51 -0
- package/dist/components/organisms/CarBookingCard/CarBookingCard.js +39 -0
- package/dist/components/organisms/CarBookingCard/index.d.ts +2 -0
- package/dist/components/organisms/CarBookingCard/index.js +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +7 -0
- package/dist/styles/components/molecule/location-dropdown.css +38 -0
- package/package.json +1 -1
- package/src/components/atoms/Button/Button.css +28 -0
- package/src/components/atoms/Button/Button.tsx +3 -2
- package/src/components/atoms/Chip/Chip.css +161 -0
- package/src/components/atoms/Chip/Chip.tsx +79 -0
- package/src/components/atoms/Divider/Divider.css +58 -0
- package/src/components/atoms/Divider/Divider.tsx +36 -0
- package/src/components/atoms/Icon/Icon.tsx +5 -145
- package/src/components/atoms/Icon/icons/ArrowRightOutlineIcon.tsx +55 -0
- package/src/components/atoms/Icon/icons/Building2OutlineIcon.tsx +52 -0
- package/src/components/atoms/Icon/icons/CalendarRangeOutlineIcon.tsx +55 -0
- package/src/components/atoms/Icon/icons/PlaneLandingOutlineIcon.tsx +56 -0
- package/src/components/atoms/Icon/icons/PlaneTakeoffOutlineIcon.tsx +52 -0
- package/src/components/atoms/Icon/icons/registry.tsx +105 -0
- package/src/components/molecules/FeatureRow/FeatureRow.css +53 -0
- package/src/components/molecules/FeatureRow/FeatureRow.tsx +46 -0
- package/src/components/molecules/LocationDropdown/LocationDropdown.tsx +67 -38
- package/src/components/molecules/Pagination/Pagination.css +90 -0
- package/src/components/molecules/Pagination/Pagination.tsx +149 -0
- package/src/components/molecules/SectionTitle/SectionTitle.css +35 -0
- package/src/components/molecules/SectionTitle/SectionTitle.tsx +43 -0
- package/src/components/molecules/Stepper/Stepper.css +67 -0
- package/src/components/molecules/Stepper/Stepper.tsx +74 -0
- package/src/components/organisms/CarBookingCard/CarBookingCard.css +236 -0
- package/src/components/organisms/CarBookingCard/CarBookingCard.tsx +238 -0
- package/src/components/organisms/CarBookingCard/index.ts +12 -0
- package/src/styles/components/molecule/location-dropdown.css +29 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './Divider.css';
|
|
3
|
+
export interface DividerProps {
|
|
4
|
+
/** Orientation of the divider */
|
|
5
|
+
orientation?: 'horizontal' | 'vertical';
|
|
6
|
+
/** Variant of the divider */
|
|
7
|
+
variant?: 'default' | 'color-bar' | 'dashed';
|
|
8
|
+
/** Custom color (overrides default color) */
|
|
9
|
+
color?: string;
|
|
10
|
+
/** Additional CSS classes */
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
declare const Divider: React.FC<DividerProps>;
|
|
14
|
+
export default Divider;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import './Divider.css';
|
|
3
|
+
var Divider = function (_a) {
|
|
4
|
+
var _b = _a.orientation, orientation = _b === void 0 ? 'horizontal' : _b, _c = _a.variant, variant = _c === void 0 ? 'default' : _c, color = _a.color, _d = _a.className, className = _d === void 0 ? '' : _d;
|
|
5
|
+
var baseClass = 'divider';
|
|
6
|
+
var orientationClass = "divider--".concat(orientation);
|
|
7
|
+
var variantClass = variant !== 'default' ? "divider--".concat(variant) : '';
|
|
8
|
+
var classes = [baseClass, orientationClass, variantClass, className]
|
|
9
|
+
.filter(Boolean)
|
|
10
|
+
.join(' ');
|
|
11
|
+
var style = color
|
|
12
|
+
? { backgroundColor: color, borderColor: color }
|
|
13
|
+
: {};
|
|
14
|
+
return _jsx("div", { className: classes, style: style, role: "separator", "aria-orientation": orientation });
|
|
15
|
+
};
|
|
16
|
+
export default Divider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type IconName } from './icons/registry';
|
|
3
3
|
interface IconProps {
|
|
4
4
|
name: IconName;
|
|
5
5
|
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -9,3 +9,4 @@ interface IconProps {
|
|
|
9
9
|
}
|
|
10
10
|
declare const Icon: React.FC<IconProps>;
|
|
11
11
|
export default Icon;
|
|
12
|
+
export type { IconName };
|
|
@@ -1,122 +1,8 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
-
import
|
|
14
|
-
import Check from "./icons/Check";
|
|
15
|
-
import Close from "./icons/Close";
|
|
16
|
-
import Search from "./icons/Search";
|
|
17
|
-
import User from "./icons/User";
|
|
18
|
-
import UserIcon from "./icons/UserIcon";
|
|
19
|
-
import CalendarIcon from "./icons/CalendarIcon";
|
|
20
|
-
import ArrivalIcon from "./icons/ArrivalIcon";
|
|
21
|
-
import DepartureIcon from "./icons/DepartureIcon";
|
|
22
|
-
import MapPinIcon from "./icons/MapPinIcon";
|
|
23
|
-
import DeleteIcon from "./icons/DeleteIcon";
|
|
24
|
-
import EyeIcon from "./icons/EyeIcon";
|
|
25
|
-
import InfoIcon from "./icons/InfoIcon";
|
|
26
|
-
import CheckCircleIcon from "./icons/CheckCircleIcon";
|
|
27
|
-
import StrollerIcon from "./icons/StrollerIcon";
|
|
28
|
-
import CarIcon from "./icons/CarIcon";
|
|
29
|
-
import MoreIcon from "./icons/MoreIcon";
|
|
30
|
-
import Settings from "./icons/Settings";
|
|
31
|
-
import MenuIcon from "./icons/MenuIcon";
|
|
32
|
-
import MautourcoLogo from "./icons/MautoucoLogo";
|
|
33
|
-
import YouTubeIcon from "./icons/Youtube";
|
|
34
|
-
import FacebookIcon from "./icons/FacebookIcon";
|
|
35
|
-
import TwitterIcon from "./icons/TwitterIcon";
|
|
36
|
-
import LinkedInIcon from "./icons/LinkedInIcon";
|
|
37
|
-
import CalendarOutlineIcon from "./icons/CalendarOutlineIcon";
|
|
38
|
-
import PlusIcon from "./icons/PlusIcon";
|
|
39
|
-
import MinusIcon from "./icons/MinusIcon";
|
|
40
|
-
import HomeIcon from "./icons/HomeIcon";
|
|
41
|
-
import PlaneIcon from "./icons/PlaneIcon";
|
|
42
|
-
import ShipIcon from "./icons/ShipIcon";
|
|
43
|
-
import BuildingIcon from "./icons/BuildingIcon";
|
|
2
|
+
import { ICONS } from './icons/registry';
|
|
44
3
|
var Icon = function (_a) {
|
|
45
4
|
var name = _a.name, _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color, style = _a.style;
|
|
46
|
-
var
|
|
47
|
-
|
|
48
|
-
case "chevron-down":
|
|
49
|
-
return _jsx(Chevron, __assign({ direction: "down" }, iconProps));
|
|
50
|
-
case "chevron-up":
|
|
51
|
-
return _jsx(Chevron, __assign({ direction: "up" }, iconProps));
|
|
52
|
-
case "chevron-left":
|
|
53
|
-
return _jsx(Chevron, __assign({ direction: "left" }, iconProps));
|
|
54
|
-
case "chevron-right":
|
|
55
|
-
return _jsx(Chevron, __assign({ direction: "right" }, iconProps));
|
|
56
|
-
case "check":
|
|
57
|
-
return _jsx(Check, __assign({}, iconProps));
|
|
58
|
-
case "close":
|
|
59
|
-
return _jsx(Close, __assign({}, iconProps));
|
|
60
|
-
case "search":
|
|
61
|
-
return _jsx(Search, __assign({}, iconProps));
|
|
62
|
-
case "user":
|
|
63
|
-
return _jsx(User, __assign({}, iconProps));
|
|
64
|
-
case "user-icon":
|
|
65
|
-
return _jsx(UserIcon, __assign({}, iconProps));
|
|
66
|
-
case "calendar":
|
|
67
|
-
return _jsx(CalendarIcon, __assign({}, iconProps));
|
|
68
|
-
case 'calendar-outline':
|
|
69
|
-
return _jsx(CalendarOutlineIcon, __assign({}, iconProps));
|
|
70
|
-
case 'arrival':
|
|
71
|
-
return _jsx(ArrivalIcon, __assign({}, iconProps));
|
|
72
|
-
case "departure":
|
|
73
|
-
return _jsx(DepartureIcon, __assign({}, iconProps));
|
|
74
|
-
case "map-pin":
|
|
75
|
-
return _jsx(MapPinIcon, __assign({}, iconProps));
|
|
76
|
-
case "delete":
|
|
77
|
-
return _jsx(DeleteIcon, __assign({}, iconProps));
|
|
78
|
-
case "eye":
|
|
79
|
-
return _jsx(EyeIcon, __assign({}, iconProps));
|
|
80
|
-
case "info":
|
|
81
|
-
return _jsx(InfoIcon, __assign({}, iconProps));
|
|
82
|
-
case "check-circle":
|
|
83
|
-
return _jsx(CheckCircleIcon, __assign({}, iconProps));
|
|
84
|
-
case "stroller":
|
|
85
|
-
return _jsx(StrollerIcon, __assign({}, iconProps));
|
|
86
|
-
case "chevron-down-new":
|
|
87
|
-
return _jsx(Chevron, __assign({ direction: "down", variant: "filled" }, iconProps));
|
|
88
|
-
case "car":
|
|
89
|
-
return _jsx(CarIcon, __assign({}, iconProps));
|
|
90
|
-
case "more":
|
|
91
|
-
return _jsx(MoreIcon, __assign({}, iconProps));
|
|
92
|
-
case "settings":
|
|
93
|
-
return _jsx(Settings, __assign({}, iconProps));
|
|
94
|
-
case "menu":
|
|
95
|
-
return _jsx(MenuIcon, __assign({}, iconProps));
|
|
96
|
-
case "mautourcoLogo":
|
|
97
|
-
return _jsx(MautourcoLogo, __assign({}, iconProps));
|
|
98
|
-
case "youtube":
|
|
99
|
-
return _jsx(YouTubeIcon, __assign({}, iconProps));
|
|
100
|
-
case "facebook":
|
|
101
|
-
return _jsx(FacebookIcon, __assign({}, iconProps));
|
|
102
|
-
case "twitter":
|
|
103
|
-
return _jsx(TwitterIcon, __assign({}, iconProps));
|
|
104
|
-
case "linkedin":
|
|
105
|
-
return _jsx(LinkedInIcon, __assign({}, iconProps));
|
|
106
|
-
case "plus":
|
|
107
|
-
return _jsx(PlusIcon, __assign({}, iconProps));
|
|
108
|
-
case "minus":
|
|
109
|
-
return _jsx(MinusIcon, __assign({}, iconProps));
|
|
110
|
-
case "home":
|
|
111
|
-
return _jsx(HomeIcon, __assign({}, iconProps));
|
|
112
|
-
case "plane":
|
|
113
|
-
return _jsx(PlaneIcon, __assign({}, iconProps));
|
|
114
|
-
case "ship":
|
|
115
|
-
return _jsx(ShipIcon, __assign({}, iconProps));
|
|
116
|
-
case "building":
|
|
117
|
-
return _jsx(BuildingIcon, __assign({}, iconProps));
|
|
118
|
-
default:
|
|
119
|
-
return null;
|
|
120
|
-
}
|
|
5
|
+
var IconComponent = ICONS[name];
|
|
6
|
+
return _jsx(IconComponent, { size: size, className: className, color: color, style: style });
|
|
121
7
|
};
|
|
122
8
|
export default Icon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface ArrowRightOutlineIconProps {
|
|
3
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const ArrowRightOutlineIcon: React.FC<ArrowRightOutlineIconProps>;
|
|
8
|
+
export default ArrowRightOutlineIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
var ArrowRightOutlineIcon = function (_a) {
|
|
14
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color;
|
|
15
|
+
var getSizeClasses = function () {
|
|
16
|
+
switch (size) {
|
|
17
|
+
case "xs":
|
|
18
|
+
return "w-3 h-3";
|
|
19
|
+
case "sm":
|
|
20
|
+
return "w-4 h-4";
|
|
21
|
+
case "md":
|
|
22
|
+
return "w-5 h-5";
|
|
23
|
+
case "lg":
|
|
24
|
+
return "w-6 h-6";
|
|
25
|
+
case "xl":
|
|
26
|
+
return "w-8 h-8";
|
|
27
|
+
default:
|
|
28
|
+
return "w-5 h-5";
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
var sizeClasses = getSizeClasses();
|
|
32
|
+
var colorClass = color ? "text-".concat(color) : "text-current";
|
|
33
|
+
var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
|
|
34
|
+
return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M6 12L10 8L6 4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", fill: "none" }) })));
|
|
35
|
+
};
|
|
36
|
+
export default ArrowRightOutlineIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface Building2OutlineIconProps {
|
|
3
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const Building2OutlineIcon: React.FC<Building2OutlineIconProps>;
|
|
8
|
+
export default Building2OutlineIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
var Building2OutlineIcon = function (_a) {
|
|
14
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color;
|
|
15
|
+
var getSizeClasses = function () {
|
|
16
|
+
switch (size) {
|
|
17
|
+
case "xs":
|
|
18
|
+
return "w-3 h-3";
|
|
19
|
+
case "sm":
|
|
20
|
+
return "w-4 h-4";
|
|
21
|
+
case "md":
|
|
22
|
+
return "w-5 h-5";
|
|
23
|
+
case "lg":
|
|
24
|
+
return "w-6 h-6";
|
|
25
|
+
case "xl":
|
|
26
|
+
return "w-8 h-8";
|
|
27
|
+
default:
|
|
28
|
+
return "w-5 h-5";
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
var sizeClasses = getSizeClasses();
|
|
32
|
+
var colorClass = color ? "text-".concat(color) : "text-current";
|
|
33
|
+
var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
|
|
34
|
+
return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M13.333 6.75C13.333 6.59529 13.2715 6.44729 13.1621 6.33789C13.0527 6.22849 12.9047 6.16699 12.75 6.16699H12.167V13.333H12.75C12.9047 13.333 13.0527 13.2715 13.1621 13.1621C13.2715 13.0527 13.333 12.9047 13.333 12.75V6.75ZM8.75 10.667L8.82715 10.6709C9.2051 10.7095 9.5 11.0288 9.5 11.417C9.49984 11.805 9.20503 12.1245 8.82715 12.1631L8.75 12.167H6.08301C5.66905 12.1668 5.33318 11.8309 5.33301 11.417C5.33301 11.0029 5.66894 10.6672 6.08301 10.667H8.75ZM8.75 8C9.16421 8 9.5 8.33579 9.5 8.75C9.5 9.16421 9.16421 9.5 8.75 9.5H6.08301C5.66894 9.49982 5.33301 9.1641 5.33301 8.75C5.33301 8.33589 5.66894 8.00018 6.08301 8H8.75ZM8.75 5.33301C9.16411 5.33301 9.49982 5.66894 9.5 6.08301C9.5 6.49722 9.16421 6.83301 8.75 6.83301H6.08301C5.66894 6.83283 5.33301 6.49711 5.33301 6.08301C5.33318 5.66905 5.66905 5.33318 6.08301 5.33301H8.75ZM8.75 2.66699L8.82715 2.6709C9.2051 2.70954 9.5 3.02884 9.5 3.41699C9.49984 3.80502 9.20503 4.12449 8.82715 4.16309L8.75 4.16699H6.08301C5.66905 4.16682 5.33318 3.83095 5.33301 3.41699C5.33301 3.00289 5.66894 2.66717 6.08301 2.66699H8.75ZM1.5 12.75C1.5 12.9046 1.5616 13.0527 1.6709 13.1621C1.78022 13.2714 1.92842 13.3329 2.08301 13.333H2.66699V8.16699H2.08301C1.92842 8.16708 1.78022 8.22857 1.6709 8.33789C1.5616 8.44727 1.5 8.59537 1.5 8.75V12.75ZM10.667 2.08301C10.6669 1.92849 10.6053 1.7802 10.4961 1.6709C10.3867 1.5615 10.2377 1.5 10.083 1.5H4.75C4.59537 1.5 4.44727 1.5616 4.33789 1.6709C4.22857 1.78022 4.16708 1.92842 4.16699 2.08301V13.333H10.667V2.08301ZM12.167 4.66699H12.75C13.3025 4.66699 13.832 4.88664 14.2227 5.27734C14.6134 5.66804 14.833 6.19747 14.833 6.75V12.75C14.833 13.3025 14.6134 13.832 14.2227 14.2227C13.8808 14.5645 13.4329 14.7759 12.9561 14.8232L12.75 14.833H2.08301C1.53059 14.8329 1.00098 14.6133 0.610352 14.2227C0.219753 13.832 0 13.3025 0 12.75V8.75C0 8.19754 0.219753 7.66803 0.610352 7.27734C1.00098 6.88672 1.53059 6.66708 2.08301 6.66699H2.66699V2.08301C2.66708 1.53059 2.88672 1.00098 3.27734 0.610352C3.66803 0.219753 4.19754 0 4.75 0H10.083C10.6355 0 11.1659 0.219651 11.5566 0.610352C11.9472 1.00096 12.1669 1.53067 12.167 2.08301V4.66699Z", fill: "currentColor" }) })));
|
|
35
|
+
};
|
|
36
|
+
export default Building2OutlineIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface CalendarRangeOutlineIconProps {
|
|
3
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const CalendarRangeOutlineIcon: React.FC<CalendarRangeOutlineIconProps>;
|
|
8
|
+
export default CalendarRangeOutlineIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
var CalendarRangeOutlineIcon = function (_a) {
|
|
14
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color;
|
|
15
|
+
var getSizeClasses = function () {
|
|
16
|
+
switch (size) {
|
|
17
|
+
case "xs":
|
|
18
|
+
return "w-3 h-3";
|
|
19
|
+
case "sm":
|
|
20
|
+
return "w-4 h-4";
|
|
21
|
+
case "md":
|
|
22
|
+
return "w-5 h-5";
|
|
23
|
+
case "lg":
|
|
24
|
+
return "w-6 h-6";
|
|
25
|
+
case "xl":
|
|
26
|
+
return "w-8 h-8";
|
|
27
|
+
default:
|
|
28
|
+
return "w-5 h-5";
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
var sizeClasses = getSizeClasses();
|
|
32
|
+
var colorClass = color ? "text-".concat(color) : "text-current";
|
|
33
|
+
var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
|
|
34
|
+
return (_jsxs("svg", __assign({ className: classes, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("path", { d: "M5.33333 2.66667V1.33333C5.33333 0.965143 5.03452 0.666667 4.66667 0.666667C4.29881 0.666667 4 0.965143 4 1.33333V2.66667H2.66667C1.93029 2.66667 1.33333 3.26362 1.33333 4V13.3333C1.33333 14.0697 1.93029 14.6667 2.66667 14.6667H6.66667V13.3333H2.66667V6.66667H13.3333V8H14.6667V4C14.6667 3.26362 14.0697 2.66667 13.3333 2.66667H12V1.33333C12 0.965143 11.7012 0.666667 11.3333 0.666667C10.9655 0.666667 10.6667 0.965143 10.6667 1.33333V2.66667H5.33333ZM2.66667 4H13.3333V5.33333H2.66667V4Z", fill: "currentColor" }), _jsx("path", { d: "M13.3333 9.33333H10.6667C10.2988 9.33333 10 9.63181 10 10V13.3333C10 13.7012 10.2988 14 10.6667 14H13.3333C14.0697 14 14.6667 13.403 14.6667 12.6667V10C14.6667 9.26362 14.0697 8.66667 13.3333 8.66667V9.33333ZM13.3333 10H10.6667V12.6667H13.3333V10Z", fill: "currentColor" })] })));
|
|
35
|
+
};
|
|
36
|
+
export default CalendarRangeOutlineIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface PlaneLandingOutlineIconProps {
|
|
3
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const PlaneLandingOutlineIcon: React.FC<PlaneLandingOutlineIconProps>;
|
|
8
|
+
export default PlaneLandingOutlineIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
+
var PlaneLandingOutlineIcon = function (_a) {
|
|
14
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color;
|
|
15
|
+
var getSizeClasses = function () {
|
|
16
|
+
switch (size) {
|
|
17
|
+
case "xs":
|
|
18
|
+
return "w-3 h-3";
|
|
19
|
+
case "sm":
|
|
20
|
+
return "w-4 h-4";
|
|
21
|
+
case "md":
|
|
22
|
+
return "w-5 h-5";
|
|
23
|
+
case "lg":
|
|
24
|
+
return "w-6 h-6";
|
|
25
|
+
case "xl":
|
|
26
|
+
return "w-8 h-8";
|
|
27
|
+
default:
|
|
28
|
+
return "w-5 h-5";
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
var sizeClasses = getSizeClasses();
|
|
32
|
+
var colorClass = color ? "text-".concat(color) : "text-current";
|
|
33
|
+
var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
|
|
34
|
+
return (_jsxs("svg", __assign({ className: classes, viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("path", { d: "M8.61007 1.06519C8.82638 1.38314 8.95134 1.75475 8.96947 2.13882L9.14203 5.47812L9.14201 5.48575C9.14672 5.59416 9.18175 5.69947 9.24283 5.78916C9.304 5.87888 9.38948 5.94967 9.48875 5.9937L9.49075 5.99458L12.3251 7.26408L12.5207 7.36061C12.9032 7.57143 13.2198 7.88435 13.4347 8.26452L13.5331 8.45952L13.536 8.46603L13.806 9.08335C13.9065 9.30978 13.9555 9.55499 13.95 9.80272C13.9445 10.0525 13.8831 10.2979 13.7709 10.5212C13.6586 10.7446 13.4976 10.9412 13.3002 11.0947C13.1053 11.2463 12.8789 11.3511 12.6382 11.4056L12.6386 11.4078L12.0865 11.5361C11.5994 11.6497 11.0832 11.6091 10.6103 11.4059L10.6023 11.4024L1.86819 7.52809C1.52068 7.37369 1.2229 7.12682 1.00632 6.81696C0.966407 6.77487 0.930302 6.72861 0.900683 6.67746L0.101009 5.29663C-0.0188731 5.08961 -0.0328711 4.83735 0.0634408 4.61836L1.26346 1.8899C1.43023 1.51074 1.87359 1.33858 2.25275 1.50534L3.00233 1.83502C3.30003 1.96515 3.56287 2.16332 3.77042 2.4133C3.92649 2.60133 4.04836 2.81483 4.13005 3.04381L4.19787 3.27688L4.20728 3.32491L4.22285 3.4186C4.24411 3.50285 4.28327 3.58155 4.33881 3.64851C4.39705 3.71867 4.47112 3.77428 4.55469 3.81073L4.56406 3.81437L4.63664 3.84677L6.13193 0.448068C6.21194 0.266153 6.36093 0.123193 6.54607 0.0510077C6.73144 -0.0211157 6.93913 -0.0165783 7.12121 0.0635036L7.73886 0.335157C8.09128 0.492887 8.39285 0.74598 8.61007 1.06519ZM7.37007 1.90915C7.32506 1.84298 7.26732 1.78679 7.20022 1.74427L5.70468 5.14573C5.62404 5.32902 5.47329 5.47215 5.28628 5.54378C5.09923 5.61541 4.89125 5.60949 4.70877 5.5269L3.95484 5.18434L3.95472 5.18571C3.65635 5.05554 3.39253 4.85703 3.18462 4.60655C2.97671 4.35602 2.83013 4.06025 2.75717 3.74297C2.75354 3.72715 2.75037 3.71095 2.74776 3.69494L2.73208 3.595C2.71044 3.51301 2.67049 3.4367 2.61623 3.37134C2.55816 3.30145 2.48497 3.24565 2.40173 3.20925L2.39836 3.20824L2.33514 3.17948L1.58964 4.87453L2.12811 5.80459C2.15796 5.8393 2.18519 5.87655 2.20854 5.91678C2.27017 6.02298 2.36398 6.10671 2.47615 6.15662L11.203 10.0268C11.3766 10.1014 11.5651 10.1173 11.7457 10.0751L12.3064 9.94482C12.333 9.93895 12.3581 9.9274 12.3796 9.9107C12.401 9.89403 12.4183 9.87241 12.4305 9.84816C12.4427 9.82382 12.4497 9.79678 12.4503 9.76955C12.4509 9.74235 12.4452 9.71518 12.434 9.69037L12.4312 9.68386L12.1635 9.07091C12.0761 8.87771 11.9196 8.72384 11.7251 8.63906L11.7185 8.63567L8.87816 7.36353C8.52419 7.20605 8.22091 6.95337 8.00283 6.63312C7.78429 6.3122 7.65951 5.93628 7.64308 5.54836L7.47126 2.21606L7.47101 2.21118C7.46617 2.10317 7.43088 1.99855 7.37007 1.90915Z", fill: "currentColor" }), _jsx("path", { d: "M14.1219 13.0525C14.5361 13.0525 14.8719 13.3884 14.8719 13.8025C14.8719 14.2167 14.5361 14.5525 14.1219 14.5525H0.788907C0.374693 14.5525 0.0389068 14.2167 0.0389068 13.8025C0.0389516 13.3884 0.374721 13.0525 0.788907 13.0525H14.1219Z", fill: "currentColor" })] })));
|
|
35
|
+
};
|
|
36
|
+
export default PlaneLandingOutlineIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface PlaneTakeoffOutlineIconProps {
|
|
3
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const PlaneTakeoffOutlineIcon: React.FC<PlaneTakeoffOutlineIconProps>;
|
|
8
|
+
export default PlaneTakeoffOutlineIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
var PlaneTakeoffOutlineIcon = function (_a) {
|
|
14
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, _c = _a.className, className = _c === void 0 ? "" : _c, color = _a.color;
|
|
15
|
+
var getSizeClasses = function () {
|
|
16
|
+
switch (size) {
|
|
17
|
+
case "xs":
|
|
18
|
+
return "w-3 h-3";
|
|
19
|
+
case "sm":
|
|
20
|
+
return "w-4 h-4";
|
|
21
|
+
case "md":
|
|
22
|
+
return "w-5 h-5";
|
|
23
|
+
case "lg":
|
|
24
|
+
return "w-6 h-6";
|
|
25
|
+
case "xl":
|
|
26
|
+
return "w-8 h-8";
|
|
27
|
+
default:
|
|
28
|
+
return "w-5 h-5";
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
var sizeClasses = getSizeClasses();
|
|
32
|
+
var colorClass = color ? "text-".concat(color) : "text-current";
|
|
33
|
+
var classes = "".concat(sizeClasses, " ").concat(colorClass, " ").concat(className);
|
|
34
|
+
return (_jsx("svg", __assign({ className: classes, viewBox: "0 0 15 13", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: _jsx("path", { d: "M14.0831 11.1032C14.4973 11.1032 14.8331 11.4391 14.8331 11.8532C14.8331 12.2674 14.4974 12.6032 14.0831 12.6032H0.750135C0.335921 12.6032 0.000134691 12.2674 0.000134691 11.8532C0.000179528 11.4391 0.335949 11.1032 0.750135 11.1032H14.0831ZM4.13685 0.00948145C4.51966 0.0461139 4.88541 0.187311 5.19252 0.418661L7.8722 2.41866L7.87806 2.42354C7.96448 2.48916 8.06789 2.52947 8.17592 2.53975C8.28402 2.54998 8.39309 2.52943 8.49037 2.48116L8.49232 2.48018L11.2794 1.11007L11.4787 1.0212C11.8851 0.861562 12.3282 0.817771 12.7579 0.895224L12.9708 0.944052L12.9777 0.946005L13.6251 1.13253C13.8636 1.1998 14.0835 1.31875 14.2706 1.48116C14.4593 1.64495 14.609 1.84893 14.7091 2.07784C14.8093 2.30699 14.8577 2.55638 14.8497 2.80636C14.8419 3.05314 14.778 3.29431 14.6662 3.51436L14.6681 3.51534L14.4142 4.02218C14.1905 4.46947 13.8296 4.84085 13.3712 5.07491L13.3634 5.07882L4.80385 9.32491C4.4631 9.49369 4.08295 9.56515 3.70619 9.5339C3.64831 9.53772 3.58966 9.53596 3.53138 9.52608L1.95814 9.25948C1.72228 9.2195 1.51923 9.06915 1.41224 8.85518L0.0792363 6.18917C-0.106006 5.81869 0.04469 5.36758 0.415174 5.18233L1.1476 4.81612C1.43787 4.67017 1.75823 4.59449 2.08314 4.59444C2.3275 4.59444 2.56962 4.63704 2.79799 4.72042L3.02064 4.8171L3.06361 4.84054L3.14564 4.88839C3.22405 4.92584 3.30962 4.94598 3.39662 4.946C3.48779 4.946 3.57789 4.92453 3.65931 4.8835L3.6681 4.87862L3.73939 4.84347L2.07924 1.52218C1.99036 1.34442 1.97552 1.13848 2.03822 0.949911C2.10112 0.761206 2.23726 0.604297 2.41517 0.515341L3.01869 0.213583C3.36515 0.0431474 3.7525 -0.0272494 4.13685 0.00948145ZM3.99428 1.50265C3.91461 1.49502 3.8345 1.50356 3.75892 1.52804L5.42103 4.85128C5.51057 5.0304 5.52442 5.23781 5.4601 5.42745C5.39574 5.61713 5.25836 5.77338 5.07826 5.86104L4.33314 6.22237L4.33412 6.22335C4.04339 6.3698 3.72215 6.446 3.39662 6.446C3.07106 6.44598 2.74986 6.36985 2.45912 6.22335C2.44463 6.21605 2.43014 6.20814 2.41615 6.19991L2.32924 6.14815C2.25233 6.11244 2.16809 6.09444 2.08314 6.09444C1.99228 6.09449 1.9026 6.11517 1.82142 6.15597L1.81849 6.15792L1.75599 6.18819L2.58412 7.84444L3.64369 8.02413C3.68946 8.02333 3.73551 8.02617 3.78138 8.0339C3.90246 8.0543 4.0268 8.03559 4.13685 7.98116L12.6886 3.738C12.8568 3.6521 12.9894 3.5172 13.0724 3.35128L13.3302 2.83663C13.3427 2.81244 13.3498 2.7857 13.3507 2.7585C13.3516 2.73136 13.3459 2.70431 13.3351 2.6794C13.3242 2.65445 13.3078 2.63183 13.2872 2.61397C13.2667 2.59616 13.2422 2.58317 13.216 2.57589L13.2091 2.57393L12.5665 2.38839C12.362 2.33231 12.1437 2.35441 11.9542 2.44991L11.9474 2.45284L9.15443 3.82589C8.80717 3.99767 8.41905 4.06965 8.03334 4.03292C7.64682 3.99611 7.27787 3.85202 6.96888 3.6169L4.29506 1.62081L4.29115 1.61788C4.20494 1.55262 4.1019 1.51295 3.99428 1.50265Z", fill: "currentColor" }) })));
|
|
35
|
+
};
|
|
36
|
+
export default PlaneTakeoffOutlineIcon;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export type IconBaseProps = {
|
|
3
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export type IconComponent = React.ComponentType<IconBaseProps>;
|
|
9
|
+
/**
|
|
10
|
+
* Single source of truth for supported icons.
|
|
11
|
+
* Add a new entry here and both `IconName` and Storybook will update automatically.
|
|
12
|
+
*/
|
|
13
|
+
export declare const ICONS: {
|
|
14
|
+
readonly 'chevron-down': React.FunctionComponent<IconBaseProps>;
|
|
15
|
+
readonly 'chevron-up': React.FunctionComponent<IconBaseProps>;
|
|
16
|
+
readonly 'chevron-left': React.FunctionComponent<IconBaseProps>;
|
|
17
|
+
readonly 'chevron-right': React.FunctionComponent<IconBaseProps>;
|
|
18
|
+
readonly 'chevron-down-new': React.FunctionComponent<IconBaseProps>;
|
|
19
|
+
readonly check: IconComponent;
|
|
20
|
+
readonly close: IconComponent;
|
|
21
|
+
readonly search: IconComponent;
|
|
22
|
+
readonly user: IconComponent;
|
|
23
|
+
readonly 'user-icon': IconComponent;
|
|
24
|
+
readonly calendar: IconComponent;
|
|
25
|
+
readonly 'calendar-outline': IconComponent;
|
|
26
|
+
readonly 'calendar-range-outline': IconComponent;
|
|
27
|
+
readonly 'arrow-right-outline': IconComponent;
|
|
28
|
+
readonly 'plane-takeoff-outline': IconComponent;
|
|
29
|
+
readonly 'plane-landing-outline': IconComponent;
|
|
30
|
+
readonly 'building-2-outline': IconComponent;
|
|
31
|
+
readonly arrival: IconComponent;
|
|
32
|
+
readonly departure: IconComponent;
|
|
33
|
+
readonly 'map-pin': IconComponent;
|
|
34
|
+
readonly delete: IconComponent;
|
|
35
|
+
readonly eye: IconComponent;
|
|
36
|
+
readonly info: IconComponent;
|
|
37
|
+
readonly 'check-circle': IconComponent;
|
|
38
|
+
readonly stroller: IconComponent;
|
|
39
|
+
readonly car: IconComponent;
|
|
40
|
+
readonly more: IconComponent;
|
|
41
|
+
readonly settings: IconComponent;
|
|
42
|
+
readonly menu: IconComponent;
|
|
43
|
+
readonly mautourcoLogo: IconComponent;
|
|
44
|
+
readonly youtube: IconComponent;
|
|
45
|
+
readonly facebook: IconComponent;
|
|
46
|
+
readonly twitter: IconComponent;
|
|
47
|
+
readonly linkedin: IconComponent;
|
|
48
|
+
readonly plus: IconComponent;
|
|
49
|
+
readonly minus: IconComponent;
|
|
50
|
+
readonly home: IconComponent;
|
|
51
|
+
readonly plane: IconComponent;
|
|
52
|
+
readonly ship: IconComponent;
|
|
53
|
+
readonly building: IconComponent;
|
|
54
|
+
};
|
|
55
|
+
export type IconName = keyof typeof ICONS;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
import Chevron from './Chevron';
|
|
14
|
+
import Check from './Check';
|
|
15
|
+
import Close from './Close';
|
|
16
|
+
import Search from './Search';
|
|
17
|
+
import User from './User';
|
|
18
|
+
import UserIcon from './UserIcon';
|
|
19
|
+
import CalendarIcon from './CalendarIcon';
|
|
20
|
+
import ArrivalIcon from './ArrivalIcon';
|
|
21
|
+
import DepartureIcon from './DepartureIcon';
|
|
22
|
+
import MapPinIcon from './MapPinIcon';
|
|
23
|
+
import DeleteIcon from './DeleteIcon';
|
|
24
|
+
import EyeIcon from './EyeIcon';
|
|
25
|
+
import InfoIcon from './InfoIcon';
|
|
26
|
+
import CheckCircleIcon from './CheckCircleIcon';
|
|
27
|
+
import StrollerIcon from './StrollerIcon';
|
|
28
|
+
import CarIcon from './CarIcon';
|
|
29
|
+
import MoreIcon from './MoreIcon';
|
|
30
|
+
import Settings from './Settings';
|
|
31
|
+
import MenuIcon from './MenuIcon';
|
|
32
|
+
import MautourcoLogo from './MautoucoLogo';
|
|
33
|
+
import YouTubeIcon from './Youtube';
|
|
34
|
+
import FacebookIcon from './FacebookIcon';
|
|
35
|
+
import TwitterIcon from './TwitterIcon';
|
|
36
|
+
import LinkedInIcon from './LinkedInIcon';
|
|
37
|
+
import CalendarOutlineIcon from './CalendarOutlineIcon';
|
|
38
|
+
import CalendarRangeOutlineIcon from './CalendarRangeOutlineIcon';
|
|
39
|
+
import ArrowRightOutlineIcon from './ArrowRightOutlineIcon';
|
|
40
|
+
import PlaneTakeoffOutlineIcon from './PlaneTakeoffOutlineIcon';
|
|
41
|
+
import PlaneLandingOutlineIcon from './PlaneLandingOutlineIcon';
|
|
42
|
+
import Building2OutlineIcon from './Building2OutlineIcon';
|
|
43
|
+
import PlusIcon from './PlusIcon';
|
|
44
|
+
import MinusIcon from './MinusIcon';
|
|
45
|
+
import HomeIcon from './HomeIcon';
|
|
46
|
+
import PlaneIcon from './PlaneIcon';
|
|
47
|
+
import ShipIcon from './ShipIcon';
|
|
48
|
+
import BuildingIcon from './BuildingIcon';
|
|
49
|
+
var ChevronDown = function (props) { return _jsx(Chevron, __assign({ direction: "down" }, props)); };
|
|
50
|
+
var ChevronUp = function (props) { return _jsx(Chevron, __assign({ direction: "up" }, props)); };
|
|
51
|
+
var ChevronLeft = function (props) { return _jsx(Chevron, __assign({ direction: "left" }, props)); };
|
|
52
|
+
var ChevronRight = function (props) { return _jsx(Chevron, __assign({ direction: "right" }, props)); };
|
|
53
|
+
var ChevronDownFilled = function (props) { return (_jsx(Chevron, __assign({ direction: "down", variant: "filled" }, props))); };
|
|
54
|
+
/**
|
|
55
|
+
* Single source of truth for supported icons.
|
|
56
|
+
* Add a new entry here and both `IconName` and Storybook will update automatically.
|
|
57
|
+
*/
|
|
58
|
+
export var ICONS = {
|
|
59
|
+
'chevron-down': ChevronDown,
|
|
60
|
+
'chevron-up': ChevronUp,
|
|
61
|
+
'chevron-left': ChevronLeft,
|
|
62
|
+
'chevron-right': ChevronRight,
|
|
63
|
+
'chevron-down-new': ChevronDownFilled,
|
|
64
|
+
check: Check,
|
|
65
|
+
close: Close,
|
|
66
|
+
search: Search,
|
|
67
|
+
user: User,
|
|
68
|
+
'user-icon': UserIcon,
|
|
69
|
+
calendar: CalendarIcon,
|
|
70
|
+
'calendar-outline': CalendarOutlineIcon,
|
|
71
|
+
'calendar-range-outline': CalendarRangeOutlineIcon,
|
|
72
|
+
'arrow-right-outline': ArrowRightOutlineIcon,
|
|
73
|
+
'plane-takeoff-outline': PlaneTakeoffOutlineIcon,
|
|
74
|
+
'plane-landing-outline': PlaneLandingOutlineIcon,
|
|
75
|
+
'building-2-outline': Building2OutlineIcon,
|
|
76
|
+
arrival: ArrivalIcon,
|
|
77
|
+
departure: DepartureIcon,
|
|
78
|
+
'map-pin': MapPinIcon,
|
|
79
|
+
delete: DeleteIcon,
|
|
80
|
+
eye: EyeIcon,
|
|
81
|
+
info: InfoIcon,
|
|
82
|
+
'check-circle': CheckCircleIcon,
|
|
83
|
+
stroller: StrollerIcon,
|
|
84
|
+
car: CarIcon,
|
|
85
|
+
more: MoreIcon,
|
|
86
|
+
settings: Settings,
|
|
87
|
+
menu: MenuIcon,
|
|
88
|
+
mautourcoLogo: MautourcoLogo,
|
|
89
|
+
youtube: YouTubeIcon,
|
|
90
|
+
facebook: FacebookIcon,
|
|
91
|
+
twitter: TwitterIcon,
|
|
92
|
+
linkedin: LinkedInIcon,
|
|
93
|
+
plus: PlusIcon,
|
|
94
|
+
minus: MinusIcon,
|
|
95
|
+
home: HomeIcon,
|
|
96
|
+
plane: PlaneIcon,
|
|
97
|
+
ship: ShipIcon,
|
|
98
|
+
building: BuildingIcon,
|
|
99
|
+
};
|