UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

15 lines 428 B
import { h } from 'preact'; import { LoadingIndicator } from '../loading-indicator.js'; export default { parameters: { fixedWidth: false }, title: 'Components/Loading Indicator' }; export const Default = function () { return h(LoadingIndicator, null); }; export const CustomColor = function () { return h(LoadingIndicator, { color: "brand" }); }; //# sourceMappingURL=loading-indicator.stories.js.map