UNPKG

@patreon/studio

Version:

Patreon Studio Design System

20 lines (19 loc) 896 B
import type { BodyTextBundle, DisplayTextBundle, HeadingTextBundle } from '~/types/type-bundles'; /** * CSS which includes the correct tokens and styles for BodyText. * * In most cases, the `<BodyText />` component should be used instead. */ export declare function cssForBodyText(config?: BodyTextBundle): import("styled-components").RuleSet<object>; /** * CSS which includes the correct tokens and styles for HeadingText. * * In most cases, the `<HeadingText />` component should be used instead. */ export declare function cssForHeadingText(config?: HeadingTextBundle): import("styled-components").RuleSet<object>; /** * CSS which includes the correct tokens and styles for DisplayText. * * In most cases, the `<DisplayText />` component should be used instead. */ export declare function cssForDisplayText(config?: DisplayTextBundle): import("styled-components").RuleSet<object>;