import React from "react"; import { ComponentMeta, ComponentStory } from "@storybook/react"; import { SwitchIcon, Flex } from "../"; export default { title: "Components/SwitchIcon", component: SwitchIcon } as ComponentMeta; const Template: ComponentStory = (args) => ; export const Simple = Template.bind({}); Simple.args = { iconA: , iconB: , stateA: 'muted', stateB: 'cyan', } export const Animations = () => ( } iconB={} stateA='muted' stateB='blue' anim='fade' /> } iconB={} stateA='muted' stateB='red' anim='flip' /> } iconB={} stateA='muted' stateB='yellow' anim='scale' /> } iconB={} stateA='muted' stateB='blue' anim='slide-down' /> } iconB={} stateA='muted' stateB='blue' anim='slide-left' /> } iconB={} stateA='muted' stateB='muted' anim='slide-right' /> } iconB={} stateA='muted' stateB='muted' anim='slide-right' /> )