Files
gradio-webrtc/frontend/shared/VideoChat/icons/IconFont.svelte
huangbinchao.hbc aefb08150f [feat] update some feature
sync code of  fastrtc,
add text support through datachannel,
fix safari connect problem
support chat without camera or mic
2025-03-25 18:05:10 +08:00

14 lines
269 B
Svelte

<script lang="ts">
export let color;
export let fontSize = "16px";
export let icon: any = undefined;
</script>
<span style={`color: ${color}; font-size: ${fontSize}`}>
{#if icon}
<svelte:component this={icon} />
{:else}
<slot></slot>
{/if}
</span>