UNPKG

@revenuecat/purchases-ui-js

Version:

Web components for Paywalls. Powered by RevenueCat

10 lines (9 loc) 416 B
import { type Snippet } from "svelte"; type Size = "heading-2xl" | "heading-xl" | "heading-lg" | "heading-md" | "body-base" | "body-small" | "label-button" | "label-default" | "caption-default" | "caption-link"; type Props = { size?: Size; children?: Snippet; }; declare const Typography: import("svelte").Component<Props, {}, "">; type Typography = ReturnType<typeof Typography>; export default Typography;