UNPKG

@xapp/chat-widget

Version:
14 lines (13 loc) 323 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import "./DrawerBars.scss"; export interface Props { tabIndex?: string; /** * Number of bars for the button, defaults to 2 */ bars?: number; onToggle(): void; } declare const DrawerBars: FC<Props>; export default DrawerBars;