UNPKG

@icoms-detection/ui

Version:

This is the OFFICIAL UI library created by Icoms Detection to design their apps.

10 lines (9 loc) 373 B
import { ComponentProps, FC } from "react"; declare const StyledButtonGroup: any; declare type StitchesButtonsProps = ComponentProps<typeof StyledButtonGroup>; export interface ButtonGroupProps extends StitchesButtonsProps { buttons: (string | number)[]; selectedIndex: number | string; } export declare const ButtonGroup: FC<ButtonGroupProps>; export {};