import { moduleMetadata } from '@storybook/angular'; import { TextInputComponent } from './text-input.component'; export default { title: 'Input/Text Input', component: TextInputComponent, decorators: [ moduleMetadata({ declarations: [ TextInputComponent ] }), ], args: { } }; const Template = (args: TextInputComponent) => ({ component: TextInputComponent, props: args, template: ` ` }); // _____ _ _ // / ____| | (_) // | (___ | |_ ___ _ __ _ ___ ___ // \___ \| __/ _ \| '__| |/ _ \/ __| // ____) | || (_) | | | | __/\__ \ // |_____/ \__\___/|_| |_|\___||___/ export const Primary = Template.bind({});