---
type Props =
| {
title: string;
zoomable?: true;
}
| {
frontmatter: {
title: string;
};
};
---
{
"title" in Astro.props
? Astro.props.title
: Astro.props.frontmatter.title
}
{"frontmatter" in Astro.props
?
: null}
{"frontmatter" in Astro.props ? : null}
{"frontmatter" in Astro.props || Astro.props.zoomable
?
16px
: null}