brahma-test-widget
Version:
A React component for trade automation within the Brahma ecosystem.
22 lines • 959 B
TypeScript
export type FlexContainerProps = {
flexDirection?: 'row' | 'row-reverse' | 'column' | 'column-reverse' | 'initial' | 'inherit';
justifyContent?: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly' | 'initial' | 'inherit';
alignItems?: 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline' | 'space-between' | 'space-around' | 'space-evenly' | 'initial' | 'inherit';
gap?: number;
mobileGap?: number;
flex?: boolean;
width?: number;
height?: number;
padding?: string;
style?: Record<string, string>;
opacityInEffect?: boolean;
bgColor?: string;
hoverBgColor?: string;
borderRadius?: number | string;
borderColor?: string;
hoverBorderColor?: string;
cursor?: string;
};
declare const FlexContainer: import("styled-components").StyledComponent<"div", any, FlexContainerProps, never>;
export default FlexContainer;
//# sourceMappingURL=index.d.ts.map