@create-figma-plugin/ui
Version:
Production-grade Preact components that replicate the Figma UI design
11 lines • 314 B
JavaScript
import { h } from 'preact';
import { Text } from '../../../components/text/text.js';
import { Muted } from '../muted.js';
export default {
title: 'Inline Text/Muted'
};
export const Default = function () {
return (h(Text, null,
h(Muted, null, "Text")));
};
//# sourceMappingURL=muted.stories.js.map