storybook-figma-addon
v1.0.11
Published
A really simple addon for Storybook that brings in embedded Figma designs.
Downloads
11
Readme
storybook-figma-addon
A really simple addon for Storybook that brings in embedded Figma designs.
Usage
Register the Addon
import 'storybook-figma-addon';
Include it in your Storybook Config
import withFigma from "storybook-figma-addon";
addDecorator(withFigma({
// Here you can add options like the default background colour
// to assist with loading
background: "#0c2c3a"
}));
- Tag stories to figma projects.
const figma = {
figma: "https://www.figma.com/file/<your-figma-url-here>"
}
storiesOf('Button', module)
.add('basic button', () => <Button>Primary Button</Button>, figma)