@platformbuilders/fluid-react
Version:
Builders React for Fluid Design System
16 lines (15 loc) • 1.24 kB
TypeScript
/// <reference types="react" />
type VariantProps = {
$variant?: 'default' | 'primary';
};
type LabelProps = {
$fontWeight?: number;
} & VariantProps;
type WrapperProps = {
enabled?: boolean;
} & VariantProps;
export declare const Wrapper: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, WrapperProps>>;
export declare const CheckboxRoot: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, VariantProps>>;
export declare const Check: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, VariantProps>>;
export declare const Label: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, LabelProps>>;
export {};