22 lines
491 B
Plaintext
22 lines
491 B
Plaintext
---
|
|
// Path: src/components/Post/Blockquotes/Ganbatte.astro
|
|
|
|
import styles from "./Ganbatte.module.scss";
|
|
|
|
interface Props {
|
|
toc?: string;
|
|
tocLevel?: string;
|
|
imageAlt?: string;
|
|
}
|
|
|
|
const { toc, tocLevel = "1", imageAlt = "MangoPig Ganbatte" } = Astro.props;
|
|
---
|
|
|
|
<blockquote class={styles.ganbatte} data-toc={toc} data-toc-level={tocLevel}>
|
|
<slot />
|
|
|
|
<picture>
|
|
<img src="https://pic.mangopig.tech/i/4c4d1b5f-b9ce-4952-a1b4-991b19c0adb5.png" alt={imageAlt} />
|
|
</picture>
|
|
</blockquote>
|