@navinc/base-react-components
Version:
Nav's Pattern Library
20 lines (19 loc) • 1.3 kB
TypeScript
declare const twoColumnBreakpoint = "min-width: 744px";
declare const threeColumnBreakpoint = "min-width: 1104px";
declare const One: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare const OneFewer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare const OneTwoOne: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare const Two: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare const All: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
declare const _ThreeColumnLayout: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
type ThreeColumnLayoutType = typeof _ThreeColumnLayout & {
One: typeof One;
OneFewer: typeof OneFewer;
OneTwoOne: typeof OneTwoOne;
Two: typeof Two;
All: typeof All;
twoColumnBreakpoint: string;
threeColumnBreakpoint: string;
};
export declare const ThreeColumnLayout: ThreeColumnLayoutType;
export { One, OneFewer, OneTwoOne, Two, All, twoColumnBreakpoint, threeColumnBreakpoint };