mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
ae4277a9a8
* move files * commit the rest of the files * fix lockfile * fix workflow * fix type errors * fix tests * only run ci when certain files change * run correct test command in ci * version * fix pypi script --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
36 lines
789 B
Svelte
36 lines
789 B
Svelte
<script lang="ts">
|
|
import Copy from "./Copy.svelte";
|
|
import Download from "./Download.svelte";
|
|
|
|
export let value: string;
|
|
export let language: string;
|
|
</script>
|
|
|
|
<div>
|
|
<Download {value} {language} />
|
|
<Copy {value} />
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
display: flex;
|
|
position: absolute;
|
|
top: var(--block-label-margin);
|
|
right: var(--block-label-margin);
|
|
align-items: center;
|
|
|
|
z-index: var(--layer-2);
|
|
transition: 150ms;
|
|
box-shadow: var(--shadow-drop);
|
|
border: 1px solid var(--border-color-primary);
|
|
border-top: none;
|
|
border-right: none;
|
|
border-radius: var(--block-label-right-radius);
|
|
background: var(--block-label-background-fill);
|
|
overflow: hidden;
|
|
color: var(--block-label-text-color);
|
|
font: var(--font);
|
|
font-size: var(--button-small-text-size);
|
|
}
|
|
</style>
|