interface SwitchProps {
    loading?: boolean;
    [key: `&[data-part=${string}]`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `&[data-attr=${string}]`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `&[data-placement=${string}]`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `&[data-theme=${string}]`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `&[data-size=${string}]`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `&[data-state=${string}]`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `[data-part=${string}] &`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `[data-attr=${string}] &`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `[data-placement=${string}] &`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `[data-theme=${string}] &`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `[data-size=${string}] &`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `[data-state=${string}] &`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `${string}&`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `&${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@page${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@media${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@layer${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@container${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@supports${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@scope${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `@starting-style${string}`]:
        | undefined
        | Nested<SystemProperties & CssVarProperties>;
    [key: `--${AnyString}`]: undefined | CssVarValue;
}

Hierarchy (View Summary, Expand)

Indexable

  • [key: `&[data-part=${string}]`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `&[data-attr=${string}]`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `&[data-placement=${string}]`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `&[data-theme=${string}]`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `&[data-size=${string}]`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `&[data-state=${string}]`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `[data-part=${string}] &`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `[data-attr=${string}] &`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `[data-placement=${string}] &`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `[data-theme=${string}] &`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `[data-size=${string}] &`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `[data-state=${string}] &`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `${string}&`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `&${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@page${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@media${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@layer${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@container${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@supports${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@scope${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `@starting-style${string}`]: undefined | Nested<SystemProperties & CssVarProperties>
  • [key: `--${AnyString}`]: undefined | CssVarValue

Properties

Properties

loading?: boolean
MMNEPVFCICPMFPCPTTAAATR