jjj 0.2.1

A modal interface for Jujutsu.
1
2
3
4
5
6
7
8
9
10
11
---
import { default as Picture, type Props as PictureProps } from './Picture.astro';

type Props = PictureProps;

const { class: className, ...props } = Astro.props;
---

{/* Applying class outside of the spread prevents it from applying unnecessary astro-* classes */}

<Picture {...props} class={className} />