agnostic-svelte
Version:
AgnosticUI (svelte)
17 lines (13 loc) • 357 B
JavaScript
import Tags from "./TagSlots.svelte";
import FontDecorator from "../../storybook-helpers/FontDecorator.svelte";
export default {
title: "AG—Svelte (Beta)/Tag",
components: [Tags],
decorators: [() => FontDecorator],
};
const Template = ({ ...args }) => ({
Component: Tags,
props: args,
});
export const All = Template.bind({});
All.args = {};