1
0
Fork 0
mirror of synced 2024-08-17 11:01:26 +12:00
budibase/packages/standard-components/src/Image.svelte

19 lines
298 B
Svelte
Raw Normal View History

2020-02-21 06:06:50 +13:00
<script>
import { buildStyle } from "./buildStyle"
export let className = "";
export let url = "";
export let description = ""
export let height
export let width
$: style = buildStyle({height, width})
</script>
<img class={className}
style={style}
src={url}
alt={description} >