import React, {FC} from 'react'; import {SwitchStyle as S} from './styles/switch.style'; import {ISwitch} from './switch.type'; /** * * @author Ali M. Sadeghi * @version 0.0.1 */ export const SwitchComponent: FC = ({ color, disabled, checked, size, title, hint, ...restProps }) => { return ( {(hint || title) && ( {title && {title}} {hint && {hint}} )} ); };