mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 19:41:02 +08:00
12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
---
|
|
export interface Props {
|
|
noPadding?: boolean;
|
|
}
|
|
|
|
const { noPadding = false } = Astro.props;
|
|
---
|
|
|
|
<div class={`max-w-3xl mx-auto ${noPadding ? "px-0" : "px-4"}`}>
|
|
<hr class="border-skin-line" />
|
|
</div>
|