mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
19 lines
327 B
Svelte
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>
|