mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 00:02:30 +00:00
* fix(frontend): Fix runnable editor * fix(frontend): remove isopenstore * fix(frontend): add output searchbar * fix(frontend): fix build * fix(frontend): add missing clear button
23 lines
637 B
Svelte
23 lines
637 B
Svelte
<script lang="ts">
|
|
import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'
|
|
import Icon from 'svelte-awesome'
|
|
import type { PopoverPlacement } from './Popover.model'
|
|
import Popover from './Popover.svelte'
|
|
|
|
export let light = false
|
|
export let scale = 0.8
|
|
export let wrapperClass = ''
|
|
export let placement: PopoverPlacement | undefined = undefined
|
|
</script>
|
|
|
|
<Popover notClickable {placement} class={wrapperClass}>
|
|
<Icon
|
|
class="{light
|
|
? 'text-gray-400'
|
|
: ' text-gray-500'} font-thin inline-block align-middle w-4 {$$props.class}"
|
|
data={faInfoCircle}
|
|
{scale}
|
|
/>
|
|
<span slot="text"> <slot /> </span>
|
|
</Popover>
|