indoqa-react-fela
Version:
This project components to use [Fela](https://fela.js.org) in React projects:
16 lines (15 loc) • 502 B
TypeScript
import * as React from 'react';
import { BaseTheme } from '../../baseTheme';
import { PaddingProps, StylingProps, WithStyle } from '../base';
interface Props<T extends BaseTheme> extends WithStyle<T>, PaddingProps, StylingProps {
height?: number | string;
minHeight?: number | string;
}
export declare class Row<T extends BaseTheme> extends React.Component<Props<T>> {
static defaultProps: {
height: string;
minHeight: string;
};
render(): JSX.Element;
}
export {};