UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 241 B
import React from 'react'; interface CustomSwitchProps { checked: boolean; onCheckedChange: (checked: boolean) => void; themeColor?: string; } declare const CustomSwitch: React.FC<CustomSwitchProps>; export default CustomSwitch;