Mike Phares 127634f5ab Delete self contained Thunder Tests
Back to .net8.0
api/v4/InfinityQS
ApiExplorerSettings
Wafer Counter
Color Sorting
2024-03-13 13:15:56 -07:00

24 lines
615 B
JavaScript

export default {
title: 'Components/Spinner',
tags: ['autodocs'],
args: {
size: "m",
variant: 'default'
},
argTypes: {
size: {
description: "Size options: s (24px) and m (40px) - default: m",
options: ['s', 'm'],
control: { type: 'radio' },
},
variant: {
options: ['default', 'brand'],
control: { type: 'radio' }
}
},
};
const DefaultTemplate = (args) => `<ifx-spinner variant="${args.variant}" size="${args.size}"></ifx-spinner>`;
export const Default = DefaultTemplate.bind({});
Default.argsTypes = {};
//# sourceMappingURL=spinner.stories.js.map