@codecademy/gamut
68.2.168.2.2-alpha.8940e8.0
dist/Disclosure/helpers.d.ts~
dist/Disclosure/helpers.d.tsModified+4−4
Index: package/dist/Disclosure/helpers.d.ts
===================================================================
--- package/dist/Disclosure/helpers.d.ts
+++ package/dist/Disclosure/helpers.d.ts
@@ -1,5 +1,5 @@
-export declare const getSpacing: (spacing: 'compact' | 'condensed' | 'normal') => {
+export declare const getSpacing: (spacing: "compact" | "condensed" | "normal") => {
verticalSpacing: 16 | 4 | 8;
horizontalSpacing: 16 | 8;
};
declare const titleVariantMap: {
@@ -7,12 +7,12 @@
readonly condensed: "title-xs";
readonly normal: "title-sm";
};
export declare const getTitleSize: (spacing: keyof typeof titleVariantMap) => "title-sm" | "title-xs" | "p-base";
-export declare const getRotationSize: (spacing: 'compact' | 'condensed' | 'normal') => 16 | 24;
+export declare const getRotationSize: (spacing: "compact" | "condensed" | "normal") => 16 | 24;
export declare const renderButton: (buttonProps: {
- buttonPlacement: 'left' | 'right';
- buttonType: 'FillButton' | 'StrokeButton' | 'TextButton';
+ buttonPlacement: "left" | "right";
+ buttonType: "FillButton" | "StrokeButton" | "TextButton";
ctaCallback: () => void;
ctaText: string;
href?: string | undefined;
}) => import("react/jsx-runtime").JSX.Element | null;