@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
22 lines • 938 B
JavaScript
import React from "react";
import { SimpleButton } from "./SimpleButton.js";
export default {
component: SimpleButton,
title: "Components/SimpleButton",
decorators: [],
};
export const simpleButton = () => {
return (React.createElement(React.Fragment, null,
React.createElement(SimpleButton, null, "\u22EE"),
React.createElement(SimpleButton, null, "\u27A5"),
React.createElement(SimpleButton, null, "\u21E9"),
React.createElement(SimpleButton, null, "\u2B07"),
React.createElement(SimpleButton, null, "\u27A5"),
React.createElement(SimpleButton, null, "Text")));
};
export const linkButton = () => {
return (React.createElement(React.Fragment, null,
React.createElement("a", { href: "https://google.com", target: "_blank", rel: "noreferrer" },
React.createElement(SimpleButton, null, "\u2B07"))));
};
//# sourceMappingURL=SimpleButton.stories.js.map