import React from "react";
import { action } from "@storybook/addon-actions";
import { Button } from "@storybook/react/demo";
export default {
title: "Button",
excludeStories: ["text"],
includeStories: /emoji.*/
};
export const Basic = () => (
);
export const WithParams = () => ;
WithParams.parameters = { foo: 'bar' }
export const WithDocsParams = () => ;
WithDocsParams.parameters = { docs: { iframeHeight: 200 } };
export const WithStorySourceParams = () => ;
WithStorySourceParams.parameters = { storySource: { source: 'foo' } };