@helpscout/artboard
Version:
A tool kit for React UI development and design
15 lines (14 loc) • 368 B
TypeScript
import * as React from 'react';
declare class GuideContainer extends React.PureComponent<any> {
static defaultProps: {
color: string;
opacity: number;
height: string;
width: number;
position: string;
showValues: boolean;
showGuide: boolean;
};
render(): JSX.Element;
}
export default GuideContainer;