@indoqa/style-system
Version:
A style system for React with Typescript typed theme support and several base components.
18 lines (17 loc) • 583 B
TypeScript
import * as React from 'react';
import { BaseTheme } from '../../theming/baseTheme';
import { PaddingProps, StylingProps, WithStyle } from '../types';
interface Props<T extends BaseTheme> extends WithStyle<T>, PaddingProps, StylingProps<T> {
height?: number | string;
minHeight?: number | string;
testId?: string;
innerRef?: React.RefObject<HTMLDivElement>;
}
export declare class Row<T extends BaseTheme> extends React.Component<Props<T>> {
static defaultProps: {
height: string;
minHeight: string;
};
render(): JSX.Element;
}
export {};