Co-authored-by: Joren Broekema <Joren.Broekema@ing.com> Co-authored-by: Alex Ghiu <Alex.Ghiu@ing.com> Co-authored-by: Thijs Louisse <Thijs.Louisse@ing.com>
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
import { html } from '@open-wc/demoing-storybook';
|
|
import '../lion-icon.js';
|
|
|
|
export default {
|
|
title: 'Icons/System/_internal',
|
|
};
|
|
|
|
export const dynamicIcon = () => html`
|
|
<lion-icon
|
|
.svg=${import('./icons/bugs/bug05.svg.js')}
|
|
aria-label="Skinny dung beatle"
|
|
></lion-icon>
|
|
`;
|