@codecademy/gamut
68.2.168.2.2-alpha.8940e8.0
dist/Form/elements/FormGroupLabel.d.ts~
dist/Form/elements/FormGroupLabel.d.tsModified+2−2
Index: package/dist/Form/elements/FormGroupLabel.d.ts
===================================================================
--- package/dist/Form/elements/FormGroupLabel.d.ts
+++ package/dist/Form/elements/FormGroupLabel.d.ts
@@ -3,12 +3,12 @@
import * as React from 'react';
import { InfoTipSubComponentProps } from '../../Tip/InfoTip/type-utils';
import { BaseInputProps } from '../types';
declare const labelSizeVariants: (props: import("@codecademy/variance/dist/types/config").VariantProps<"size", false | "small" | "large"> & {
- theme?: import("@emotion/react").Theme | undefined;
+ theme?: import("@emotion/react").Theme;
}) => import("@codecademy/variance").CSSObject;
declare const labelStates: (props: Partial<Record<"disabled", boolean>> & {
- theme?: import("@emotion/react").Theme | undefined;
+ theme?: import("@emotion/react").Theme;
}) => import("@codecademy/variance").CSSObject;
export interface LabelVariants extends StyleProps<typeof labelSizeVariants>, StyleProps<typeof labelStates> {
}
export type FormGroupLabelProps = HTMLAttributes<HTMLDivElement> & HTMLAttributes<HTMLLabelElement> & LabelVariants & Pick<BaseInputProps, 'htmlFor' | 'required'> & {