hds-web 1.30.6 → 1.30.7
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
@@ -16,27 +16,27 @@ export default function EventScheduleCard(props) {
|
|
16
16
|
<Icon height='h-[18px] w-[18px]' variant='calendar' strokeClass='stroke-neutral-600 stroke-2' />
|
17
17
|
<Typography textStyle='h6' className='capitalize text-neutral-600' >WHEN</Typography>
|
18
18
|
</div>
|
19
|
-
|
19
|
+
<Typography textStyle='sub2' className='text-neutral-700'>
|
20
20
|
{props.eventDate}
|
21
|
-
</
|
21
|
+
</Typography>
|
22
22
|
</div>}
|
23
23
|
{props.eventTime && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1">
|
24
24
|
<div className="flex gap-2 items-center">
|
25
25
|
<Icon height='h-[18px] w-[18px]' variant='clock' strokeClass='stroke-neutral-600 stroke-2' />
|
26
26
|
<Typography textStyle='h6' className='capitalize text-neutral-600' >TIME</Typography>
|
27
27
|
</div>
|
28
|
-
|
28
|
+
<Typography textStyle='sub2' className='text-neutral-700'>
|
29
29
|
{props.eventTime}
|
30
|
-
</
|
30
|
+
</Typography>
|
31
31
|
</div>}
|
32
32
|
{props.eventLocation && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1 ">
|
33
33
|
<div className="flex gap-2 items-center">
|
34
34
|
<Icon height='h-[18px] w-[18px]' variant='markerpin03' strokeClass='stroke-neutral-600 stroke-2' />
|
35
35
|
<Typography textStyle='h6' className='capitalize text-neutral-600' >WHERE</Typography>
|
36
36
|
</div>
|
37
|
-
|
37
|
+
<Typography textStyle='sub2' className='text-neutral-700'>
|
38
38
|
{props.eventLocation}
|
39
|
-
</
|
39
|
+
</Typography>
|
40
40
|
</div>}
|
41
41
|
{props.social && <div className="px-6 flex flex-wrap gap-4 items-center">
|
42
42
|
{props.social && props.social.twitter && <a href={props.social.twitter}>
|