1
0
Fork 0
mirror of synced 2024-09-13 15:57:37 +12:00
budibase/packages/standard-components/src/Image.svelte
2020-11-11 14:26:33 +00:00

15 lines
305 B
Svelte

<script>
import { buildStyle } from "./helpers"
export let className = ""
export let url = ""
export let description = ""
export let height
export let width
export let _bb
$: style = buildStyle({ height, width })
</script>
<img class={className} {style} src={url} alt={description} />