diff --git a/src/lib/components/cards/Card.svelte b/src/lib/components/cards/Card.svelte index 300a82a..7c4d2fb 100644 --- a/src/lib/components/cards/Card.svelte +++ b/src/lib/components/cards/Card.svelte @@ -21,6 +21,9 @@ /** Hide the header image element. It can be shown by removing the "hidden" property using JS and the imgid. */ imghidden?: boolean; + /** If the header image is positioned at the left of the card */ + imgleft?: boolean; + /** The width class for the card, defaults to [w-auto] */ width?: string; @@ -35,6 +38,7 @@ imgheight = undefined, imgid = undefined, imghidden = false, + imgleft = false, width = "w-auto", imgonclick = undefined, ...restProps @@ -45,7 +49,7 @@ } -