File size: 776 Bytes
8b49f1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<script lang="ts">
  import { IconButton } from "@gradio/atoms";
  import { Clear } from "@gradio/icons";

  import { createEventDispatcher } from "svelte";

  export let absolute = true;

  const dispatch = createEventDispatcher<{
    clear?: never;
  }>();
</script>

<div
  class:not-absolute={!absolute}
  style:position={absolute ? "absolute" : "static"}
>
  <IconButton
    Icon={Clear}
    label="Finish drawing"
    size="large"
    on:click={(event) => {
      dispatch("clear");
      event.stopPropagation();
    }}
  />
</div>

<style>
  div {
    display: flex;
    top: var(--size-2);
    right: var(--size-2);
    justify-content: flex-end;
    gap: var(--spacing-sm);
    z-index: var(--layer-1);
  }

  .not-absolute {
    margin: var(--size-1);
  }
</style>