16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
import type {Preview} from '@storybook/angular';
|
|
import 'remixicon/fonts/remixicon.css';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
actions: {argTypesRegex: '^on[A-Z].*'},
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|