
import WOISwitchButton from '../components/WOISwitchButton';

export default {
    title: 'WOI Switch Button',
    component: WOISwitchButton,
    tags: ['autodocs'],
};

export const Default = {
    args: {
        trackWidth: 60,
        trackHeight: 24,
        padding: 4,
        trackBorderRadius: 50,
        trackBorderColor: '#33B8FF',
        trackBorderWidth: 2,
        trackActiveColor: '#33B8FF',
        trackInActiveColor: '#D3D3D3',
        thumbSize: 24,
        thumbBorderRadius: 50,
        thumbBorderColor: '#FFFFFF',
        thumbBorderWidth: 2,
        thumbActiveColor: '#FFFFFF',
        thumbInActiveColor: '#D3D3D3',
        isActive: false,
        thumbActiveIcon: 'https://cdn-icons-png.flaticon.com/512/1400/1400310.png',
        thumbInActiveIcon: 'https://cdn-icons-png.flaticon.com/512/4445/4445942.png',
        thumbIconSize: 20
    },
};