23 lines
545 B
Text
23 lines
545 B
Text
---
|
|
import type { LabelledValue } from '@/types/shared';
|
|
import Typography from './typography.astro';
|
|
|
|
export interface Props extends LabelledValue {}
|
|
|
|
const { label, value, url } = Astro.props;
|
|
|
|
const parsedValue = Array.isArray(value) ? value.join(', ') : value;
|
|
---
|
|
|
|
<div>
|
|
<Typography variant="label">{label}:</Typography>
|
|
{
|
|
url ? (
|
|
<Typography as="a" href={url} target="_blank" class="underline">
|
|
{parsedValue}
|
|
</Typography>
|
|
) : (
|
|
<Typography variant="value">{parsedValue}</Typography>
|
|
)
|
|
}
|
|
</div>
|