UNPKG

@rsksmart/rif-ui

Version:

Exposes common components to be re used in RIF projects

10 lines (9 loc) 283 B
import React, { FC } from 'react'; export interface SwitchTabsProps { label1: string; label2: string; value?: 0 | 1; onChange: (event: React.ChangeEvent<{}>, value: number) => void; } declare const SwitchTabs: FC<SwitchTabsProps>; export default SwitchTabs;