UNPKG

@trimble-oss/moduswebcomponents

Version:

Modus Web Components is a modern, accessible UI library built with Stencil JS that provides reusable web components following Trimble's Modus design system. This updated version focuses on improved flexibility, enhanced theming options, comprehensive cust

24 lines (23 loc) 841 B
import { Meta, StoryObj } from '@storybook/web-components'; import { TypographyHierarchy, TypographySize, TypographyWeight } from '../types'; interface TypographyArgs { 'custom-class'?: string; hierarchy: TypographyHierarchy; label: string; size?: TypographySize; weight?: TypographyWeight; } declare const meta: Meta<TypographyArgs>; export default meta; type Story = StoryObj<TypographyArgs>; export declare const Default: Story; export declare const Heading1: Story; export declare const Heading2: Story; export declare const Heading3: Story; export declare const Heading4: Story; export declare const Heading5: Story; export declare const Heading6: Story; export declare const Paragraph: Story; export declare const WithLabel: Story; export declare const WithSlot: Story; export declare const ShadowDomParent: Story;