UNPKG

@indoqa/style-system

Version:

A style system for React with Typescript typed theme support and several base components.

5 lines (4 loc) 294 B
/// <reference types="react" /> import { BaseTheme } from '../theming/baseTheme'; import { BaseProps, HtmlSpanAttributesWithoutStyle, TextProps } from './types'; export declare function Text<T extends BaseTheme>(props: TextProps<T> & BaseProps<T, HtmlSpanAttributesWithoutStyle>): JSX.Element;