hc99's picture
Add files using upload-large-folder tool
8766bc5 verified
raw
history blame
736 Bytes
<script lang="ts">
export let value: string;
export let samples_dir: string;
export let type: "gallery" | "table";
export let selected = false;
</script>
<img
src={samples_dir + value}
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
alt=""
/>
<style>
img {
border-radius: var(--radius-lg);
max-width: none;
}
img.selected {
border-color: var(--border-color-accent);
}
.table {
margin: 0 auto;
border: 2px solid var(--border-color-primary);
border-radius: var(--radius-lg);
width: var(--size-20);
height: var(--size-20);
object-fit: cover;
}
.gallery {
border: 2px solid var(--border-color-primary);
max-height: var(--size-20);
object-fit: cover;
}
</style>