@dust-tt/sparkle 0.2.502 → 0.2.503-rc-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/cjs/index.js +1 -1
- package/dist/esm/components/Button.d.ts.map +1 -1
- package/dist/esm/components/Popover.d.ts +9 -2
- package/dist/esm/components/Popover.d.ts.map +1 -1
- package/dist/esm/components/Popover.js +53 -2
- package/dist/esm/components/Popover.js.map +1 -1
- package/dist/esm/components/RadioGroup.js +3 -3
- package/dist/esm/components/index.d.ts +1 -2
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/index.js +1 -2
- package/dist/esm/components/index.js.map +1 -1
- package/dist/esm/stories/AnchoredPopover.stories.d.ts +14 -0
- package/dist/esm/stories/AnchoredPopover.stories.d.ts.map +1 -0
- package/dist/esm/stories/AnchoredPopover.stories.js +69 -0
- package/dist/esm/stories/AnchoredPopover.stories.js.map +1 -0
- package/dist/esm/stories/Breadcrumbs.stories.d.ts.map +1 -1
- package/dist/esm/stories/Breadcrumbs.stories.js +1 -3
- package/dist/esm/stories/Breadcrumbs.stories.js.map +1 -1
- package/dist/sparkle.css +8 -127
- package/package.json +1 -1
- package/src/components/Button.tsx +1 -1
- package/src/components/Popover.tsx +93 -5
- package/src/components/RadioGroup.tsx +3 -3
- package/src/components/index.ts +2 -7
- package/src/stories/AnchoredPopover.stories.tsx +115 -0
- package/src/stories/Breadcrumbs.stories.tsx +1 -3
- package/dist/esm/components/TourGuide.d.ts +0 -39
- package/dist/esm/components/TourGuide.d.ts.map +0 -1
- package/dist/esm/components/TourGuide.js +0 -145
- package/dist/esm/components/TourGuide.js.map +0 -1
- package/dist/esm/stories/TourGuide.stories.d.ts +0 -4
- package/dist/esm/stories/TourGuide.stories.d.ts.map +0 -1
- package/dist/esm/stories/TourGuide.stories.js +0 -133
- package/dist/esm/stories/TourGuide.stories.js.map +0 -1
- package/src/components/TourGuide.tsx +0 -316
- package/src/stories/TourGuide.stories.tsx +0 -472
|
@@ -1,472 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryFn } from "@storybook/react";
|
|
2
|
-
import React, { useRef, useState } from "react";
|
|
3
|
-
|
|
4
|
-
import {
|
|
5
|
-
Avatar,
|
|
6
|
-
ConfettiBackground,
|
|
7
|
-
Tooltip,
|
|
8
|
-
TypingAnimation,
|
|
9
|
-
} from "@sparkle/components";
|
|
10
|
-
import { Button } from "@sparkle/components/Button";
|
|
11
|
-
import {
|
|
12
|
-
ActionBrainIcon,
|
|
13
|
-
ActionGlobeIcon,
|
|
14
|
-
ActionImageIcon,
|
|
15
|
-
ActionMagnifyingGlassIcon,
|
|
16
|
-
ActionScanIcon,
|
|
17
|
-
ActionTableIcon,
|
|
18
|
-
PlayIcon,
|
|
19
|
-
} from "@sparkle/icons";
|
|
20
|
-
import {
|
|
21
|
-
BigQueryLogo,
|
|
22
|
-
ConfluenceLogo,
|
|
23
|
-
DriveLogo,
|
|
24
|
-
GithubLogo,
|
|
25
|
-
GongLogo,
|
|
26
|
-
IntercomLogo,
|
|
27
|
-
MicrosoftLogo,
|
|
28
|
-
NotionLogo,
|
|
29
|
-
SalesforceLogo,
|
|
30
|
-
SlackLogo,
|
|
31
|
-
SnowflakeLogo,
|
|
32
|
-
ZendeskLogo,
|
|
33
|
-
} from "@sparkle/logo";
|
|
34
|
-
|
|
35
|
-
import {
|
|
36
|
-
TourGuide,
|
|
37
|
-
TourGuideCard,
|
|
38
|
-
TourGuideCardContent,
|
|
39
|
-
TourGuideCardTitle,
|
|
40
|
-
TourGuideCardVisual,
|
|
41
|
-
} from "../components/TourGuide";
|
|
42
|
-
|
|
43
|
-
export default {
|
|
44
|
-
title: "Modules/TourGuide",
|
|
45
|
-
component: TourGuide,
|
|
46
|
-
parameters: {
|
|
47
|
-
layout: "fullscreen",
|
|
48
|
-
},
|
|
49
|
-
} as Meta;
|
|
50
|
-
|
|
51
|
-
const Template: StoryFn = () => {
|
|
52
|
-
const topRightRef = useRef<HTMLDivElement>(null);
|
|
53
|
-
const centerRef = useRef<HTMLDivElement>(null);
|
|
54
|
-
const bottomLeftRef = useRef<HTMLDivElement>(null);
|
|
55
|
-
const [key, setKey] = useState(0);
|
|
56
|
-
|
|
57
|
-
const handleRestart = () => {
|
|
58
|
-
setKey((k) => k + 1);
|
|
59
|
-
};
|
|
60
|
-
const referentRef = useRef<HTMLDivElement>(null);
|
|
61
|
-
const filteredAgents = [
|
|
62
|
-
{
|
|
63
|
-
name: "Translator",
|
|
64
|
-
emoji: "💬",
|
|
65
|
-
backgroundColor: "s-bg-green-200",
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
name: "TrailblazerGuard",
|
|
69
|
-
emoji: "👮",
|
|
70
|
-
backgroundColor: "s-bg-blue-100",
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
name: "Transport",
|
|
74
|
-
emoji: "🚌",
|
|
75
|
-
backgroundColor: "s-bg-blue-200",
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
name: "TrendTracker",
|
|
79
|
-
emoji: "😻",
|
|
80
|
-
backgroundColor: "s-bg-rose-50",
|
|
81
|
-
},
|
|
82
|
-
] as const;
|
|
83
|
-
return (
|
|
84
|
-
<div className="s-relative s-min-h-screen s-w-full">
|
|
85
|
-
<div className="s-absolute s-left-3 s-top-3">
|
|
86
|
-
<Button label="Restart Tour" onClick={handleRestart} />
|
|
87
|
-
</div>
|
|
88
|
-
<div
|
|
89
|
-
ref={topRightRef}
|
|
90
|
-
className="s-absolute s-right-6 s-top-6 s-cursor-pointer s-rounded-lg s-border s-border-blue-100 s-bg-blue-50 s-p-4 s-transition-colors hover:s-bg-blue-100"
|
|
91
|
-
>
|
|
92
|
-
Top Right Element
|
|
93
|
-
</div>
|
|
94
|
-
<div
|
|
95
|
-
ref={centerRef}
|
|
96
|
-
className="s-absolute s-left-1/2 s-top-1/2 s--translate-x-1/2 s--translate-y-1/2 s-cursor-pointer s-rounded-lg s-border s-border-green-100 s-bg-green-50 s-p-4 s-transition-colors hover:s-bg-green-100"
|
|
97
|
-
>
|
|
98
|
-
Centered Element
|
|
99
|
-
</div>
|
|
100
|
-
<div
|
|
101
|
-
ref={bottomLeftRef}
|
|
102
|
-
className="s-absolute s-bottom-6 s-left-6 s-cursor-pointer s-rounded-lg s-border s-border-red-100 s-bg-red-50 s-p-4 s-transition-colors hover:s-bg-red-100"
|
|
103
|
-
>
|
|
104
|
-
Bottom Left Element
|
|
105
|
-
</div>
|
|
106
|
-
<TourGuide key={key} autoStart>
|
|
107
|
-
<TourGuideCard>
|
|
108
|
-
<TourGuideCardVisual
|
|
109
|
-
ref={referentRef}
|
|
110
|
-
className="s-flex s-items-center s-justify-center s-bg-brand-support-blue s-px-6 s-text-center"
|
|
111
|
-
>
|
|
112
|
-
<ConfettiBackground variant="confetti" referentSize={referentRef} />
|
|
113
|
-
<span className="s-heading-3xl">
|
|
114
|
-
<TypingAnimation text="Rise and shine, Edouard! 🌅" />
|
|
115
|
-
</span>
|
|
116
|
-
</TourGuideCardVisual>
|
|
117
|
-
<TourGuideCardTitle>
|
|
118
|
-
Welcome to the{" "}
|
|
119
|
-
<span className="s-font-semibold s-text-brand-hunter-green">
|
|
120
|
-
Qonto
|
|
121
|
-
</span>{" "}
|
|
122
|
-
workspace.
|
|
123
|
-
</TourGuideCardTitle>
|
|
124
|
-
<TourGuideCardContent>
|
|
125
|
-
{" "}
|
|
126
|
-
Discover the basics of Dust in 3 steps.
|
|
127
|
-
</TourGuideCardContent>
|
|
128
|
-
</TourGuideCard>
|
|
129
|
-
<TourGuideCard anchorRef={centerRef}>
|
|
130
|
-
<TourGuideCardVisual className="s-relative s-flex s-overflow-hidden s-bg-brand-support-green s-p-4 s-text-center">
|
|
131
|
-
<div className="s-flex s-gap-1">
|
|
132
|
-
<div className="s-flex s-gap-1">
|
|
133
|
-
<div className="s-heading-2xl s-text-highlight">@tra</div>
|
|
134
|
-
<div className="s-h-[32px] s-w-[3px] s-animate-cursor-blink s-bg-foreground" />
|
|
135
|
-
</div>
|
|
136
|
-
<div className="s-flex s-h-[240px] s-flex-col s-gap-3 s-rounded-xl s-border s-border-border s-bg-background s-p-3 s-pr-5 s-shadow-xl">
|
|
137
|
-
{filteredAgents.map((agent) => {
|
|
138
|
-
return (
|
|
139
|
-
<div
|
|
140
|
-
key={agent.name}
|
|
141
|
-
className="s-heading-base s-flex s-items-center s-gap-2 s-text-foreground"
|
|
142
|
-
>
|
|
143
|
-
<Avatar
|
|
144
|
-
size="sm"
|
|
145
|
-
emoji={agent.emoji}
|
|
146
|
-
backgroundColor={agent.backgroundColor}
|
|
147
|
-
/>
|
|
148
|
-
{agent.name}
|
|
149
|
-
</div>
|
|
150
|
-
);
|
|
151
|
-
})}
|
|
152
|
-
</div>
|
|
153
|
-
</div>
|
|
154
|
-
</TourGuideCardVisual>
|
|
155
|
-
<TourGuideCardTitle>
|
|
156
|
-
Use{" "}
|
|
157
|
-
<span className="s-font-semibold s-text-highlight">@mentions</span>{" "}
|
|
158
|
-
to call Agents and start a conversation.
|
|
159
|
-
</TourGuideCardTitle>
|
|
160
|
-
<TourGuideCardContent className="s-py-2">
|
|
161
|
-
<Button
|
|
162
|
-
label="Watch the full video"
|
|
163
|
-
icon={PlayIcon}
|
|
164
|
-
variant={"outline"}
|
|
165
|
-
/>
|
|
166
|
-
</TourGuideCardContent>
|
|
167
|
-
</TourGuideCard>
|
|
168
|
-
<TourGuideCard anchorRef={topRightRef}>
|
|
169
|
-
<TourGuideCardVisual className="s-flex s-flex-col s-items-center s-justify-center s-gap-4 s-bg-brand-support-rose s-px-6 s-text-center">
|
|
170
|
-
<div className="s-grid s-grid-cols-6 s-gap-2">
|
|
171
|
-
<Tooltip
|
|
172
|
-
label="Google Drive Connection"
|
|
173
|
-
trigger={
|
|
174
|
-
<Avatar
|
|
175
|
-
size="md"
|
|
176
|
-
icon={DriveLogo}
|
|
177
|
-
backgroundColor="s-bg-white"
|
|
178
|
-
/>
|
|
179
|
-
}
|
|
180
|
-
/>
|
|
181
|
-
<Tooltip
|
|
182
|
-
label="Notion Connection"
|
|
183
|
-
trigger={
|
|
184
|
-
<Avatar
|
|
185
|
-
size="md"
|
|
186
|
-
icon={NotionLogo}
|
|
187
|
-
backgroundColor="s-bg-white"
|
|
188
|
-
/>
|
|
189
|
-
}
|
|
190
|
-
/>
|
|
191
|
-
<Tooltip
|
|
192
|
-
label="Slack Connection"
|
|
193
|
-
trigger={
|
|
194
|
-
<Avatar
|
|
195
|
-
size="md"
|
|
196
|
-
icon={SlackLogo}
|
|
197
|
-
backgroundColor="s-bg-white"
|
|
198
|
-
/>
|
|
199
|
-
}
|
|
200
|
-
/>
|
|
201
|
-
<Tooltip
|
|
202
|
-
label="Snowflake Connection"
|
|
203
|
-
trigger={
|
|
204
|
-
<Avatar
|
|
205
|
-
size="md"
|
|
206
|
-
icon={SnowflakeLogo}
|
|
207
|
-
backgroundColor="s-bg-white"
|
|
208
|
-
/>
|
|
209
|
-
}
|
|
210
|
-
/>
|
|
211
|
-
<Tooltip
|
|
212
|
-
label="BigQuery Connection"
|
|
213
|
-
trigger={
|
|
214
|
-
<Avatar
|
|
215
|
-
size="md"
|
|
216
|
-
icon={BigQueryLogo}
|
|
217
|
-
backgroundColor="s-bg-white"
|
|
218
|
-
/>
|
|
219
|
-
}
|
|
220
|
-
/>
|
|
221
|
-
<Tooltip
|
|
222
|
-
label="Confluence Connection"
|
|
223
|
-
trigger={
|
|
224
|
-
<Avatar
|
|
225
|
-
size="md"
|
|
226
|
-
icon={ConfluenceLogo}
|
|
227
|
-
backgroundColor="s-bg-white"
|
|
228
|
-
/>
|
|
229
|
-
}
|
|
230
|
-
/>
|
|
231
|
-
<Tooltip
|
|
232
|
-
label="Intercom Connection"
|
|
233
|
-
trigger={
|
|
234
|
-
<Avatar
|
|
235
|
-
size="md"
|
|
236
|
-
icon={IntercomLogo}
|
|
237
|
-
backgroundColor="s-bg-white"
|
|
238
|
-
/>
|
|
239
|
-
}
|
|
240
|
-
/>
|
|
241
|
-
<Tooltip
|
|
242
|
-
label="Microsoft Connection"
|
|
243
|
-
trigger={
|
|
244
|
-
<Avatar
|
|
245
|
-
size="md"
|
|
246
|
-
icon={MicrosoftLogo}
|
|
247
|
-
backgroundColor="s-bg-white"
|
|
248
|
-
/>
|
|
249
|
-
}
|
|
250
|
-
/>
|
|
251
|
-
<Tooltip
|
|
252
|
-
label="Salesforce Connection"
|
|
253
|
-
trigger={
|
|
254
|
-
<Avatar
|
|
255
|
-
size="md"
|
|
256
|
-
icon={SalesforceLogo}
|
|
257
|
-
backgroundColor="s-bg-white"
|
|
258
|
-
/>
|
|
259
|
-
}
|
|
260
|
-
/>
|
|
261
|
-
<Tooltip
|
|
262
|
-
label="Zendesk Connection"
|
|
263
|
-
trigger={
|
|
264
|
-
<Avatar
|
|
265
|
-
size="md"
|
|
266
|
-
icon={ZendeskLogo}
|
|
267
|
-
backgroundColor="s-bg-white"
|
|
268
|
-
/>
|
|
269
|
-
}
|
|
270
|
-
/>
|
|
271
|
-
<Tooltip
|
|
272
|
-
label="GitHub Connection"
|
|
273
|
-
trigger={
|
|
274
|
-
<Avatar
|
|
275
|
-
size="md"
|
|
276
|
-
icon={GithubLogo}
|
|
277
|
-
backgroundColor="s-bg-white"
|
|
278
|
-
/>
|
|
279
|
-
}
|
|
280
|
-
/>
|
|
281
|
-
<Tooltip
|
|
282
|
-
label="Gong Connection"
|
|
283
|
-
trigger={
|
|
284
|
-
<Avatar
|
|
285
|
-
size="md"
|
|
286
|
-
icon={GongLogo}
|
|
287
|
-
backgroundColor="s-bg-white"
|
|
288
|
-
/>
|
|
289
|
-
}
|
|
290
|
-
/>
|
|
291
|
-
<Tooltip
|
|
292
|
-
label="Search data"
|
|
293
|
-
trigger={
|
|
294
|
-
<Avatar
|
|
295
|
-
size="md"
|
|
296
|
-
icon={ActionMagnifyingGlassIcon}
|
|
297
|
-
backgroundColor="s-bg-gray-700"
|
|
298
|
-
iconColor="s-text-gray-50"
|
|
299
|
-
/>
|
|
300
|
-
}
|
|
301
|
-
/>
|
|
302
|
-
<Tooltip
|
|
303
|
-
label="Quantitative analysis"
|
|
304
|
-
trigger={
|
|
305
|
-
<Avatar
|
|
306
|
-
size="md"
|
|
307
|
-
icon={ActionTableIcon}
|
|
308
|
-
backgroundColor="s-bg-gray-700"
|
|
309
|
-
iconColor="s-text-gray-50"
|
|
310
|
-
/>
|
|
311
|
-
}
|
|
312
|
-
/>
|
|
313
|
-
<Tooltip
|
|
314
|
-
label="Data extraction"
|
|
315
|
-
trigger={
|
|
316
|
-
<Avatar
|
|
317
|
-
size="md"
|
|
318
|
-
icon={ActionScanIcon}
|
|
319
|
-
backgroundColor="s-bg-gray-700"
|
|
320
|
-
iconColor="s-text-gray-50"
|
|
321
|
-
/>
|
|
322
|
-
}
|
|
323
|
-
/>
|
|
324
|
-
<Tooltip
|
|
325
|
-
label="Image generation"
|
|
326
|
-
trigger={
|
|
327
|
-
<Avatar
|
|
328
|
-
size="md"
|
|
329
|
-
icon={ActionImageIcon}
|
|
330
|
-
backgroundColor="s-bg-gray-700"
|
|
331
|
-
iconColor="s-text-gray-50"
|
|
332
|
-
/>
|
|
333
|
-
}
|
|
334
|
-
/>
|
|
335
|
-
<Tooltip
|
|
336
|
-
label="Web search and browsing"
|
|
337
|
-
trigger={
|
|
338
|
-
<Avatar
|
|
339
|
-
size="md"
|
|
340
|
-
icon={ActionGlobeIcon}
|
|
341
|
-
backgroundColor="s-bg-gray-700"
|
|
342
|
-
iconColor="s-text-gray-50"
|
|
343
|
-
/>
|
|
344
|
-
}
|
|
345
|
-
/>
|
|
346
|
-
<Tooltip
|
|
347
|
-
label="Reasoning"
|
|
348
|
-
trigger={
|
|
349
|
-
<Avatar
|
|
350
|
-
size="md"
|
|
351
|
-
icon={ActionBrainIcon}
|
|
352
|
-
backgroundColor="s-bg-gray-700"
|
|
353
|
-
iconColor="s-text-gray-50"
|
|
354
|
-
/>
|
|
355
|
-
}
|
|
356
|
-
/>
|
|
357
|
-
</div>
|
|
358
|
-
</TourGuideCardVisual>
|
|
359
|
-
<TourGuideCardTitle>
|
|
360
|
-
Make your agents smarter with
|
|
361
|
-
<span className="s-text-brand-red-rose">knowledge and tools</span>.
|
|
362
|
-
</TourGuideCardTitle>
|
|
363
|
-
<TourGuideCardContent className="s-py-2">
|
|
364
|
-
<Button
|
|
365
|
-
label="Watch the full video"
|
|
366
|
-
icon={PlayIcon}
|
|
367
|
-
variant={"outline"}
|
|
368
|
-
/>
|
|
369
|
-
</TourGuideCardContent>
|
|
370
|
-
</TourGuideCard>
|
|
371
|
-
<TourGuideCard anchorRef={bottomLeftRef}>
|
|
372
|
-
<TourGuideCardVisual className="s-flex s-flex-col s-items-center s-justify-center s-gap-0 s-bg-brand-support-golden s-px-6 s-text-center">
|
|
373
|
-
<div className="s-grid s-grid-cols-4 s-gap-2">
|
|
374
|
-
<Tooltip
|
|
375
|
-
label="FeedbackHelper"
|
|
376
|
-
trigger={
|
|
377
|
-
<Avatar
|
|
378
|
-
size="lg"
|
|
379
|
-
emoji="❤️"
|
|
380
|
-
backgroundColor="s-bg-rose-100"
|
|
381
|
-
/>
|
|
382
|
-
}
|
|
383
|
-
/>
|
|
384
|
-
<Tooltip
|
|
385
|
-
label="RiskAnalyzer"
|
|
386
|
-
trigger={
|
|
387
|
-
<Avatar
|
|
388
|
-
size="lg"
|
|
389
|
-
emoji="💀"
|
|
390
|
-
backgroundColor="s-bg-lime-800"
|
|
391
|
-
/>
|
|
392
|
-
}
|
|
393
|
-
/>
|
|
394
|
-
<Tooltip
|
|
395
|
-
label="EngagementPro"
|
|
396
|
-
trigger={
|
|
397
|
-
<Avatar
|
|
398
|
-
size="lg"
|
|
399
|
-
emoji="😂"
|
|
400
|
-
backgroundColor="s-bg-golden-200"
|
|
401
|
-
/>
|
|
402
|
-
}
|
|
403
|
-
/>
|
|
404
|
-
<Tooltip
|
|
405
|
-
label="RunbookMaster"
|
|
406
|
-
trigger={
|
|
407
|
-
<Avatar
|
|
408
|
-
size="lg"
|
|
409
|
-
emoji="🧑🚀"
|
|
410
|
-
backgroundColor="s-bg-violet-800"
|
|
411
|
-
/>
|
|
412
|
-
}
|
|
413
|
-
/>
|
|
414
|
-
<Tooltip
|
|
415
|
-
label="BrandSpecialist"
|
|
416
|
-
trigger={
|
|
417
|
-
<Avatar
|
|
418
|
-
size="lg"
|
|
419
|
-
emoji="👕"
|
|
420
|
-
backgroundColor="s-bg-blue-200"
|
|
421
|
-
/>
|
|
422
|
-
}
|
|
423
|
-
/>
|
|
424
|
-
<Tooltip
|
|
425
|
-
label="CrisisManager"
|
|
426
|
-
trigger={
|
|
427
|
-
<Avatar size="lg" emoji="🚒" backgroundColor="s-bg-red-200" />
|
|
428
|
-
}
|
|
429
|
-
/>
|
|
430
|
-
<Tooltip
|
|
431
|
-
label="PerformanceCoach"
|
|
432
|
-
trigger={
|
|
433
|
-
<Avatar
|
|
434
|
-
size="lg"
|
|
435
|
-
emoji="🏆"
|
|
436
|
-
backgroundColor="s-bg-yellow-200"
|
|
437
|
-
/>
|
|
438
|
-
}
|
|
439
|
-
/>
|
|
440
|
-
<Tooltip
|
|
441
|
-
label="StrategyPlanner"
|
|
442
|
-
trigger={
|
|
443
|
-
<Avatar
|
|
444
|
-
size="lg"
|
|
445
|
-
emoji="🎯"
|
|
446
|
-
backgroundColor="s-bg-pink-100"
|
|
447
|
-
/>
|
|
448
|
-
}
|
|
449
|
-
/>
|
|
450
|
-
</div>
|
|
451
|
-
</TourGuideCardVisual>
|
|
452
|
-
<TourGuideCardTitle>
|
|
453
|
-
Create new custom agents{" "}
|
|
454
|
-
<span className="s-text-brand-orange-golden">
|
|
455
|
-
designed for your needs
|
|
456
|
-
</span>
|
|
457
|
-
.
|
|
458
|
-
</TourGuideCardTitle>
|
|
459
|
-
<TourGuideCardContent className="s-py-2">
|
|
460
|
-
<Button
|
|
461
|
-
label="Watch the full video"
|
|
462
|
-
icon={PlayIcon}
|
|
463
|
-
variant={"outline"}
|
|
464
|
-
/>
|
|
465
|
-
</TourGuideCardContent>
|
|
466
|
-
</TourGuideCard>
|
|
467
|
-
</TourGuide>
|
|
468
|
-
</div>
|
|
469
|
-
);
|
|
470
|
-
};
|
|
471
|
-
|
|
472
|
-
export const Default = Template.bind({});
|