storybook/docs/snippets/common/addon-highlight-customize.js.mdx
2022-03-28 14:43:02 -04:00

10 lines
174 B
Plaintext

```js
// MyComponent.stories.js
emit(HIGHLIGHT, {
elements: ['.title', '.subtitle'],
color: 'red',
style: 'solid', // 'dotted' | 'dashed' | 'solid' | 'double'
});
```