UNPKG

vcc-ui

Version:

VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.

20 lines 646 B
import React from "react"; import { storiesOf } from "@storybook/react"; import { withBackgrounds } from "@storybook/addon-backgrounds"; import { Inline } from "../../index"; import { render } from "../../../stories/render"; var listOfLightBackgrounds = [{ name: "white", value: "#fff", default: true }, { name: "gray", value: "#ccc" }]; storiesOf("Inline", module).addDecorator(withBackgrounds(listOfLightBackgrounds)).addDecorator(render).addWithJSX("basic", function () { return React.createElement(Inline, null, "This is an ", React.createElement(Inline, { extend: { color: "red" } }, "inline"), " component"); });