feat(switch): add optional switch text [EE-3625] (#7164)

* add optional switch text
pull/7154/head
Matt Hook 2 years ago committed by GitHub
parent 7275d23e4b
commit dd4d126934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,4 +12,5 @@ export const switchField = r2a(SwitchField, [
'disabled',
'onChange',
'featureId',
'switchValues',
]);

@ -18,6 +18,10 @@ export interface Props {
dataCy?: string;
disabled?: boolean;
featureId?: FeatureId;
switchValues?: {
on: string;
off: string;
};
}
export function SwitchField({
@ -30,6 +34,7 @@ export function SwitchField({
disabled,
onChange,
featureId,
switchValues,
}: Props) {
const toggleName = name ? `toggle_${name}` : '';
@ -55,6 +60,12 @@ export function SwitchField({
featureId={featureId}
dataCy={dataCy}
/>
{switchValues && checked && (
<span className="ml-2">{switchValues.on}</span>
)}
{switchValues && !checked && (
<span className="ml-2">{switchValues.off}</span>
)}
</label>
);
}

Loading…
Cancel
Save