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;
        };
    };
}

Type declaration

  • box: {
        base: {
            color: string;
            hover: {
                color: string;
            };
        };
        unchecked: {
            color: string;
        };
    }
    • base: {
          color: string;
          hover: {
              color: string;
          };
      }
      • color: string
      • hover: {
            color: string;
        }
        • color: string
    • unchecked: {
          color: string;
      }
      • color: string
  • label: {
        base: {
            color: string;
        };
        unchecked: {
            color: string;
        };
    }
    • base: {
          color: string;
      }
      • color: string
    • unchecked: {
          color: string;
      }
      • color: string
input: {
    base: {
        color: string;
        fontSize: string;
    };
    focus: {
        color: string;
    };
    hover: {
        color: string;
    };
    invalid: {
        color: string;
    };
    placeholder: {
        base: {
            color: string;
        };
    };
}

Type declaration

  • base: {
        color: string;
        fontSize: string;
    }
    • color: string
    • fontSize: string
  • focus: {
        color: string;
    }
    • color: string
  • hover: {
        color: string;
    }
    • color: string
  • invalid: {
        color: string;
    }
    • color: string
  • placeholder: {
        base: {
            color: string;
        };
    }
    • base: {
          color: string;
      }
      • color: string
oneclickButton: {
    height: string;
    theme: string;
}

Type declaration

  • height: string
  • theme: string

Generated using TypeDoc