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