UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

19 lines 734 B
import React from "react"; import Card from "../Card.js"; import { IucnLevelPill } from "./IucnLevelPill.js"; import ReportDecorator from "../storybook/ReportDecorator.js"; export default { component: IucnLevelPill, title: "Components/Iucn/IucnLevelPill", decorators: [ReportDecorator], }; export const pill = () => (React.createElement(Card, { title: "Report Title" }, React.createElement("p", null, React.createElement(IucnLevelPill, { level: "full" }, "Full"), " +", " ", React.createElement(IucnLevelPill, { level: "high" }, "High"), " +", " ", React.createElement(IucnLevelPill, { level: "low" }, "Low")))); //# sourceMappingURL=IucnLevelPill.stories.js.map