import React from 'react';
import Switch from 'terra-switch';

const DisabledSwitch = () => (
  <Switch
    labelText="Label"
    isDisabled
  />
);

export default DisabledSwitch;
