13 lines
332 B
Plaintext
13 lines
332 B
Plaintext
---
|
|
// Path: src/components/Post/Blockquotes/Important.astro
|
|
|
|
import styles from "./Important.module.scss";
|
|
---
|
|
|
|
<blockquote class={styles.important}>
|
|
<slot />
|
|
<picture class={styles.sticker}>
|
|
<img src="https://pic.mangopig.tech/i/7eb5b343-5ddf-47ae-a272-4b82ca3d53d7.webp" alt="MangoPig Important" />
|
|
</picture>
|
|
</blockquote>
|