Playground
import { Switch } from "@mittwald/flow-react-components"; <Switch defaultSelected>Autoresponder</Switch>
Mit Label vorne
import { Switch } from "@mittwald/flow-react-components"; <Switch labelPosition="leading">Autoresponder</Switch>
Disabled
import { Switch } from "@mittwald/flow-react-components"; <Switch isDisabled>Autoresponder</Switch>
Properties
Property | Type | Default | Description |
---|---|---|---|
labelPosition | "leading" | "trailing" | "trailing" | Whether the label should appear before or after the switch. |
className | string | ((values: SwitchRenderProps & { defaultClassName: string; }) => string) | - | The CSS className for the element. A function may be provided to compute the class based on component state. |
style | CSSProperties | ((values: SwitchRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties) | - | The inline style for the element. A function may be provided to compute the style based on component state. |
isDisabled | boolean | - | Whether the input is disabled. |
isReadOnly | boolean | - | Whether the input can be selected but not changed by the user. |
autoFocus | boolean | - | Whether the element should receive focus on render. |
value | string | - | The value of the input element, used when submitting an HTML form. See MDN. |
id | string | - | The element's unique identifier. See MDN. |
name | string | - | The name of the input element, used when submitting an HTML form. See MDN. |
slot | string | - | A slot name for the component. Slots allow the component to receive props from a parent component.
An explicit |
excludeFromTabOrder | boolean | - | Whether to exclude the element from the sequential tab order. If true, the element will not be focusable via the keyboard by tabbing. This should be avoided except in rare scenarios where an alternative means of accessing the element or its functionality via the keyboard is available. |
defaultSelected | boolean | - | Whether the Switch should be selected (uncontrolled). |
isSelected | boolean | - | Whether the Switch should be selected (controlled). |
inputRef | RefObject<HTMLInputElement> | - | A ref for the HTML input element. |
children | ReactNode | - | |
wrapWith | ReactElement<unknown, string | JSXElementConstructor<any>> | - | |
ref | Ref<HTMLLabelElement> | - | Allows getting a ref to the component instance.
Once the component unmounts, React will set |
key | Key | - |