import MtIcon from "./mt-icon.vue"; import type { StoryObj } from "@storybook/vue3"; import type { SlottedMeta } from "@/_internal/story-helper"; export type MtIconMeta = SlottedMeta; const meta: MtIconMeta = { title: "Components/Icons & Media/mt-icon", component: MtIcon, render: (args) => ({ components: { MtIcon }, template: '', setup: () => { return { args, }; }, }), args: { name: "regular-products", color: "#3498db", decorative: false, }, }; export default meta; export type MtIconStory = StoryObj; export const Default: MtIconStory = { name: "mt-icon", };