@navinc/base-react-components
Version:
Nav's Pattern Library
57 lines (56 loc) • 1.67 kB
TypeScript
declare const variations: {
bottom: {
image: string;
position: string;
};
top: {
image: string;
position: string;
};
topDynamic: {
image: string;
position: string;
};
topLight: {
image: string;
position: string;
};
topLightDynamic: {
image: string;
position: string;
};
bottomTan: {
image: string;
position: string;
};
topTan: {
image: string;
position: string;
};
topTanDynamic: {
image: string;
position: string;
};
noBackground: {
image: string;
position: string;
};
};
type Variation = keyof typeof variations;
export declare const WavePageContainer: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, keyof {
flexFlow?: import("csstype").Property.FlexFlow;
alignContent?: import("csstype").Property.AlignContent;
alignItems?: import("csstype").Property.AlignItems;
justifyContent?: import("csstype").Property.JustifyContent;
flex?: import("csstype").Property.Flex;
}> & {
flexFlow?: import("csstype").Property.FlexFlow;
alignContent?: import("csstype").Property.AlignContent;
alignItems?: import("csstype").Property.AlignItems;
justifyContent?: import("csstype").Property.JustifyContent;
flex?: import("csstype").Property.Flex;
}, {
variation: Variation;
height: number;
}>> & string;
export {};