UNPKG

@athosws/react-components

Version:

This is a set of useful ReactJS components developed by Athos.\n Email:ladiesman217.as@gmail.com

22 lines (20 loc) 435 B
import { SwitchI } from "./Switch/interfaces"; export interface ATHOSSwitcherProps { selectedId?: string; onChange?: (id: string) => void; switchs: SwitchI[]; style?: { container?: React.CSSProperties; switches?: { default?: React.CSSProperties; active?: React.CSSProperties; }; }; className?: { container?: string; switches?: { default?: string; active?: string; }; }; }