UNPKG

@indoqa/style-system

Version:

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

12 lines (11 loc) 498 B
import * as React from 'react'; import { BaseTheme } from '../../theming/baseTheme'; import { PaddingProps, ResponsiveProps, StylingProps, WithStyle } from '../types'; interface Props<T extends BaseTheme> extends WithStyle<T>, ResponsiveProps<PaddingProps>, ResponsiveProps<StylingProps<T>> { testId?: string; innerRef?: React.RefObject<HTMLDivElement>; } export declare class ColRow<T extends BaseTheme> extends React.Component<Props<T>, unknown> { render(): JSX.Element; } export {};