+ {#if example?.icon?.url}
+
+
+
+ {:else if example?.icon?.mime_type === "text"}
+
+ Aa
+
+ {:else if example.files !== undefined && example.files.length > 0}
+ {#if example.files.length > 1}
+
+ {#each example.files.slice(0, 4) as file, i}
+ {#if file.mime_type?.includes("image")}
+
+
+ {#if i === 3 && example.files.length > 4}
+
+ +{example.files.length - 4}
+
+ {/if}
+
+ {:else if file.mime_type?.includes("video")}
+
+
+ {#if i === 3 && example.files.length > 4}
+
+ +{example.files.length - 4}
+
+ {/if}
+
+ {:else}
+
+ {#if file.mime_type?.includes("audio")}
+
+ {:else}
+
+ {/if}
+
+ {/if}
+ {/each}
+ {#if example.files.length > 4}
+
+
+ +{example.files.length - 4}
+
+
+ {/if}
+
+ {:else if example.files[0].mime_type?.includes("image")}
+
+
+
+ {:else if example.files[0].mime_type?.includes("video")}
+
+
+
+ {:else if example.files[0].mime_type?.includes("audio")}
+
+
+
+ {:else}
+
+
+
+ {/if}
+ {/if}
+
+
+ {example.display_text || example.text}
+
+
+