dareway-rui
Version:
21 lines (19 loc) • 555 B
TypeScript
import * as React from 'react';
declare interface propTypes {
name?: string;
width?: 'number' | 'string';
height?: 'number' | 'string';
backgroundColor?: string;
hidden?: boolean;
backgroundImage?: string;
leftBorder?: boolean;
rightBorder?: boolean;
topBorder?: boolean;
bottomBorder?: boolean;
minHeight?: number;
minWidth?: number;
borderWidth?: number;
borderColor?: string;
borderRadiusWidth?: number;
}
export default class Panel extends React.Component<propTypes> {}