2022-09-05 17:08:08 +10:00

19 lines
327 B
Svelte

<script>
/**
* Styles to use for this component
*/
export let style = {};
/**
* Object to log
*/
export let object;
/**
* Text content to log
*/
export let text = '';
const finalText = object ? JSON.stringify(object, null, 2) : text;
</script>
<pre data-testid="pre" {style}>{finalText}</pre>