import { moduleMetadata } from '@storybook/angular'; import { DeviceIconComponent } from './device-icon.component'; export default { title: 'Common/Device Icon', component: DeviceIconComponent, }; const Template = (args: DeviceIconComponent) => ({ component: DeviceIconComponent, props: args, }); // _____ _ _ // / ____| | (_) // | (___ | |_ ___ _ __ _ ___ ___ // \___ \| __/ _ \| '__| |/ _ \/ __| // ____) | || (_) | | | | __/\__ \ // |_____/ \__\___/|_| |_|\___||___/ export const Phone = Template.bind({}); Phone.args = { type: 'phone' } export const Router = Template.bind({}); Router.args = { type: 'router' } export const Empty = Template.bind({});