/react-typescript-toggle

This is a react based toggle button component developed using Typescript.

Primary LanguageTypeScript

React Typescript Toggle

This is a react based toggle button component developed using Typescript.

Snapshot

Snapshot of Toggle Button

Features

  • Pass the Label Value
  • Pass Custom Style's
  • Pass Default value
  • Toggle Animation Effects
  • Label position - Left/Right
  • Pass disabled mode Styles

Usage

Basic:

    interface Props extends React.Props<Toggle> {
        label: string;
        style: any;
    };

    const styles = {
      togglebutton: {
        marginBottom: 16
      }
    };
    
    <Toggle label="Simple" style={styles.togglebutton} />

The above example demonstrates the following:

How to pass custom label How to pass custom style Shows the default checked, un-checked toggle icons

Further Customization

    const styles = {
      togglebutton: {
        marginBottom: 16
      }
    };
    
    <Toggle label="Custom icon" style={styles.togglebutton} uncheckedIcon={} checkedIcon={} />

The above example demonstrates the following: How to pass custom label How to pass custom style How to pass custom icon's Can use any svg-image as icons for checked, un-checked toggle icons

To install dependencies

npm install

To build the pages

npm start

Contributing

Contributions are always welcome. Just send a pull request. Feel free to contact me GitHub.

License

MIT License