Interface StyleIframeType

interface StyleIframeType {
    checkbox: {
        box: {
            base: {
                color: string;
                hover: {
                    color: string;
                };
            };
            unchecked: {
                color: string;
            };
        };
        label: {
            base: {
                color: string;
            };
            unchecked: {
                color: string;
            };
        };
    };
    input: {
        base: {
            color: string;
            fontSize: string;
        };
        focus: {
            color: string;
        };
        hover: {
            color: string;
        };
        invalid: {
            color: string;
        };
        placeholder: {
            base: {
                color: string;
            };
        };
    };
    oneclickButton: {
        height: string;
        theme: string;
    };
}

Properties

checkbox: {
    box: {
        base: {
            color: string;
            hover: {
                color: string;
            };
        };
        unchecked: {
            color: string;
        };
    };
    label: {
        base: {
            color: string;
        };
        unchecked: {
            color: string;
        };
    };
}
input: {
    base: {
        color: string;
        fontSize: string;
    };
    focus: {
        color: string;
    };
    hover: {
        color: string;
    };
    invalid: {
        color: string;
    };
    placeholder: {
        base: {
            color: string;
        };
    };
}
oneclickButton: {
    height: string;
    theme: string;
}