DocSpace-buildtools/packages/asc-web-components/text/text.stories.js
2021-02-24 17:42:09 +03:00

41 lines
1.1 KiB
JavaScript

import React from "react";
import { storiesOf } from "@storybook/react";
import {
text,
boolean,
withKnobs,
color,
select,
} from "@storybook/addon-knobs/react";
import Text from ".";
import Section from "../../../.storybook/decorators/section";
import withReadme from "storybook-readme/with-readme";
import Readme from "./README.md";
const textTags = ["p", "span", "div"];
storiesOf("Components|Text", module)
.addDecorator(withKnobs)
.addDecorator(withReadme(Readme))
.add("base", () => (
<Section>
<div style={{ width: "100%" }}>
<Text
title={text("title", "")}
as={select("as", textTags, "p")}
fontSize={text("fontSize", "13px")}
fontWeight={text("fontWeight", "400")}
truncate={boolean("truncate", false)}
color={color("color", "#333333")}
backgroundColor={color("backgroundColor", "")}
isBold={boolean("isBold", false)}
isItalic={boolean("isItalic", false)}
isInline={boolean("isInline", false)}
display={text("display")}
>
{text("Text", "Sample text")}
</Text>
</div>
</Section>
));